blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
73baab8f3d7ec696ba0602b6f8f65e3cf9eb6110 | b1b734ab75a6fe114733d3c0b8ca5046d54b407d | /third_party/gloo/gloo/math.cc | f73cd3de9b7a72f9bd769a6464a636c0c3817b3e | [
"BSD-3-Clause",
"LicenseRef-scancode-unknown",
"LicenseRef-scancode-generic-cla",
"BSD-2-Clause",
"Apache-2.0"
] | permissive | waybarrios/video_nonlocal_net_caffe2 | 754fea2b96318d677144f16faadf59cb6b00189b | b19c2ac3ddc1836d90d7d0fccb60d710c017253e | refs/heads/master | 2020-04-20T03:15:12.286080 | 2019-01-31T20:44:01 | 2019-01-31T20:44:01 | 168,593,110 | 0 | 0 | Apache-2.0 | 2019-01-31T20:40:40 | 2019-01-31T20:40:39 | null | UTF-8 | C++ | false | false | 2,727 | cc | #include "gloo/math.h"
#include <algorithm>
#if GLOO_USE_AVX
#include <immintrin.h>
#endif
#include "gloo/types.h"
#define is_aligned(POINTER, BYTE_COUNT) \
(((uintptr_t)(const void *)(POINTER)) % (BYTE_COUNT) == 0)
namespace gloo {
#if GLOO_USE_AVX
// Assumes x and y are either both aligned to 32 bytes or unaligned by the same
// offset, as would happen when reducing at an offset within an aligned buffer
template <>
void sum<float16>(float16* x, const float16* y, size_t n) {
size_t i;
for (i = 0; i < (n / 8) * 8; i += 8) {
__m256 va32 = _mm256_cvtph_ps(_mm_loadu_si128((__m128i*)(&x[i])));
__m256 vb32 = _mm256_cvtph_ps(_mm_loadu_si128((__m128i*)(&y[i])));
__m128i vc16 = _mm256_cvtps_ph(_mm256_add_ps(va32, vb32), 0);
_mm_storeu_si128((__m128i*)(&x[i]), vc16);
}
// Leftovers
for (; i < n; i++) {
x[i] += y[i];
}
}
// Assumes x and y are either both aligned to 32 bytes or unaligned by the same
// offset, as would happen when reducing at an offset within an aligned buffer
template <>
void product<float16>(float16* x, const float16* y, size_t n) {
size_t i;
for (i = 0; i < (n / 8) * 8; i += 8) {
__m256 va32 = _mm256_cvtph_ps(_mm_loadu_si128((__m128i*)(&x[i])));
__m256 vb32 = _mm256_cvtph_ps(_mm_loadu_si128((__m128i*)(&y[i])));
__m128i vc16 = _mm256_cvtps_ph(_mm256_mul_ps(va32, vb32), 0);
_mm_storeu_si128((__m128i*)(&x[i]), vc16);
}
// Leftovers
for (; i < n; i++) {
x[i] *= y[i];
}
}
// Assumes x and y are either both aligned to 32 bytes or unaligned by the same
// offset, as would happen when reducing at an offset within an aligned buffer
template <>
void max<float16>(float16* x, const float16* y, size_t n) {
size_t i;
for (i = 0; i < (n / 8) * 8; i += 8) {
__m256 va32 = _mm256_cvtph_ps(_mm_loadu_si128((__m128i*)(&x[i])));
__m256 vb32 = _mm256_cvtph_ps(_mm_loadu_si128((__m128i*)(&y[i])));
__m128i vc16 = _mm256_cvtps_ph(_mm256_max_ps(va32, vb32), 0);
_mm_storeu_si128((__m128i*)(&x[i]), vc16);
}
// Leftovers
for (; i < n; i++) {
x[i] = std::max(x[i], y[i]);
}
}
// Assumes x and y are either both aligned to 32 bytes or unaligned by the same
// offset, as would happen when reducing at an offset within an aligned buffer
template <>
void min<float16>(float16* x, const float16* y, size_t n) {
size_t i;
for (i = 0; i < (n / 8) * 8; i += 8) {
__m256 va32 = _mm256_cvtph_ps(_mm_loadu_si128((__m128i*)(&x[i])));
__m256 vb32 = _mm256_cvtph_ps(_mm_loadu_si128((__m128i*)(&y[i])));
__m128i vc16 = _mm256_cvtps_ph(_mm256_min_ps(va32, vb32), 0);
_mm_storeu_si128((__m128i*)(&x[i]), vc16);
}
// Leftovers
for (; i < n; i++) {
x[i] = std::min(x[i], y[i]);
}
}
#endif
}
| [
"gemfield@civilnet.cn"
] | gemfield@civilnet.cn |
923e516842da1a1c32a70cbff7c92594b6cc777d | d1e4cf1bb916fb0850302da79acb6e5383405bc4 | /BTree.h | fd674cc8a6e42039917e6268b5496c68ebabdbb4 | [] | no_license | YinLiu-91/data_structure_djh | 05f15b0a8935d240f33627666982840c6c05b9a1 | 5ceaec412b32e818267ddf8cbb5468c37df3fb97 | refs/heads/master | 2022-11-24T20:53:29.556833 | 2020-08-01T07:07:59 | 2020-08-01T07:07:59 | 275,840,699 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,854 | h | /*
* @Author: your name
* @Date: 2020-07-26 12:45:14
* @LastEditTime: 2020-07-26 16:50:15
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \code\BTree.h
*/
#ifndef BTREE_H
#define BTREE_H
#include "BTNode.h"
template <typename T>
class BTree
{ //B-树模板类
protected:
int _size; //存放的关键码总数
int _order; //B-树的阶次,至少为3,创建时指定,一般不能修改
BTNodePosi(T) _root; //根节点
BTNodePosi(T) _hot; //BTree::sezrch()最后访问的非空(除非树空)的节点位置
void solveOverFlow(BTNodePosi(T)); //因插入而上溢之后的分裂处理
void solveUnderFlow(BTNodePosi(T)); //因删除而下溢之后的合并处理
public:
}
//p 217
template <typename T>
BTNodePosi(T) BTree<T>::search(const T &e)
{ //在B-树中查找关键码
BTNodePosi(T) v = _root;
_hot = nullptr; //从根节点出发
while (v)
{ //逐层查找
Rank r = v->key.search(e); //在当前节点中,找不到大于e的最大关键码
if ((0 <= r) && (e == v->key[r]))
return v; //成功:在当前节点命中目标关键码
_hot = v;
v = v->child[r + 1]; //否则,转入对应子树(_hot指向其父)--需要做io,最费时间
} //这里在向量内是二分查找,但对通常的_order可直接顺序查找
return nullptr;
}
//p219
template <typename T>
bool BTree<T>::insert(const T &e)
{ //将关键码e插入B树中
BTNodePosi(T) v = search(e);
if (v)
return false; //确认目标节点不存在
Rank r = _hot->key.search(c); //在节点_hot的有关关键码向量中查找合适的插入位置
_hot->key.insert(r + 1, e); //将新关键码插至对应的位置
_hot->child.insert(r + 2, nullptr); //创建一个空子树指针
_size++; //更新全树规模
solveOverflow(_hot); //如有必要,需要分裂
return true; //插入成功
}
//p220
template <typename T> //关键码插入后若节点上溢,则做节点分裂处理
void BTree<T>::solveOverFlow(BTNodePosi(T) v)
{
if (_order >= v->child.size())
return; //递归基:当前节点并未上溢
Rank s = _order / 2; //轴点(此时应有_order=key.size()=child.size()-1
BTNodePosi(T) u = new BTNode<T>(); //注意:新节点已经有一个空孩子
for (Rank j = 0; j < _order - s - 1; ++j)
{
//v右侧_order-s-1个孩子及关键码分裂为右侧节点u
u->child.insert(j, v->child.remove(s + 1)); //逐个移动效率低
u->key.insert(j, v->key.remove(s + 1)); //此策略可改进
}
u->child[_order - s - 1] = v->child.remove(s + 1); //移动v最靠右的孩子
if (u->child[0]) //若u的孩子们非空,则
for (Rank j = 0; j < _order - s; ++j) //令他们的父节点统一
u->child[j]->parent = u; //指向u
BTNodePosi(T) p = v->parent; //v当前的父节点p
if (!p)
{
_root = p = new BTNode<T>();
p->child[0] = v;
v->parent = p;
}
Rank r = 1 + p->key.search(v->key[0]); //p指向u的指针的秩
p->key.insert(r, v->key.remove(s)); //轴点关键码上升
p->child.insert(r + 1, u);
u->parent = p; //新节点u与父节点p互联
solveOverFlow(p); //上升一层,如有必要则继续分裂--至多递归O(logn)层
}
//p222
template <typename T>
bool BTree<T>::remove(const T &e)
{
BTNodePosi(T) v = search(e);
if (!v)
return false;
Rank r = v->key.search(e); //确定目标关键码在节点v中的秩
if (v->child[0])
{ //若v非叶子,则e的后继必属于某叶节点
BTNodePosi(T) u = v->child[r + 1]; //若右子树中一直向左,即可
v->key[r] = u->key[0];
v = u;
r = 0; //并与之交换位置
} //至此,v必然位于最底层,且其中第r个关键码就是待删除者
v->key.remove(r);
v->child.remove(r + 1);
_size--; //删除e,以及其下两个外部节点之一
soveOverFlow(v); //如有必要,需做旋转或合并
return true;
}
/******************************************************************************************
* Data Structures in C++
* ISBN: 7-302-33064-6 & 7-302-33065-3 & 7-302-29652-2 & 7-302-26883-3
* Junhui DENG, deng@tsinghua.edu.cn
* Computer Science & Technology, Tsinghua University
* Copyright (c) 2003-2019. All rights reserved.
******************************************************************************************/
//复制的
template <typename T> //关键码删除后若节点下溢,则做节点旋转或合并处理
void BTree<T>::solveUnderflow(BTNodePosi(T) v)
{
if ((_order + 1) / 2 <= v->child.size())
return; //递归基:当前节点并未下溢
BTNodePosi(T) p = v->parent;
if (!p)
{ //递归基:已到根节点,没有孩子的下限
if (!v->key.size() && v->child[0])
{
//但倘若作为树根的v已不含关键码,却有(唯一的)非空孩子,则
_root = v->child[0];
_root->parent = NULL; //这个节点可被跳过
v->child[0] = NULL;
release(v); //并因不再有用而被销毁
} //整树高度降低一层
return;
}
Rank r = 0;
while (p->child[r] != v)
r++;
//确定v是p的第r个孩子——此时v可能不含关键码,故不能通过关键码查找
//另外,在实现了孩子指针的判等器之后,也可直接调用Vector::find()定位
// 情况1:向左兄弟借关键码
if (0 < r)
{ //若v不是p的第一个孩子,则
BTNodePosi(T) ls = p->child[r - 1]; //左兄弟必存在
if ((_order + 1) / 2 < ls->child.size())
{ //若该兄弟足够“胖”,则
v->key.insert(0, p->key[r - 1]); //p借出一个关键码给v(作为最小关键码)
p->key[r - 1] = ls->key.remove(ls->key.size() - 1); //ls的最大关键码转入p
v->child.insert(0, ls->child.remove(ls->child.size() - 1));
//同时ls的最右侧孩子过继给v
if (v->child[0])
v->child[0]->parent = v; //作为v的最左侧孩子
return; //至此,通过右旋已完成当前层(以及所有层)的下溢处理
}
} //至此,左兄弟要么为空,要么太“瘦”
// 情况2:向右兄弟借关键码
if (p->child.size() - 1 > r)
{ //若v不是p的最后一个孩子,则
BTNodePosi(T) rs = p->child[r + 1]; //右兄弟必存在
if ((_order + 1) / 2 < rs->child.size())
{ //若该兄弟足够“胖”,则
v->key.insert(v->key.size(), p->key[r]); //p借出一个关键码给v(作为最大关键码)
p->key[r] = rs->key.remove(0); //ls的最小关键码转入p
v->child.insert(v->child.size(), rs->child.remove(0));
//同时rs的最左侧孩子过继给v
if (v->child[v->child.size() - 1]) //作为v的最右侧孩子
v->child[v->child.size() - 1]->parent = v;
return; //至此,通过左旋已完成当前层(以及所有层)的下溢处理
}
} //至此,右兄弟要么为空,要么太“瘦”
// 情况3:左、右兄弟要么为空(但不可能同时),要么都太“瘦”——合并
if (0 < r)
{ //与左兄弟合并
BTNodePosi(T) ls = p->child[r - 1]; //左兄弟必存在
ls->key.insert(ls->key.size(), p->key.remove(r - 1));
p->child.remove(r);
//p的第r - 1个关键码转入ls,v不再是p的第r个孩子
ls->child.insert(ls->child.size(), v->child.remove(0));
if (ls->child[ls->child.size() - 1]) //v的最左侧孩子过继给ls做最右侧孩子
ls->child[ls->child.size() - 1]->parent = ls;
while (!v->key.empty())
{ //v剩余的关键码和孩子,依次转入ls
ls->key.insert(ls->key.size(), v->key.remove(0));
ls->child.insert(ls->child.size(), v->child.remove(0));
if (ls->child[ls->child.size() - 1])
ls->child[ls->child.size() - 1]->parent = ls;
}
release(v); //释放v
}
else
{ //与右兄弟合并
BTNodePosi(T) rs = p->child[r + 1]; //右兄度必存在
rs->key.insert(0, p->key.remove(r));
p->child.remove(r);
//p的第r个关键码转入rs,v不再是p的第r个孩子
rs->child.insert(0, v->child.remove(v->child.size() - 1));
if (rs->child[0])
rs->child[0]->parent = rs; //v的最左侧孩子过继给ls做最右侧孩子
while (!v->key.empty())
{ //v剩余的关键码和孩子,依次转入rs
rs->key.insert(0, v->key.remove(v->key.size() - 1));
rs->child.insert(0, v->child.remove(v->child.size() - 1));
if (rs->child[0])
rs->child[0]->parent = rs;
}
release(v); //释放v
}
solveUnderflow(p); //上升一层,如有必要则继续分裂——至多递归O(logn)层
return;
}
#endif
| [
"2274882591@qq.com"
] | 2274882591@qq.com |
841cd03c6f0eb03741d003c414118360c379a4c7 | 967775b8d057acb35e94510ab923527bd7595e9e | /Arduino/main/LEDController.h | 482dd4c652b9efd97ba038d46455fc0ed6aa7424 | [] | no_license | hikson7/arduino_posix_serial_com | 368c6c5e3f75d391a01b4265c5e7dc1e668209c2 | 39b06696efa6adc72200ad5826ac0e57665a6d24 | refs/heads/main | 2023-04-16T21:41:39.336633 | 2021-04-28T11:34:03 | 2021-04-28T11:34:03 | 334,571,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,340 | h | /**
* @file LEDController.h
* @author Hikari Hashida
* @brief Simple class that receives commands from serial input via USB/UART, and outputs to LED strip.
* @version 0.1
* @date 2021-02-03
*
* @copyright Copyright (c) 2021
*
*/
#include <Adafruit_NeoPixel.h>
/* Status indicator command format stored in struct */
struct __attribute__((__packed__)) LEDControllerCommand {
uint8_t duration;
uint8_t blink;
uint8_t red_val;
uint8_t green_val;
uint8_t blue_val;
uint8_t brightness;
};
constexpr static uint8_t PIN_STATUS_INDIC = 12;
constexpr static uint8_t NUM_STATUS_INDIC_PIXELS = 8;
constexpr static uint8_t START_MARKER = '<';
constexpr static uint8_t END_MARKER = '>';
class LEDController {
public:
LEDController();
void updateRoverStatus();
void readDataFromSerial();
void indicateLED();
void setBrightness(uint8_t brightness);
void LEDController::setAndShowLEDStatus(uint8_t red_val,
uint8_t green_val, uint8_t blue_val);
private:
/* status indicator struct to store the indication parameters */
LEDControllerCommand lcc_;
/* byte-sized pointer to keep track of the place in struct */
uint8_t* byte_ptr_;
/* data receiving in progress */
bool in_progress_;
bool is_new_data_ = false;
Adafruit_NeoPixel led_status_indicator_;
};
| [
"hikarihashida7@gmail.com"
] | hikarihashida7@gmail.com |
24780bf511f1c9792cb98cc7fbb73bc6cef8a305 | 176af96059dfe7980aac5268027dc2d0bf597ebd | /src/autogen/auto_eigs.cpp | f2f406535baf9a3df519c2ca761ccaba1fc047d0 | [
"MIT"
] | permissive | ldXiao/polyfem | 46bffc1b396537bf04efc71ade374142b2ba7c3e | d4103af16979ff67d461a9ebe46a14bbc4dc8c7c | refs/heads/master | 2020-05-23T06:07:09.776594 | 2019-05-17T21:11:03 | 2019-05-17T21:11:03 | 186,660,692 | 0 | 0 | MIT | 2019-05-14T16:30:05 | 2019-05-14T16:30:04 | null | UTF-8 | C++ | false | false | 80 | cpp | #include <polyfem/auto_eigs.hpp>
namespace polyfem {
namespace autogen {
}}
| [
"teseo@bluewin.ch"
] | teseo@bluewin.ch |
677425bab4d42b189d1a11c5f3967f80850998f1 | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /content/public/browser/notification_database_data.h | 8d1298f0eb10e2b88829bca22c400fe446a6b43d | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | meniossin/src | 42a95cc6c4a9c71d43d62bc4311224ca1fd61e03 | 44f73f7e76119e5ab415d4593ac66485e65d700a | refs/heads/master | 2022-12-16T20:17:03.747113 | 2020-09-03T10:43:12 | 2020-09-03T10:43:12 | 263,710,168 | 1 | 0 | BSD-3-Clause | 2020-05-13T18:20:09 | 2020-05-13T18:20:08 | null | UTF-8 | C++ | false | false | 2,983 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_
#define CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_
#include <stdint.h>
#include <string>
#include "base/time/time.h"
#include "content/common/content_export.h"
#include "content/public/common/platform_notification_data.h"
#include "url/gurl.h"
namespace content {
// Stores information about a Web Notification as available in the notification
// database. Beyond the notification's own data, its id and attribution need
// to be available for users of the database as well.
// Note: There are extra properties being stored for UKM logging purposes.
// TODO(https://crbug.com/842622): Add the UKM that will use these properties.
struct CONTENT_EXPORT NotificationDatabaseData {
NotificationDatabaseData();
NotificationDatabaseData(const NotificationDatabaseData& other);
~NotificationDatabaseData();
NotificationDatabaseData& operator=(const NotificationDatabaseData& other);
// Corresponds to why a notification was closed.
enum class ClosedReason {
// The user explicitly closed the notification.
USER,
// The notification was closed by the developer.
DEVELOPER,
// The notification was found to be closed in the notification database,
// but why it was closed was not found.
UNKNOWN
};
// Id of the notification as assigned by the NotificationIdGenerator.
std::string notification_id;
// Origin of the website this notification is associated with.
GURL origin;
// Id of the Service Worker registration this notification is associated with.
int64_t service_worker_registration_id = 0;
// Platform data of the notification that's being stored.
PlatformNotificationData notification_data;
// Boolean for if this current notification is replacing an existing
// notification.
bool replaced_existing_notification = false;
// Number of clicks on the notification itself, i.e. clicks on the
// notification that take the user to the website. This excludes action
// button clicks.
int num_clicks = 0;
// Number of action button clicks.
int num_action_button_clicks = 0;
// Time the notification was first requested to be shown.
base::Time creation_time_millis;
// Amount of time, in ms, between when the notification is shown and the
// first click.
base::TimeDelta time_until_first_click_millis;
// Amount of time, in ms, between when the notification is shown and the
// last click.
base::TimeDelta time_until_last_click_millis;
// Amount of time, in ms, between when the notification is shown and closed.
base::TimeDelta time_until_close_millis;
// Why the notification was closed.
ClosedReason closed_reason = ClosedReason::UNKNOWN;
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_NOTIFICATION_DATABASE_DATA_H_
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
d091e564f10f86989288ef4094276c29fc66142e | b367fe5f0c2c50846b002b59472c50453e1629bc | /xbox_leak_may_2020/xbox trunk/xbox/private/xdktest/common/draw.h | df4de59b35672040707f2678fb62732c19739e40 | [] | no_license | sgzwiz/xbox_leak_may_2020 | 11b441502a659c8da8a1aa199f89f6236dd59325 | fd00b4b3b2abb1ea6ef9ac64b755419741a3af00 | refs/heads/master | 2022-12-23T16:14:54.706755 | 2020-09-27T18:24:48 | 2020-09-27T18:24:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 987 | h | #ifndef __DRAW_H__
#define __DRAW_H__
#ifdef _XBOX
#include <xtl.h>
#else
#include <windows.h>
#include <d3d8.h>
#endif
#include "bitfont.h"
#define BACKDROP_BLUE 0x000080
#define PITCH_BLACK 0x0
#define LABEL_WHITE 0xffffff
#define DISCONNECTED_BLUE 0x000040
#define CONNECTED_YELLOW 0xffff00
class CDraw
{
private:
static IDirect3DDevice8* m_pDevice;
IDirect3DSurface8* m_pBackBuffer;
BitFont m_font;
public:
CDraw(INT width = 640, INT height = 480);
~CDraw();
VOID FillRect(
INT x,
INT y,
INT width,
INT height,
D3DCOLOR color);
VOID DrawText(
const TCHAR* string,
INT x,
INT y,
D3DCOLOR foregroundColor, // 0xff0000 is red
D3DCOLOR backgroundColor = 0,
DWORD flags = DRAWTEXT_TRANSPARENTBKGND);
VOID Present();
BOOL IsValid() { return m_pDevice != NULL; }
};
#endif __DRAW_H__
| [
"benjamin.barratt@icloud.com"
] | benjamin.barratt@icloud.com |
854736ea94cc78fb8b3ba91b23ee3ad4109a0c9b | fa10b09a97fe199a1a4534a2e4b66eef85233bbc | /tests/accumulators/stochastic/random/RandomTest.cc | 04279ac6661b773db3ddae648e7d52dcf6208693 | [] | no_license | dmorse/util | 0f53cb0431afb707973f563f27d6e8d155816481 | 928110f754aae7e7ba494b8fe31abc0cac40b344 | refs/heads/master | 2022-12-13T10:00:09.113704 | 2022-12-11T17:37:04 | 2022-12-11T17:37:04 | 77,802,805 | 2 | 1 | null | 2022-08-09T18:24:27 | 2017-01-02T00:23:03 | C++ | UTF-8 | C++ | false | false | 3,800 | cc | #ifndef RANDOM_TEST_H
#define RANDOM_TEST_H
#include <util/random/Random.h>
#include <util/accumulators/Average.h>
#include <util/accumulators/Distribution.h>
#include <util/accumulators/IntDistribution.h>
#include <iostream>
#include <fstream>
#include <string>
using namespace Util;
class RandomTest
{
public:
RandomTest()
: randomPtr_(0),
verbose_(2)
{}
void setUp(const char* functionName)
{
std::cout << std::string(functionName) << " :" << std::endl << std::endl;
randomPtr_ = new Random;
std::ifstream file("in/Random");
random().readParam(file);
}
void tearDown()
{
delete randomPtr_;
std::cout << "----------------------------------------------------"
<< std::endl << std::endl;
}
void testReadParam()
{
setUp("testReadParam");
// Verbose output
if (verbose_ > 0) {
printf("idum: %ld\n", random().seed() );
}
tearDown();
}
void testGetFloat()
{
setUp("testGetFloat");
Average average;
int nSamplePerBlock = 1;
average.setNSamplePerBlock(nSamplePerBlock);
Distribution distribution;
double min = 0.0;
double max = 1.0;
int nBin = 10;
distribution.setParam(min, max, nBin);
const int nSample = 100000;
double x;
for (int i=0; i < nSample; i++) {
x = random().uniform(0.0,1.0);
average.sample(x);
distribution.sample(x);
}
average.output(std::cout);
distribution.output(std::cout);
tearDown();
}
void testGetInteger()
{
setUp("testGetInteger");
const int nSample = 100000;
Average average;
int nSamplePerBlock = 1;
average.setNSamplePerBlock(nSamplePerBlock);
int nBin = 11;
IntDistribution distribution;
int min = 0;
int max = min + nBin - 1;
distribution.setParam(min, max);
long x;
for (int i=0; i < nSample; i++) {
x = random().uniformInt(0, nBin);
average.sample(double(x));
distribution.sample(x);
}
average.output(std::cout);
distribution.output(std::cout);
tearDown();
}
void testGaussian()
{
setUp("testGaussian");
Average average;
int nSamplePerBlock = 1;
average.setNSamplePerBlock(nSamplePerBlock);
Distribution distribution;
double min = -3.0;
double max = 3.0;
int nBin = 60;
distribution.setParam(min, max, nBin);
const int nSample = 100000;
double x;
for (int i=0; i < nSample; i++) {
x = random().gaussian();
average.sample(x);
distribution.sample(x);
}
average.output(std::cout);
distribution.output(std::cout);
tearDown();
}
void testUnitVector()
{
setUp("testUnitVector");
Average average;
int nSamplePerBlock = 1;
average.setNSamplePerBlock(nSamplePerBlock);
Distribution distribution;
double min = -1.1;
double max = 1.1;
int nBin = 22;
distribution.setParam(min, max, nBin);
Vector v;
double vsq;
int nSample = 100000;
for (int i=0; i < nSample; i++ ) {
random().unitVector(v);
vsq = v[0]*v[0] + v[1]*v[1] + v[2]*v[2];
average.sample(v[1]);
distribution.sample(v[1]);
}
average.output(std::cout);
distribution.output(std::cout);
tearDown();
}
Random& random()
{ return *randomPtr_; }
private:
Random* randomPtr_;
int verbose_;
};
int main()
{
RandomTest test;
test.testReadParam();
test.testGetFloat();
test.testGetInteger();
test.testGaussian();
test.testUnitVector();
}
#endif
| [
"morse012@umn.edu"
] | morse012@umn.edu |
ed3419c0787d454450562a96dc81ca0727160bc2 | 4fb0a3b01c54732282ee3f59a405b1995cf7ed10 | /chinese-query-app/cspcolor.cpp | 9c2890c2eb3365550cc0550f692e340023a280d5 | [] | no_license | gengtianuiowa/China-Query-App | f56dff520efa2aa29410207c2db052ba13f9eb43 | c30e67194faf63d6048cb7aa248861d1d50f0c1c | refs/heads/master | 2022-11-19T16:07:16.882687 | 2020-07-02T01:35:49 | 2020-07-02T01:35:49 | 215,859,477 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 49 | cpp | #include "cspcolor.h"
CSpColor::CSpColor()
{
}
| [
"56332753+gengtianuiowa@users.noreply.github.com"
] | 56332753+gengtianuiowa@users.noreply.github.com |
ee6d7c9bd0d0316ab96ed1bacfa4cf057c657ba7 | f3a9419592d3a032b60383865ab766d62b8b83a2 | /Sprint04/t01/app/src/StormcloakSoldier.h | ae2fc5136669a33419866ae824fbc414065838c8 | [] | no_license | akostanda/Ucode-marathon-Cpp | 288267a2769eed6800abb0093f7da0c458ee6d97 | 75d90fd9ce32d63895175c238ee395e49e51fffd | refs/heads/master | 2022-12-19T14:56:59.554026 | 2020-09-22T09:22:34 | 2020-09-22T09:22:34 | 293,285,737 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 386 | h | #pragma once
#include <iostream>
#include "Axe.h"
#include "ImperialSoldier.h"
class ImperialSoldier;
class StormcloakSoldier final {
public:
StormcloakSoldier();
~StormcloakSoldier();
void setWeapon(Axe* axe);
void attack(ImperialSoldier& enemy);
void consumeDamage(int amount);
int getHealth() const;
private:
Axe* m_weapon;
int m_health = 100;
};
| [
"akostanda@e1r7p3.unit.ua"
] | akostanda@e1r7p3.unit.ua |
420f506fed9512332fb9fc1450a20b968da56305 | 2da3214e10706f438aafebe58b9bd05770c566be | /exampleLoopback/src/ofApp.h | 40b9d6756de2f1205f67665755addd18b447e2d7 | [
"MIT"
] | permissive | elliotwoods/ofxSquashBuddies | dbd82e2f3f0e16e5f117bb1ac294a626438d585b | 2dbc95e14d3aad3201f285f7c48d62e0c3449fb5 | refs/heads/master | 2021-01-21T04:40:48.902942 | 2018-09-21T09:39:34 | 2018-09-21T09:39:34 | 51,491,463 | 56 | 7 | null | 2018-09-21T09:39:35 | 2016-02-11T03:21:18 | C++ | UTF-8 | C++ | false | false | 729 | h | #pragma once
#include "ofMain.h"
#include "ofxSquashBuddies.h"
class ofApp : public ofBaseApp{
public:
void setup();
void update();
void draw();
void keyPressed(int key);
void keyReleased(int key);
void mouseMoved(int x, int y );
void mouseDragged(int x, int y, int button);
void mousePressed(int x, int y, int button);
void mouseReleased(int x, int y, int button);
void mouseEntered(int x, int y);
void mouseExited(int x, int y);
void windowResized(int w, int h);
void dragEvent(ofDragInfo dragInfo);
void gotMessage(ofMessage msg);
ofxSquashBuddies::Sender sender;
ofxSquashBuddies::Receiver receiver;
ofVideoGrabber video;
ofImage receivedPreview;
};
| [
"elliot@kimchiandchips.com"
] | elliot@kimchiandchips.com |
d62fb951dbf7462284769a192e19d4f830b09e37 | 96dcef865aa53f835ec151e5f66d158569916469 | /paddle/operators/math/detail/gru_gpu_kernel.h | 1783d46096858c874b27ce75760342082835b180 | [
"Apache-2.0"
] | permissive | typhoonzero/Paddle | ae7708d8db35c0858c92f3d39f22b556a88adf4d | 45a8c2759b8b8d6b59386a706ee37df6c258abc7 | refs/heads/develop | 2021-04-06T00:44:51.697475 | 2018-02-08T09:09:18 | 2018-02-08T09:09:18 | 83,394,080 | 1 | 1 | Apache-2.0 | 2018-10-12T11:08:12 | 2017-02-28T05:40:12 | C++ | UTF-8 | C++ | false | false | 7,552 | h | /* Copyright (c) 2016 PaddlePaddle Authors. All Rights Reserve.
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. */
#pragma once
#include <type_traits>
#include "paddle/operators/math/detail/activation_functions.h"
#include "paddle/operators/math/gru_compute.h"
#include "paddle/platform/cuda_helper.h"
#include "paddle/platform/device_context.h"
namespace paddle {
namespace operators {
namespace math {
namespace detail {
/*
* threads(frame_per_block, batch_per_block)
* grid(frame_blocks, batch_blocks)
*/
template <class OpResetOutput, bool is_batch, typename T>
__global__ void KeGruForwardResetOutput(OpResetOutput op_reset_output,
T *gate_value, T *reset_output_value,
T *prev_output_value, int frame_size,
int batch_size,
ActivationType active_gate) {
const int frame_idx = blockIdx.x * blockDim.x + threadIdx.x;
if (frame_idx >= frame_size) return;
int batch_idx = 0;
if (is_batch) {
batch_idx = blockIdx.y * blockDim.y + threadIdx.y;
if (batch_idx >= batch_size) return;
gate_value += batch_idx * 3 * frame_size;
reset_output_value += batch_idx * frame_size;
}
T r_prev_out = 0;
T r_value_reset_output;
T r_value_update_gate = gate_value[frame_idx + frame_size * 0];
T r_value_reset_gate = gate_value[frame_idx + frame_size * 1];
if (prev_output_value) {
if (is_batch) prev_output_value += batch_idx * frame_size;
r_prev_out = prev_output_value[frame_idx];
}
op_reset_output(r_value_update_gate, r_value_reset_gate, r_prev_out,
r_value_reset_output, active_gate);
gate_value[frame_idx + frame_size * 0] = r_value_update_gate;
gate_value[frame_idx + frame_size * 1] = r_value_reset_gate;
reset_output_value[frame_idx] = r_value_reset_output;
}
/*
* threads(frame_per_block, batch_per_block)
* grid(frame_blocks, batch_blocks)
*/
template <class OpFinalOutput, bool is_batch, typename T>
__global__ void KeGruForwardFinalOutput(OpFinalOutput op_final_output,
T *gate_value, T *prev_output_value,
T *output_value, int frame_size,
int batch_size,
ActivationType active_node) {
const int frame_idx = blockIdx.x * blockDim.x + threadIdx.x;
if (frame_idx >= frame_size) return;
int batch_idx = 0;
if (is_batch) {
batch_idx = blockIdx.y * blockDim.y + threadIdx.y;
if (batch_idx >= batch_size) return;
gate_value += batch_idx * 3 * frame_size;
output_value += batch_idx * frame_size;
}
T r_output;
T r_prev_out = 0;
T r_value_update_gate = gate_value[frame_idx + frame_size * 0];
T r_value_frame_state = gate_value[frame_idx + frame_size * 2];
if (prev_output_value) {
if (is_batch) prev_output_value += batch_idx * frame_size;
r_prev_out = prev_output_value[frame_idx];
}
op_final_output(r_value_update_gate, r_value_frame_state, r_prev_out,
r_output, active_node);
gate_value[frame_idx + frame_size * 2] = r_value_frame_state;
output_value[frame_idx] = r_output;
}
/*
* threads(frame_per_block, batch_per_block)
* grid(frame_blocks, batch_blocks)
*/
template <class OpStateGrad, bool is_batch, typename T>
__global__ void KeGruBackwardStateGrad(OpStateGrad op_state_grad, T *gate_value,
T *gate_grad, T *prev_out_value,
T *prev_out_grad, T *output_grad,
int frame_size, int batch_size,
ActivationType active_node) {
const int frame_idx = blockIdx.x * blockDim.x + threadIdx.x;
if (frame_idx >= frame_size) return;
int batch_idx = 0;
if (is_batch) {
batch_idx = blockIdx.y * blockDim.y + threadIdx.y;
if (batch_idx >= batch_size) return;
gate_value += batch_idx * 3 * frame_size;
gate_grad += batch_idx * 3 * frame_size;
output_grad += batch_idx * frame_size;
}
T r_update_gate_grad;
T r_frame_state_grad;
T r_prev_out_value = 0;
T r_prev_out_grad = 0;
T r_update_gate_value = gate_value[frame_idx + frame_size * 0];
T r_frame_state_value = gate_value[frame_idx + frame_size * 2];
T r_out_grad = output_grad[frame_idx];
if (prev_out_value && prev_out_grad) {
if (is_batch) prev_out_value += batch_idx * frame_size;
r_prev_out_value = prev_out_value[frame_idx];
if (is_batch) prev_out_grad += batch_idx * frame_size;
r_prev_out_grad = prev_out_grad[frame_idx];
}
op_state_grad(r_update_gate_value, r_update_gate_grad, r_frame_state_value,
r_frame_state_grad, r_prev_out_value, r_prev_out_grad,
r_out_grad, active_node);
gate_grad[frame_idx + frame_size * 0] = r_update_gate_grad;
gate_grad[frame_idx + frame_size * 2] = r_frame_state_grad;
if (prev_out_grad) {
prev_out_grad[frame_idx] = r_prev_out_grad;
}
}
/*
* threads(frame_per_block, batch_per_block)
* grid(frame_blocks, batch_blocks)
*/
template <class OpResetGrad, bool is_batch, typename T>
__global__ void KeGruBackwardResetGrad(OpResetGrad op_reset_grad, T *gate_value,
T *gate_grad, T *prev_out_value,
T *prev_out_grad, T *reset_output_grad,
int frame_size, int batch_size,
ActivationType active_gate) {
const int frame_idx = blockIdx.x * blockDim.x + threadIdx.x;
if (frame_idx >= frame_size) return;
int batch_idx = 0;
if (is_batch) {
batch_idx = blockIdx.y * blockDim.y + threadIdx.y;
if (batch_idx >= batch_size) return;
gate_value += batch_idx * 3 * frame_size;
gate_grad += batch_idx * 3 * frame_size;
reset_output_grad += batch_idx * frame_size;
}
T r_reset_gate_grad;
T r_prev_out_value = 0;
T r_prev_out_grad = 0;
T r_reset_output_grad = 0;
T r_update_gate_value = gate_value[frame_idx + frame_size * 0];
T r_update_gate_grad = gate_grad[frame_idx + frame_size * 0];
T r_reset_gate_value = gate_value[frame_idx + frame_size * 1];
if (prev_out_value && prev_out_grad) {
if (is_batch) prev_out_value += batch_idx * frame_size;
if (is_batch) prev_out_grad += batch_idx * frame_size;
r_prev_out_value = prev_out_value[frame_idx];
r_prev_out_grad = prev_out_grad[frame_idx];
r_reset_output_grad = reset_output_grad[frame_idx];
}
op_reset_grad(r_update_gate_value, r_update_gate_grad, r_reset_gate_value,
r_reset_gate_grad, r_prev_out_value, r_prev_out_grad,
r_reset_output_grad, active_gate);
gate_grad[frame_idx + frame_size * 0] = r_update_gate_grad;
gate_grad[frame_idx + frame_size * 1] = r_reset_gate_grad;
if (prev_out_grad) {
prev_out_grad[frame_idx] = r_prev_out_grad;
}
}
} // namespace detail
} // namespace math
} // namespace operators
} // namespace paddle
| [
"guosheng@baidu.com"
] | guosheng@baidu.com |
4d8ea4f0d3bb8c8f8097f919aa8118b3dbb87ac8 | 710bb2a30f464ee28d437e870dfe7944c829521b | /Phone_Interface/SeeedStudioTFTv2/SPI_TFT_ILI9341/SPI_TFT_ILI9341.cpp | 3557f8e503959bd775e314b80755d8499b01a8e1 | [] | no_license | akuhlens/phone | 8075a607c3431e6ed8709a61de89ed56158c0425 | 4b637c2baf04cb59d8caf93b16e95e50efd498e9 | refs/heads/master | 2021-01-02T09:33:21.195301 | 2014-10-28T14:16:07 | 2014-10-28T14:16:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,253 | cpp | /* mbed library for 240*320 pixel display TFT based on ILI9341 LCD Controller
* Copyright (c) 2013 Peter Drescher - DC2PD
*
* 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.
*/
// 12.06.13 fork from SPI_TFT code because controller is different ...
// 14.07.13 Test with real display and bugfix
// 18.10.13 Better Circle function from Michael Ammann
// 22.10.13 Fixes for Kinetis Board - 8 bit spi
#include "SPI_TFT_ILI9341.h"
#include "mbed.h"
#define BPP 16 // Bits per pixel
//extern Serial pc;
//extern DigitalOut xx; // debug !!
SPI_TFT_ILI9341::SPI_TFT_ILI9341(PinName mosi, PinName miso, PinName sclk, PinName cs, PinName reset, PinName dc, const char *name)
: GraphicsDisplay(name), _spi(mosi, miso, sclk), _cs(cs), _dc(dc)
{
orientation = 0;
char_x = 0;
_reset = reset;
tft_reset();
}
int SPI_TFT_ILI9341::width()
{
if (orientation == 0 || orientation == 2) return 240;
else return 320;
}
int SPI_TFT_ILI9341::height()
{
if (orientation == 0 || orientation == 2) return 320;
else return 240;
}
void SPI_TFT_ILI9341::set_orientation(unsigned int o)
{
orientation = o;
wr_cmd(0x36); // MEMORY_ACCESS_CONTROL
switch (orientation) {
case 0:
_spi.write(0x48);
break;
case 1:
_spi.write(0x28);
break;
case 2:
_spi.write(0x88);
break;
case 3:
_spi.write(0xE8);
break;
}
_cs = 1;
WindowMax();
}
// write command to tft register
void SPI_TFT_ILI9341::wr_cmd(unsigned char cmd)
{
_dc = 0;
_cs = 0;
_spi.write(cmd); // mbed lib
_dc = 1;
}
void SPI_TFT_ILI9341::wr_dat(unsigned char dat)
{
_spi.write(dat); // mbed lib
}
// the ILI9341 can read - has to be implemented later
// A read will return 0 at the moment
//unsigned short SPI_TFT_ILI9341::rd_dat (void)
//{
// unsigned short val = 0;
//val = _spi.write(0x73ff); /* Dummy read 1 */
//val = _spi.write(0x0000); /* Read D8..D15 */
// return (val);
//}
// Init code based on MI0283QT datasheet
void SPI_TFT_ILI9341::tft_reset()
{
_spi.format(8,3); // 8 bit spi mode 3
_spi.frequency(10000000); // 10 Mhz SPI clock
_cs = 1; // cs high
_dc = 1; // dc high
if (_reset != NC)
{
DigitalOut rst(_reset);
rst = 0; // display reset
wait_us(50);
rst = 1; // end hardware reset
}
wait_ms(5);
wr_cmd(0x01); // SW reset
wait_ms(5);
wr_cmd(0x28); // display off
/* Start Initial Sequence ----------------------------------------------------*/
wr_cmd(0xCF);
_spi.write(0x00);
_spi.write(0x83);
_spi.write(0x30);
_cs = 1;
wr_cmd(0xED);
_spi.write(0x64);
_spi.write(0x03);
_spi.write(0x12);
_spi.write(0x81);
_cs = 1;
wr_cmd(0xE8);
_spi.write(0x85);
_spi.write(0x01);
_spi.write(0x79);
_cs = 1;
wr_cmd(0xCB);
_spi.write(0x39);
_spi.write(0x2C);
_spi.write(0x00);
_spi.write(0x34);
_spi.write(0x02);
_cs = 1;
wr_cmd(0xF7);
_spi.write(0x20);
_cs = 1;
wr_cmd(0xEA);
_spi.write(0x00);
_spi.write(0x00);
_cs = 1;
wr_cmd(0xC0); // POWER_CONTROL_1
_spi.write(0x26);
_cs = 1;
wr_cmd(0xC1); // POWER_CONTROL_2
_spi.write(0x11);
_cs = 1;
wr_cmd(0xC5); // VCOM_CONTROL_1
_spi.write(0x35);
_spi.write(0x3E);
_cs = 1;
wr_cmd(0xC7); // VCOM_CONTROL_2
_spi.write(0xBE);
_cs = 1;
wr_cmd(0x36); // MEMORY_ACCESS_CONTROL
_spi.write(0x48);
_cs = 1;
wr_cmd(0x3A); // COLMOD_PIXEL_FORMAT_SET
_spi.write(0x55); // 16 bit pixel
_cs = 1;
wr_cmd(0xB1); // Frame Rate
_spi.write(0x00);
_spi.write(0x1B);
_cs = 1;
wr_cmd(0xF2); // Gamma Function Disable
_spi.write(0x08);
_cs = 1;
wr_cmd(0x26);
_spi.write(0x01); // gamma set for curve 01/2/04/08
_cs = 1;
wr_cmd(0xE0); // positive gamma correction
_spi.write(0x1F);
_spi.write(0x1A);
_spi.write(0x18);
_spi.write(0x0A);
_spi.write(0x0F);
_spi.write(0x06);
_spi.write(0x45);
_spi.write(0x87);
_spi.write(0x32);
_spi.write(0x0A);
_spi.write(0x07);
_spi.write(0x02);
_spi.write(0x07);
_spi.write(0x05);
_spi.write(0x00);
_cs = 1;
wr_cmd(0xE1); // negativ gamma correction
_spi.write(0x00);
_spi.write(0x25);
_spi.write(0x27);
_spi.write(0x05);
_spi.write(0x10);
_spi.write(0x09);
_spi.write(0x3A);
_spi.write(0x78);
_spi.write(0x4D);
_spi.write(0x05);
_spi.write(0x18);
_spi.write(0x0D);
_spi.write(0x38);
_spi.write(0x3A);
_spi.write(0x1F);
_cs = 1;
WindowMax ();
//wr_cmd(0x34); // tearing effect off
//_cs = 1;
//wr_cmd(0x35); // tearing effect on
//_cs = 1;
wr_cmd(0xB7); // entry mode
_spi.write(0x07);
_cs = 1;
wr_cmd(0xB6); // display function control
_spi.write(0x0A);
_spi.write(0x82);
_spi.write(0x27);
_spi.write(0x00);
_cs = 1;
wr_cmd(0x11); // sleep out
_cs = 1;
wait_ms(100);
wr_cmd(0x29); // display on
_cs = 1;
wait_ms(100);
}
void SPI_TFT_ILI9341::pixel(int x, int y, int color)
{
wr_cmd(0x2A);
_spi.write(x >> 8);
_spi.write(x);
_cs = 1;
wr_cmd(0x2B);
_spi.write(y >> 8);
_spi.write(y);
_cs = 1;
wr_cmd(0x2C); // send pixel
#if defined TARGET_KL25Z // 8 Bit SPI
_spi.write(color >> 8);
_spi.write(color & 0xff);
#else
_spi.format(16,3); // switch to 16 bit Mode 3
_spi.write(color); // Write D0..D15
_spi.format(8,3);
#endif
_cs = 1;
}
void SPI_TFT_ILI9341::window (unsigned int x, unsigned int y, unsigned int w, unsigned int h)
{
wr_cmd(0x2A);
_spi.write(x >> 8);
_spi.write(x);
_spi.write((x+w-1) >> 8);
_spi.write(x+w-1);
_cs = 1;
wr_cmd(0x2B);
_spi.write(y >> 8);
_spi.write(y);
_spi.write((y+h-1) >> 8);
_spi.write(y+h-1);
_cs = 1;
}
void SPI_TFT_ILI9341::WindowMax (void)
{
window (0, 0, width(), height());
}
void SPI_TFT_ILI9341::cls (void)
{
int pixel = ( width() * height());
WindowMax();
wr_cmd(0x2C); // send pixel
#if defined TARGET_KL25Z // 8 Bit SPI
unsigned int i;
for (i = 0; i < ( width() * height()); i++){
_spi.write(_background >> 8);
_spi.write(_background & 0xff);
}
#else
_spi.format(16,3); // switch to 16 bit Mode 3
unsigned int i;
for (i = 0; i < ( width() * height()); i++)
_spi.write(_background);
_spi.format(8,3);
#endif
_cs = 1;
}
void SPI_TFT_ILI9341::circle(int x0, int y0, int r, int color)
{
int x = -r, y = 0, err = 2-2*r, e2;
do {
pixel(x0-x, y0+y,color);
pixel(x0+x, y0+y,color);
pixel(x0+x, y0-y,color);
pixel(x0-x, y0-y,color);
e2 = err;
if (e2 <= y) {
err += ++y*2+1;
if (-x == y && e2 <= x) e2 = 0;
}
if (e2 > x) err += ++x*2+1;
} while (x <= 0);
}
void SPI_TFT_ILI9341::fillcircle(int x0, int y0, int r, int color)
{
int x = -r, y = 0, err = 2-2*r, e2;
do {
vline(x0-x, y0-y, y0+y, color);
vline(x0+x, y0-y, y0+y, color);
e2 = err;
if (e2 <= y) {
err += ++y*2+1;
if (-x == y && e2 <= x) e2 = 0;
}
if (e2 > x) err += ++x*2+1;
} while (x <= 0);
}
void SPI_TFT_ILI9341::hline(int x0, int x1, int y, int color)
{
int w;
w = x1 - x0 + 1;
window(x0,y,w,1);
wr_cmd(0x2C); // send pixel
#if defined TARGET_KL25Z // 8 Bit SPI
int j;
for (j=0; j<w; j++) {
_spi.write(color >> 8);
_spi.write(color & 0xff);
}
#else
_spi.format(16,3); // switch to 16 bit Mode 3
int j;
for (j=0; j<w; j++) {
_spi.write(color);
}
_spi.format(8,3);
#endif
_cs = 1;
WindowMax();
return;
}
void SPI_TFT_ILI9341::vline(int x, int y0, int y1, int color)
{
int h;
h = y1 - y0 + 1;
window(x,y0,1,h);
wr_cmd(0x2C); // send pixel
#if defined TARGET_KL25Z // 8 Bit SPI
for (int y=0; y<h; y++) {
_spi.write(color >> 8);
_spi.write(color & 0xff);
}
#else
_spi.format(16,3); // switch to 16 bit Mode 3
for (int y=0; y<h; y++) {
_spi.write(color);
}
_spi.format(8,3);
#endif
_cs = 1;
WindowMax();
return;
}
void SPI_TFT_ILI9341::line(int x0, int y0, int x1, int y1, int color)
{
//WindowMax();
int dx = 0, dy = 0;
int dx_sym = 0, dy_sym = 0;
int dx_x2 = 0, dy_x2 = 0;
int di = 0;
dx = x1-x0;
dy = y1-y0;
if (dx == 0) { /* vertical line */
if (y1 > y0) vline(x0,y0,y1,color);
else vline(x0,y1,y0,color);
return;
}
if (dx > 0) {
dx_sym = 1;
} else {
dx_sym = -1;
}
if (dy == 0) { /* horizontal line */
if (x1 > x0) hline(x0,x1,y0,color);
else hline(x1,x0,y0,color);
return;
}
if (dy > 0) {
dy_sym = 1;
} else {
dy_sym = -1;
}
dx = dx_sym*dx;
dy = dy_sym*dy;
dx_x2 = dx*2;
dy_x2 = dy*2;
if (dx >= dy) {
di = dy_x2 - dx;
while (x0 != x1) {
pixel(x0, y0, color);
x0 += dx_sym;
if (di<0) {
di += dy_x2;
} else {
di += dy_x2 - dx_x2;
y0 += dy_sym;
}
}
pixel(x0, y0, color);
} else {
di = dx_x2 - dy;
while (y0 != y1) {
pixel(x0, y0, color);
y0 += dy_sym;
if (di < 0) {
di += dx_x2;
} else {
di += dx_x2 - dy_x2;
x0 += dx_sym;
}
}
pixel(x0, y0, color);
}
return;
}
void SPI_TFT_ILI9341::rect(int x0, int y0, int x1, int y1, int color)
{
if (x1 > x0) hline(x0,x1,y0,color);
else hline(x1,x0,y0,color);
if (y1 > y0) vline(x0,y0,y1,color);
else vline(x0,y1,y0,color);
if (x1 > x0) hline(x0,x1,y1,color);
else hline(x1,x0,y1,color);
if (y1 > y0) vline(x1,y0,y1,color);
else vline(x1,y1,y0,color);
return;
}
void SPI_TFT_ILI9341::fillrect(int x0, int y0, int x1, int y1, int color)
{
int h = y1 - y0 + 1;
int w = x1 - x0 + 1;
int pixel = h * w;
window(x0,y0,w,h);
wr_cmd(0x2C); // send pixel
#if defined TARGET_KL25Z // 8 Bit SPI
for (int p=0; p<pixel; p++) {
_spi.write(color >> 8);
_spi.write(color & 0xff);
}
#else
_spi.format(16,3); // switch to 16 bit Mode 3
for (int p=0; p<pixel; p++) {
_spi.write(color);
}
_spi.format(8,3);
#endif
_cs = 1;
WindowMax();
return;
}
void SPI_TFT_ILI9341::locate(int x, int y)
{
char_x = x;
char_y = y;
}
int SPI_TFT_ILI9341::columns()
{
return width() / font[1];
}
int SPI_TFT_ILI9341::rows()
{
return height() / font[2];
}
int SPI_TFT_ILI9341::_putc(int value)
{
if (value == '\n') { // new line
char_x = 0;
char_y = char_y + font[2];
if (char_y >= height() - font[2]) {
char_y = 0;
}
} else {
character(char_x, char_y, value);
}
return value;
}
void SPI_TFT_ILI9341::character(int x, int y, int c)
{
unsigned int hor,vert,offset,bpl,j,i,b;
unsigned char* zeichen;
unsigned char z,w;
if ((c < 31) || (c > 127)) return; // test char range
// read font parameter from start of array
offset = font[0]; // bytes / char
hor = font[1]; // get hor size of font
vert = font[2]; // get vert size of font
bpl = font[3]; // bytes per line
if (char_x + hor > width()) {
char_x = 0;
char_y = char_y + vert;
if (char_y >= height() - font[2]) {
char_y = 0;
}
}
window(char_x, char_y,hor,vert); // char box
wr_cmd(0x2C); // send pixel
#ifndef TARGET_KL25Z // 16 Bit SPI
_spi.format(16,3);
#endif // switch to 16 bit Mode 3
zeichen = &font[((c -32) * offset) + 4]; // start of char bitmap
w = zeichen[0]; // width of actual char
for (j=0; j<vert; j++) { // vert line
for (i=0; i<hor; i++) { // horz line
z = zeichen[bpl * i + ((j & 0xF8) >> 3)+1];
b = 1 << (j & 0x07);
if (( z & b ) == 0x00) {
#ifndef TARGET_KL25Z // 16 Bit SPI
_spi.write(_background);
#else
_spi.write(_background >> 8);
_spi.write(_background & 0xff);
#endif
} else {
#ifndef TARGET_KL25Z // 16 Bit SPI
_spi.write(_foreground);
#else
_spi.write(_foreground >> 8);
_spi.write(_foreground & 0xff);
#endif
}
}
}
_cs = 1;
#ifndef TARGET_KL25Z // 16 Bit SPI
_spi.format(8,3);
#endif
WindowMax();
if ((w + 2) < hor) { // x offset to next char
char_x += w + 2;
} else char_x += hor;
}
void SPI_TFT_ILI9341::set_font(unsigned char* f)
{
font = f;
}
void SPI_TFT_ILI9341::Bitmap(unsigned int x, unsigned int y, unsigned int w, unsigned int h,unsigned char *bitmap)
{
unsigned int j;
int padd;
unsigned short *bitmap_ptr = (unsigned short *)bitmap;
#if defined TARGET_KL25Z // 8 Bit SPI
unsigned short pix_temp;
#endif
unsigned int i;
// the lines are padded to multiple of 4 bytes in a bitmap
padd = -1;
do {
padd ++;
} while (2*(w + padd)%4 != 0);
window(x, y, w, h);
bitmap_ptr += ((h - 1)* (w + padd));
wr_cmd(0x2C); // send pixel
#ifndef TARGET_KL25Z // 16 Bit SPI
_spi.format(16,3);
#endif // switch to 16 bit Mode 3
for (j = 0; j < h; j++) { //Lines
for (i = 0; i < w; i++) { // one line
#if defined TARGET_KL25Z // 8 Bit SPI
pix_temp = *bitmap_ptr;
_spi.write(pix_temp >> 8);
_spi.write(pix_temp);
bitmap_ptr++;
#else
_spi.write(*bitmap_ptr); // one line
bitmap_ptr++;
#endif
}
bitmap_ptr -= 2*w;
bitmap_ptr -= padd;
}
_cs = 1;
#ifndef TARGET_KL25Z // 16 Bit SPI
_spi.format(8,3);
#endif
WindowMax();
}
// local filesystem is not implemented in kinetis board
#if DEVICE_LOCALFILESYSTEM
int SPI_TFT_ILI9341::BMP_16(unsigned int x, unsigned int y, const char *Name_BMP)
{
#define OffsetPixelWidth 18
#define OffsetPixelHeigh 22
#define OffsetFileSize 34
#define OffsetPixData 10
#define OffsetBPP 28
char filename[50];
unsigned char BMP_Header[54];
unsigned short BPP_t;
unsigned int PixelWidth,PixelHeigh,start_data;
unsigned int i,off;
int padd,j;
unsigned short *line;
// get the filename
LocalFileSystem local("local");
sprintf(&filename[0],"/local/");
i=7;
while (*Name_BMP!='\0') {
filename[i++]=*Name_BMP++;
}
fprintf(stderr, "filename : %s \n\r",filename);
FILE *Image = fopen((const char *)&filename[0], "rb"); // open the bmp file
if (!Image) {
return(0); // error file not found !
}
fread(&BMP_Header[0],1,54,Image); // get the BMP Header
if (BMP_Header[0] != 0x42 || BMP_Header[1] != 0x4D) { // check magic byte
fclose(Image);
return(-1); // error no BMP file
}
BPP_t = BMP_Header[OffsetBPP] + (BMP_Header[OffsetBPP + 1] << 8);
if (BPP_t != 0x0010) {
fclose(Image);
return(-2); // error no 16 bit BMP
}
PixelHeigh = BMP_Header[OffsetPixelHeigh] + (BMP_Header[OffsetPixelHeigh + 1] << 8) + (BMP_Header[OffsetPixelHeigh + 2] << 16) + (BMP_Header[OffsetPixelHeigh + 3] << 24);
PixelWidth = BMP_Header[OffsetPixelWidth] + (BMP_Header[OffsetPixelWidth + 1] << 8) + (BMP_Header[OffsetPixelWidth + 2] << 16) + (BMP_Header[OffsetPixelWidth + 3] << 24);
if (PixelHeigh > height() + y || PixelWidth > width() + x) {
fclose(Image);
return(-3); // to big
}
start_data = BMP_Header[OffsetPixData] + (BMP_Header[OffsetPixData + 1] << 8) + (BMP_Header[OffsetPixData + 2] << 16) + (BMP_Header[OffsetPixData + 3] << 24);
line = (unsigned short *) malloc (2 * PixelWidth); // we need a buffer for a line
if (line == NULL) {
return(-4); // error no memory
}
// the bmp lines are padded to multiple of 4 bytes
padd = -1;
do {
padd ++;
} while ((PixelWidth * 2 + padd)%4 != 0);
//fseek(Image, 70 ,SEEK_SET);
window(x, y,PixelWidth ,PixelHeigh);
wr_cmd(0x2C); // send pixel
_spi.format(16,3); // switch to 16 bit Mode 3
for (j = PixelHeigh - 1; j >= 0; j--) { //Lines bottom up
off = j * (PixelWidth * 2 + padd) + start_data; // start of line
fseek(Image, off ,SEEK_SET);
fread(line,1,PixelWidth * 2,Image); // read a line - slow !
for (i = 0; i < PixelWidth; i++) { // copy pixel data to TFT
_spi.write(line[i]); // one 16 bit pixel
}
}
_cs = 1;
_spi.format(8,3);
free (line);
fclose(Image);
WindowMax();
return(1);
}
#endif | [
"akuhlens@indiana.edu"
] | akuhlens@indiana.edu |
c4cc829084ade968cadaa51a793376bda895c849 | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_new_log_4394.cpp | cf9c9b3a7d8f391dd61209f8745fed457718618d | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 83 | cpp | ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(01078) "serving URL %s", url); | [
"993273596@qq.com"
] | 993273596@qq.com |
ae1df12201da5b4325b86f6fe1e1424b42c91bd2 | 947d0ceb0754476616797dc7a3071735ddfbb4a9 | /Algorithm_practice/CSE2021/mst_kruskal/warshal/main.cpp | 5e85dac485492955ce737e6697a8f7063948e117 | [] | no_license | monirmusa/Algoritm-2D-array-practice | b26651277b1d5518cc709041884dfcf8774c3abe | e73a4e341d9f022131dc2e528acd85d605e137a1 | refs/heads/master | 2020-04-13T01:14:42.234715 | 2018-12-23T06:41:43 | 2018-12-23T06:41:43 | 162,868,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,122 | cpp | #include <stdio.h>
#include <stdlib.h>
#define inf 999
#define max_vertex 5
int **g, **rg;
int vertex, edge;
void warshal()
{
int k = 0;
for(int k=0; k<vertex;)
{
int pri_val = 0;
int cal_val = 0;
for(int i=0; i<vertex; i++)
for(int j=0; j<vertex; j++)
{
pri_val = rg[i][j];
cal_val = g[i][k] + g[k][j];
if(cal_val < pri_val) rg[i][j] = cal_val;
}
printf("\nPrint rg : %d\n",k++);
for(int i=0; i<vertex; i++)
{
for(int j=0; j<vertex; j++)
printf("%d ",rg[i][j]);
printf("\n");
}
}
}
int main()
{
int u, v, c;
printf("\nEnter Vertex : ");
//scanf("%d",&vertex);
vertex = 5;
g = (int **)malloc(max_vertex * sizeof(int *));
rg = (int **)malloc(max_vertex * sizeof(int *));
for(int i=0; i<max_vertex; i++)
{
g[i] = (int *)malloc(max_vertex * sizeof(int));
rg[i] = (int *)malloc(max_vertex * sizeof(int));
}
for(int i=0; i<vertex; i++)
for(int j=0; j<vertex; j++)
{
g[i][j] = 0;
rg[i][j] = inf;
if(i==j) rg[i][j] = 0;
}
printf("\nEnter Edge : ");
//scanf("%d",&edge);
edge = 9;
/*for(int i=0; i<edge; i++)
{
scanf("%d",&u);
scanf("%d",&v);
scanf("%d",&c);
g[u][v] = c;
g[v][u] = c;
}*/
g[0][1] = 10; g[1][0] = 10;
g[0][2] = 12; g[2][0] = 12;
g[0][4] = 7; g[4][0] = 7;
g[1][2] = 15; g[2][1] = 15;
g[1][3] = 7; g[3][1] = 7;
g[1][4] = 10; g[4][1] = 10;
g[2][3] = 5; g[3][2] = 5;
g[2][4] = 8; g[4][2] = 8;
g[3][4] = 7; g[4][3] = 7;
printf("\nPrint Graph : \n");
for(int i=0; i<vertex; i++)
{
for(int j=0; j<vertex; j++)
printf("%d ",g[i][j]);
printf("\n");
}
printf("\nPrint rg : \n");
for(int i=0; i<vertex; i++)
{
for(int j=0; j<vertex; j++)
printf("%d ",rg[i][j]);
printf("\n");
}
warshal();
return 0;
}
| [
"monirmusa.bd@gmail.com"
] | monirmusa.bd@gmail.com |
a67d7fd69380005bc816525b50307801cdfc7323 | 6a61e361064f5dd5ae93c0b69adb7387701ca802 | /class/app/juego/rompible.cpp | 243a4125ec0e4aff0607b782bb2619c443a15db1 | [
"Beerware"
] | permissive | TheMarlboroMan/winter-fgj5 | 66092b93ef00272a73efa34d67aa2beea16bed42 | 28cd4bd4ae37230e51c1a9963bcd293e674cdc3c | refs/heads/master | 2021-07-06T13:46:51.195913 | 2021-06-08T11:21:59 | 2021-06-08T11:21:59 | 44,922,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 993 | cpp | #include "rompible.h"
using namespace App_Juego;
Rompible::Rompible(float x, float y)
:Actor(x, y, W, H)
{
}
unsigned int Rompible::obtener_ciclos_representable()const
{
return 1;
}
unsigned short int Rompible::obtener_profundidad_ordenacion() const
{
return 30;
}
void Rompible::transformar_bloque(App_Graficos::Bloque_transformacion_representable &b) const
{
const auto& a=b.obtener_animacion(App_Definiciones::animaciones::sprites, App_Definiciones::animaciones_sprites::rompible);
const auto& f=a.obtener_para_tiempo_animacion(App_Graficos::Animaciones::obtener_tiempo(), a.acc_duracion_total()).frame;
b.establecer_tipo(App_Graficos::Bloque_transformacion_representable::tipos::tr_bitmap);
b.establecer_alpha(255);
b.establecer_recurso(App::Recursos_graficos::rt_sprites);
b.establecer_recorte(f.x, f.y, f.w, f.h);
b.establecer_posicion(acc_espaciable_x()+f.desp_x, acc_espaciable_y()+f.desp_y, f.w, f.h);
}
void Rompible::recibir_disparo(int v)
{
mut_borrar(true);
}
| [
"marlborometal@gmail.com"
] | marlborometal@gmail.com |
77d7066b792198f2775c5249b28e73bb172f2d3c | 63c71060f36866bca4ac27304cef6d5755fdc35c | /src/GICs/GicFloatingVpd.cpp | 18ef79d1561f2e63eb39849dadbe461c2b33f9e3 | [] | no_license | 15831944/barry_dev | bc8441cbfbd4b62fbb42bee3dcb79ff7f5fcaf8a | d4a83421458aa28ca293caa7a5567433e9358596 | refs/heads/master | 2022-03-24T07:00:26.810732 | 2015-12-22T07:19:58 | 2015-12-22T07:19:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,649 | cpp | ////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2005
// Packet Engineering, Inc. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification is not permitted unless authorized in writing by a duly
// appointed officer of Packet Engineering, Inc. or its derivatives
//
// Description:
//
//
// Modification History:
// 07/08/2010: Created by Tracy
////////////////////////////////////////////////////////////////////////////
#include "GICs/GicFloatingVpd.h"
#include "HtmlUtil/HtmlUtil.h"
#include "XmlUtil/Ptrs.h"
#include "XmlUtil/XmlTag.h"
#include "Util/RCObject.h"
#include "Util/RCObjImp.h"
#include "Util/String.h"
// static AosGicPtr sgGic = new AosGicFloatingVpd();
AosGicFloatingVpd::AosGicFloatingVpd(const bool flag)
:
AosGic(AOSGIC_FLOATINGVPD, AosGicType::eFloatingVpd, flag)
{
}
AosGicFloatingVpd::~AosGicFloatingVpd()
{
}
bool
AosGicFloatingVpd::generateCode(
const AosHtmlReqProcPtr &htmlPtr,
AosXmlTagPtr &vpd,
const AosXmlTagPtr &obj,
const OmnString &parentid,
AosHtmlCode &code)
{
// This function will generate:
// 1. HTML code
// 2. CSS code
// 3. JavaScript Code
// 4. Flash code
// Tracy, = Debug
code.mJson
<< ",gic_vpdname: \"" << vpd->getAttrStr("gic_vpdname", "vpd_Jimmy")
<< "\",gic_iconsrc: \"" << vpd->getAttrStr("gic_iconsrc", "img101/ai7631.jpg")
<< "\",gic_moviconsrc: \"" << vpd->getAttrStr("gic_moviconsrc", "a1/ai4215.png")
<< "\",gic_iconww: " << vpd->getAttrInt("gic_iconww", 18)
<< ",gic_movable:" << vpd->getAttrStr("gic_movable", "true");
return true;
}
| [
"barryniu@jimodb.com"
] | barryniu@jimodb.com |
9efd3bad15ea71562fcd85648e4b8134cad4410d | 9c9003f4912e2065c3901f1f51ef5b398f999a10 | /projectb/client/game_xxx/newProtocol/game_rouletteak_protocol.pb.h | 8fc882915027ec4a6e76c6c6f384864be91506ef | [] | no_license | PHDaozhang/recharge_h5 | 41424d5725eae69cc6a921cd1ef954b255a0ca65 | 7d5e63d97e731ea860d927c37612fe35f7d3bd61 | refs/heads/master | 2020-08-11T21:57:49.842525 | 2019-10-15T07:32:40 | 2019-10-15T07:32:40 | 214,632,134 | 0 | 3 | null | null | null | null | UTF-8 | C++ | false | true | 265,276 | h | // Generated by the protocol buffer compiler. DO NOT EDIT!
// source: game_rouletteak_protocol.proto
#ifndef PROTOBUF_game_5frouletteak_5fprotocol_2eproto__INCLUDED
#define PROTOBUF_game_5frouletteak_5fprotocol_2eproto__INCLUDED
#include <string>
#include <google/protobuf/stubs/common.h>
#if GOOGLE_PROTOBUF_VERSION < 2005000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 2005000 < GOOGLE_PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h>
#include <google/protobuf/extension_set.h>
#include <google/protobuf/unknown_field_set.h>
#include "game_rouletteak_def.pb.h"
#include "msg_type_def.pb.h"
// @@protoc_insertion_point(includes)
namespace game_rouletteak_protocols {
// Internal implementation detail -- do not call these.
void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
class msg_room_info;
class packetc2l_get_room_info;
class packetl2c_get_room_info_result;
class packetc2l_enter_room;
class packetl2c_enter_room_result;
class packetc2l_leave_room;
class packetl2c_leave_room_result;
class msg_player_info;
class msg_bet_info;
class msg_player_gold;
class msg_result_info;
class msg_scene_info;
class packetc2l_get_scene_info;
class packetl2c_get_scene_info_result;
class packetl2c_bc_scene_prepare_into;
class packetl2c_bc_scene_bet_into;
class packetl2c_bc_sync_scene_bet_into;
class packetl2c_bc_scene_deal_into;
class packetl2c_bc_scene_result_into;
class packetc2l_ask_bet_info;
class packetl2c_bet_info_result;
class packetl2c_enter_player_info;
class packetl2c_leave_player_info;
class packetl2c_bc_change_attr;
class packetc2l_supply_chip;
class packetl2c_supply_chip_result;
class packetc2l_check_state;
class packetc2l_check_state_result;
class msg_room_history;
class packetc2l_room_history_list;
class packetl2c_room_history_list_result;
class packetl2c_notify_history;
class packetc2l_continue_bet;
class packetl2c_continue_bet_result;
class packetc2l_cancel_bet;
class packetl2c_cancel_bet_result;
class room_player;
class packetl2c_gm_get_room_info;
class packetl2c_gm_get_room_info_result;
class packetl2c_gm_set_bead;
class packetl2c_gm_set_bead_result;
// ===================================================================
class msg_room_info : public ::google::protobuf::Message {
public:
msg_room_info();
virtual ~msg_room_info();
msg_room_info(const msg_room_info& from);
inline msg_room_info& operator=(const msg_room_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const msg_room_info& default_instance();
void Swap(msg_room_info* other);
// implements Message ----------------------------------------------
msg_room_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const msg_room_info& from);
void MergeFrom(const msg_room_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int32 roomid = 1;
inline bool has_roomid() const;
inline void clear_roomid();
static const int kRoomidFieldNumber = 1;
inline ::google::protobuf::int32 roomid() const;
inline void set_roomid(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.msg_room_info)
private:
inline void set_has_roomid();
inline void clear_has_roomid();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::int32 roomid_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static msg_room_info* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_get_room_info : public ::google::protobuf::Message {
public:
packetc2l_get_room_info();
virtual ~packetc2l_get_room_info();
packetc2l_get_room_info(const packetc2l_get_room_info& from);
inline packetc2l_get_room_info& operator=(const packetc2l_get_room_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_get_room_info& default_instance();
void Swap(packetc2l_get_room_info* other);
// implements Message ----------------------------------------------
packetc2l_get_room_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_get_room_info& from);
void MergeFrom(const packetc2l_get_room_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_room_info];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_get_room_info)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_get_room_info* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_get_room_info_result : public ::google::protobuf::Message {
public:
packetl2c_get_room_info_result();
virtual ~packetl2c_get_room_info_result();
packetl2c_get_room_info_result(const packetl2c_get_room_info_result& from);
inline packetl2c_get_room_info_result& operator=(const packetl2c_get_room_info_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_get_room_info_result& default_instance();
void Swap(packetl2c_get_room_info_result* other);
// implements Message ----------------------------------------------
packetl2c_get_room_info_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_get_room_info_result& from);
void MergeFrom(const packetl2c_get_room_info_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_room_info_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// repeated .game_rouletteak_protocols.msg_room_info room_list = 2;
inline int room_list_size() const;
inline void clear_room_list();
static const int kRoomListFieldNumber = 2;
inline const ::game_rouletteak_protocols::msg_room_info& room_list(int index) const;
inline ::game_rouletteak_protocols::msg_room_info* mutable_room_list(int index);
inline ::game_rouletteak_protocols::msg_room_info* add_room_list();
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_info >&
room_list() const;
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_info >*
mutable_room_list();
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_get_room_info_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_info > room_list_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_get_room_info_result* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_enter_room : public ::google::protobuf::Message {
public:
packetc2l_enter_room();
virtual ~packetc2l_enter_room();
packetc2l_enter_room(const packetc2l_enter_room& from);
inline packetc2l_enter_room& operator=(const packetc2l_enter_room& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_enter_room& default_instance();
void Swap(packetc2l_enter_room* other);
// implements Message ----------------------------------------------
packetc2l_enter_room* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_enter_room& from);
void MergeFrom(const packetc2l_enter_room& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_enter_room];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 roomid = 2;
inline bool has_roomid() const;
inline void clear_roomid();
static const int kRoomidFieldNumber = 2;
inline ::google::protobuf::int32 roomid() const;
inline void set_roomid(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_enter_room)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_roomid();
inline void clear_has_roomid();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 roomid_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_enter_room* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_enter_room_result : public ::google::protobuf::Message {
public:
packetl2c_enter_room_result();
virtual ~packetl2c_enter_room_result();
packetl2c_enter_room_result(const packetl2c_enter_room_result& from);
inline packetl2c_enter_room_result& operator=(const packetl2c_enter_room_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_enter_room_result& default_instance();
void Swap(packetl2c_enter_room_result* other);
// implements Message ----------------------------------------------
packetl2c_enter_room_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_enter_room_result& from);
void MergeFrom(const packetl2c_enter_room_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_enter_room_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool has_result() const;
inline void clear_result();
static const int kResultFieldNumber = 2;
inline ::msg_type_def::e_msg_result_def result() const;
inline void set_result(::msg_type_def::e_msg_result_def value);
// optional .game_rouletteak_protocols.msg_scene_info scene_info = 3;
inline bool has_scene_info() const;
inline void clear_scene_info();
static const int kSceneInfoFieldNumber = 3;
inline const ::game_rouletteak_protocols::msg_scene_info& scene_info() const;
inline ::game_rouletteak_protocols::msg_scene_info* mutable_scene_info();
inline ::game_rouletteak_protocols::msg_scene_info* release_scene_info();
inline void set_allocated_scene_info(::game_rouletteak_protocols::msg_scene_info* scene_info);
// optional int64 self_gold = 4;
inline bool has_self_gold() const;
inline void clear_self_gold();
static const int kSelfGoldFieldNumber = 4;
inline ::google::protobuf::int64 self_gold() const;
inline void set_self_gold(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_enter_room_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_result();
inline void clear_has_result();
inline void set_has_scene_info();
inline void clear_has_scene_info();
inline void set_has_self_gold();
inline void clear_has_self_gold();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
int result_;
::game_rouletteak_protocols::msg_scene_info* scene_info_;
::google::protobuf::int64 self_gold_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_enter_room_result* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_leave_room : public ::google::protobuf::Message {
public:
packetc2l_leave_room();
virtual ~packetc2l_leave_room();
packetc2l_leave_room(const packetc2l_leave_room& from);
inline packetc2l_leave_room& operator=(const packetc2l_leave_room& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_leave_room& default_instance();
void Swap(packetc2l_leave_room* other);
// implements Message ----------------------------------------------
packetc2l_leave_room* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_leave_room& from);
void MergeFrom(const packetc2l_leave_room& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_leave_room];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_leave_room)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_leave_room* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_leave_room_result : public ::google::protobuf::Message {
public:
packetl2c_leave_room_result();
virtual ~packetl2c_leave_room_result();
packetl2c_leave_room_result(const packetl2c_leave_room_result& from);
inline packetl2c_leave_room_result& operator=(const packetl2c_leave_room_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_leave_room_result& default_instance();
void Swap(packetl2c_leave_room_result* other);
// implements Message ----------------------------------------------
packetl2c_leave_room_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_leave_room_result& from);
void MergeFrom(const packetl2c_leave_room_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_leave_room_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_success];
inline bool has_result() const;
inline void clear_result();
static const int kResultFieldNumber = 2;
inline ::msg_type_def::e_msg_result_def result() const;
inline void set_result(::msg_type_def::e_msg_result_def value);
// optional int64 player_gold = 3;
inline bool has_player_gold() const;
inline void clear_player_gold();
static const int kPlayerGoldFieldNumber = 3;
inline ::google::protobuf::int64 player_gold() const;
inline void set_player_gold(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_leave_room_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_result();
inline void clear_has_result();
inline void set_has_player_gold();
inline void clear_has_player_gold();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
int result_;
::google::protobuf::int64 player_gold_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_leave_room_result* default_instance_;
};
// -------------------------------------------------------------------
class msg_player_info : public ::google::protobuf::Message {
public:
msg_player_info();
virtual ~msg_player_info();
msg_player_info(const msg_player_info& from);
inline msg_player_info& operator=(const msg_player_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const msg_player_info& default_instance();
void Swap(msg_player_info* other);
// implements Message ----------------------------------------------
msg_player_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const msg_player_info& from);
void MergeFrom(const msg_player_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int32 player_id = 1;
inline bool has_player_id() const;
inline void clear_player_id();
static const int kPlayerIdFieldNumber = 1;
inline ::google::protobuf::int32 player_id() const;
inline void set_player_id(::google::protobuf::int32 value);
// optional string player_name = 2;
inline bool has_player_name() const;
inline void clear_player_name();
static const int kPlayerNameFieldNumber = 2;
inline const ::std::string& player_name() const;
inline void set_player_name(const ::std::string& value);
inline void set_player_name(const char* value);
inline void set_player_name(const char* value, size_t size);
inline ::std::string* mutable_player_name();
inline ::std::string* release_player_name();
inline void set_allocated_player_name(::std::string* player_name);
// optional int32 head_frame = 3;
inline bool has_head_frame() const;
inline void clear_head_frame();
static const int kHeadFrameFieldNumber = 3;
inline ::google::protobuf::int32 head_frame() const;
inline void set_head_frame(::google::protobuf::int32 value);
// optional string head_custom = 4;
inline bool has_head_custom() const;
inline void clear_head_custom();
static const int kHeadCustomFieldNumber = 4;
inline const ::std::string& head_custom() const;
inline void set_head_custom(const ::std::string& value);
inline void set_head_custom(const char* value);
inline void set_head_custom(const char* value, size_t size);
inline ::std::string* mutable_head_custom();
inline ::std::string* release_head_custom();
inline void set_allocated_head_custom(::std::string* head_custom);
// optional int64 player_gold = 5;
inline bool has_player_gold() const;
inline void clear_player_gold();
static const int kPlayerGoldFieldNumber = 5;
inline ::google::protobuf::int64 player_gold() const;
inline void set_player_gold(::google::protobuf::int64 value);
// optional int32 player_sex = 6;
inline bool has_player_sex() const;
inline void clear_player_sex();
static const int kPlayerSexFieldNumber = 6;
inline ::google::protobuf::int32 player_sex() const;
inline void set_player_sex(::google::protobuf::int32 value);
// optional int32 vip_level = 7;
inline bool has_vip_level() const;
inline void clear_vip_level();
static const int kVipLevelFieldNumber = 7;
inline ::google::protobuf::int32 vip_level() const;
inline void set_vip_level(::google::protobuf::int32 value);
// optional int32 history_bet_gold = 8;
inline bool has_history_bet_gold() const;
inline void clear_history_bet_gold();
static const int kHistoryBetGoldFieldNumber = 8;
inline ::google::protobuf::int32 history_bet_gold() const;
inline void set_history_bet_gold(::google::protobuf::int32 value);
// optional int32 win_count = 9;
inline bool has_win_count() const;
inline void clear_win_count();
static const int kWinCountFieldNumber = 9;
inline ::google::protobuf::int32 win_count() const;
inline void set_win_count(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.msg_player_info)
private:
inline void set_has_player_id();
inline void clear_has_player_id();
inline void set_has_player_name();
inline void clear_has_player_name();
inline void set_has_head_frame();
inline void clear_has_head_frame();
inline void set_has_head_custom();
inline void clear_has_head_custom();
inline void set_has_player_gold();
inline void clear_has_player_gold();
inline void set_has_player_sex();
inline void clear_has_player_sex();
inline void set_has_vip_level();
inline void clear_has_vip_level();
inline void set_has_history_bet_gold();
inline void clear_has_history_bet_gold();
inline void set_has_win_count();
inline void clear_has_win_count();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::std::string* player_name_;
::google::protobuf::int32 player_id_;
::google::protobuf::int32 head_frame_;
::std::string* head_custom_;
::google::protobuf::int64 player_gold_;
::google::protobuf::int32 player_sex_;
::google::protobuf::int32 vip_level_;
::google::protobuf::int32 history_bet_gold_;
::google::protobuf::int32 win_count_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(9 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static msg_player_info* default_instance_;
};
// -------------------------------------------------------------------
class msg_bet_info : public ::google::protobuf::Message {
public:
msg_bet_info();
virtual ~msg_bet_info();
msg_bet_info(const msg_bet_info& from);
inline msg_bet_info& operator=(const msg_bet_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const msg_bet_info& default_instance();
void Swap(msg_bet_info* other);
// implements Message ----------------------------------------------
msg_bet_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const msg_bet_info& from);
void MergeFrom(const msg_bet_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int32 player_id = 1;
inline bool has_player_id() const;
inline void clear_player_id();
static const int kPlayerIdFieldNumber = 1;
inline ::google::protobuf::int32 player_id() const;
inline void set_player_id(::google::protobuf::int32 value);
// optional int32 bet_pos = 2;
inline bool has_bet_pos() const;
inline void clear_bet_pos();
static const int kBetPosFieldNumber = 2;
inline ::google::protobuf::int32 bet_pos() const;
inline void set_bet_pos(::google::protobuf::int32 value);
// optional int64 bet_gold = 3;
inline bool has_bet_gold() const;
inline void clear_bet_gold();
static const int kBetGoldFieldNumber = 3;
inline ::google::protobuf::int64 bet_gold() const;
inline void set_bet_gold(::google::protobuf::int64 value);
// optional int64 cur_gold = 4;
inline bool has_cur_gold() const;
inline void clear_cur_gold();
static const int kCurGoldFieldNumber = 4;
inline ::google::protobuf::int64 cur_gold() const;
inline void set_cur_gold(::google::protobuf::int64 value);
// optional int32 chip_index = 5;
inline bool has_chip_index() const;
inline void clear_chip_index();
static const int kChipIndexFieldNumber = 5;
inline ::google::protobuf::int32 chip_index() const;
inline void set_chip_index(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.msg_bet_info)
private:
inline void set_has_player_id();
inline void clear_has_player_id();
inline void set_has_bet_pos();
inline void clear_has_bet_pos();
inline void set_has_bet_gold();
inline void clear_has_bet_gold();
inline void set_has_cur_gold();
inline void clear_has_cur_gold();
inline void set_has_chip_index();
inline void clear_has_chip_index();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::int32 player_id_;
::google::protobuf::int32 bet_pos_;
::google::protobuf::int64 bet_gold_;
::google::protobuf::int64 cur_gold_;
::google::protobuf::int32 chip_index_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(5 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static msg_bet_info* default_instance_;
};
// -------------------------------------------------------------------
class msg_player_gold : public ::google::protobuf::Message {
public:
msg_player_gold();
virtual ~msg_player_gold();
msg_player_gold(const msg_player_gold& from);
inline msg_player_gold& operator=(const msg_player_gold& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const msg_player_gold& default_instance();
void Swap(msg_player_gold* other);
// implements Message ----------------------------------------------
msg_player_gold* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const msg_player_gold& from);
void MergeFrom(const msg_player_gold& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int32 player_id = 1;
inline bool has_player_id() const;
inline void clear_player_id();
static const int kPlayerIdFieldNumber = 1;
inline ::google::protobuf::int32 player_id() const;
inline void set_player_id(::google::protobuf::int32 value);
// optional int64 win_gold = 2;
inline bool has_win_gold() const;
inline void clear_win_gold();
static const int kWinGoldFieldNumber = 2;
inline ::google::protobuf::int64 win_gold() const;
inline void set_win_gold(::google::protobuf::int64 value);
// optional int64 cur_gold = 3;
inline bool has_cur_gold() const;
inline void clear_cur_gold();
static const int kCurGoldFieldNumber = 3;
inline ::google::protobuf::int64 cur_gold() const;
inline void set_cur_gold(::google::protobuf::int64 value);
// optional int32 history_bet_gold = 4;
inline bool has_history_bet_gold() const;
inline void clear_history_bet_gold();
static const int kHistoryBetGoldFieldNumber = 4;
inline ::google::protobuf::int32 history_bet_gold() const;
inline void set_history_bet_gold(::google::protobuf::int32 value);
// optional int64 win_count = 5;
inline bool has_win_count() const;
inline void clear_win_count();
static const int kWinCountFieldNumber = 5;
inline ::google::protobuf::int64 win_count() const;
inline void set_win_count(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.msg_player_gold)
private:
inline void set_has_player_id();
inline void clear_has_player_id();
inline void set_has_win_gold();
inline void clear_has_win_gold();
inline void set_has_cur_gold();
inline void clear_has_cur_gold();
inline void set_has_history_bet_gold();
inline void clear_has_history_bet_gold();
inline void set_has_win_count();
inline void clear_has_win_count();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::int64 win_gold_;
::google::protobuf::int32 player_id_;
::google::protobuf::int32 history_bet_gold_;
::google::protobuf::int64 cur_gold_;
::google::protobuf::int64 win_count_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(5 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static msg_player_gold* default_instance_;
};
// -------------------------------------------------------------------
class msg_result_info : public ::google::protobuf::Message {
public:
msg_result_info();
virtual ~msg_result_info();
msg_result_info(const msg_result_info& from);
inline msg_result_info& operator=(const msg_result_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const msg_result_info& default_instance();
void Swap(msg_result_info* other);
// implements Message ----------------------------------------------
msg_result_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const msg_result_info& from);
void MergeFrom(const msg_result_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int32 number = 1;
inline bool has_number() const;
inline void clear_number();
static const int kNumberFieldNumber = 1;
inline ::google::protobuf::int32 number() const;
inline void set_number(::google::protobuf::int32 value);
// repeated .game_rouletteak_protocols.msg_player_gold player_golds = 2;
inline int player_golds_size() const;
inline void clear_player_golds();
static const int kPlayerGoldsFieldNumber = 2;
inline const ::game_rouletteak_protocols::msg_player_gold& player_golds(int index) const;
inline ::game_rouletteak_protocols::msg_player_gold* mutable_player_golds(int index);
inline ::game_rouletteak_protocols::msg_player_gold* add_player_golds();
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_gold >&
player_golds() const;
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_gold >*
mutable_player_golds();
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.msg_result_info)
private:
inline void set_has_number();
inline void clear_has_number();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_gold > player_golds_;
::google::protobuf::int32 number_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static msg_result_info* default_instance_;
};
// -------------------------------------------------------------------
class msg_scene_info : public ::google::protobuf::Message {
public:
msg_scene_info();
virtual ~msg_scene_info();
msg_scene_info(const msg_scene_info& from);
inline msg_scene_info& operator=(const msg_scene_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const msg_scene_info& default_instance();
void Swap(msg_scene_info* other);
// implements Message ----------------------------------------------
msg_scene_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const msg_scene_info& from);
void MergeFrom(const msg_scene_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int32 roomid = 1;
inline bool has_roomid() const;
inline void clear_roomid();
static const int kRoomidFieldNumber = 1;
inline ::google::protobuf::int32 roomid() const;
inline void set_roomid(::google::protobuf::int32 value);
// optional int32 scene_state = 2;
inline bool has_scene_state() const;
inline void clear_scene_state();
static const int kSceneStateFieldNumber = 2;
inline ::google::protobuf::int32 scene_state() const;
inline void set_scene_state(::google::protobuf::int32 value);
// optional int32 cd = 3;
inline bool has_cd() const;
inline void clear_cd();
static const int kCdFieldNumber = 3;
inline ::google::protobuf::int32 cd() const;
inline void set_cd(::google::protobuf::int32 value);
// repeated .game_rouletteak_protocols.msg_player_info player_list = 4;
inline int player_list_size() const;
inline void clear_player_list();
static const int kPlayerListFieldNumber = 4;
inline const ::game_rouletteak_protocols::msg_player_info& player_list(int index) const;
inline ::game_rouletteak_protocols::msg_player_info* mutable_player_list(int index);
inline ::game_rouletteak_protocols::msg_player_info* add_player_list();
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_info >&
player_list() const;
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_info >*
mutable_player_list();
// repeated .game_rouletteak_protocols.msg_bet_info bet_infos = 5;
inline int bet_infos_size() const;
inline void clear_bet_infos();
static const int kBetInfosFieldNumber = 5;
inline const ::game_rouletteak_protocols::msg_bet_info& bet_infos(int index) const;
inline ::game_rouletteak_protocols::msg_bet_info* mutable_bet_infos(int index);
inline ::game_rouletteak_protocols::msg_bet_info* add_bet_infos();
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >&
bet_infos() const;
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >*
mutable_bet_infos();
// optional .game_rouletteak_protocols.msg_result_info result_info = 6;
inline bool has_result_info() const;
inline void clear_result_info();
static const int kResultInfoFieldNumber = 6;
inline const ::game_rouletteak_protocols::msg_result_info& result_info() const;
inline ::game_rouletteak_protocols::msg_result_info* mutable_result_info();
inline ::game_rouletteak_protocols::msg_result_info* release_result_info();
inline void set_allocated_result_info(::game_rouletteak_protocols::msg_result_info* result_info);
// repeated int32 pos_list = 7;
inline int pos_list_size() const;
inline void clear_pos_list();
static const int kPosListFieldNumber = 7;
inline ::google::protobuf::int32 pos_list(int index) const;
inline void set_pos_list(int index, ::google::protobuf::int32 value);
inline void add_pos_list(::google::protobuf::int32 value);
inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
pos_list() const;
inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
mutable_pos_list();
// optional int64 bet_gold_room = 8;
inline bool has_bet_gold_room() const;
inline void clear_bet_gold_room();
static const int kBetGoldRoomFieldNumber = 8;
inline ::google::protobuf::int64 bet_gold_room() const;
inline void set_bet_gold_room(::google::protobuf::int64 value);
// optional int64 bet_gold_self = 9;
inline bool has_bet_gold_self() const;
inline void clear_bet_gold_self();
static const int kBetGoldSelfFieldNumber = 9;
inline ::google::protobuf::int64 bet_gold_self() const;
inline void set_bet_gold_self(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.msg_scene_info)
private:
inline void set_has_roomid();
inline void clear_has_roomid();
inline void set_has_scene_state();
inline void clear_has_scene_state();
inline void set_has_cd();
inline void clear_has_cd();
inline void set_has_result_info();
inline void clear_has_result_info();
inline void set_has_bet_gold_room();
inline void clear_has_bet_gold_room();
inline void set_has_bet_gold_self();
inline void clear_has_bet_gold_self();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::int32 roomid_;
::google::protobuf::int32 scene_state_;
::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_info > player_list_;
::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info > bet_infos_;
::game_rouletteak_protocols::msg_result_info* result_info_;
::google::protobuf::RepeatedField< ::google::protobuf::int32 > pos_list_;
::google::protobuf::int64 bet_gold_room_;
::google::protobuf::int64 bet_gold_self_;
::google::protobuf::int32 cd_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(9 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static msg_scene_info* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_get_scene_info : public ::google::protobuf::Message {
public:
packetc2l_get_scene_info();
virtual ~packetc2l_get_scene_info();
packetc2l_get_scene_info(const packetc2l_get_scene_info& from);
inline packetc2l_get_scene_info& operator=(const packetc2l_get_scene_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_get_scene_info& default_instance();
void Swap(packetc2l_get_scene_info* other);
// implements Message ----------------------------------------------
packetc2l_get_scene_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_get_scene_info& from);
void MergeFrom(const packetc2l_get_scene_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_scene_info];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_get_scene_info)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_get_scene_info* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_get_scene_info_result : public ::google::protobuf::Message {
public:
packetl2c_get_scene_info_result();
virtual ~packetl2c_get_scene_info_result();
packetl2c_get_scene_info_result(const packetl2c_get_scene_info_result& from);
inline packetl2c_get_scene_info_result& operator=(const packetl2c_get_scene_info_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_get_scene_info_result& default_instance();
void Swap(packetl2c_get_scene_info_result* other);
// implements Message ----------------------------------------------
packetl2c_get_scene_info_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_get_scene_info_result& from);
void MergeFrom(const packetl2c_get_scene_info_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_scene_info_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional .game_rouletteak_protocols.msg_scene_info scene_info = 2;
inline bool has_scene_info() const;
inline void clear_scene_info();
static const int kSceneInfoFieldNumber = 2;
inline const ::game_rouletteak_protocols::msg_scene_info& scene_info() const;
inline ::game_rouletteak_protocols::msg_scene_info* mutable_scene_info();
inline ::game_rouletteak_protocols::msg_scene_info* release_scene_info();
inline void set_allocated_scene_info(::game_rouletteak_protocols::msg_scene_info* scene_info);
// optional int64 self_gold = 3;
inline bool has_self_gold() const;
inline void clear_self_gold();
static const int kSelfGoldFieldNumber = 3;
inline ::google::protobuf::int64 self_gold() const;
inline void set_self_gold(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_get_scene_info_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_scene_info();
inline void clear_has_scene_info();
inline void set_has_self_gold();
inline void clear_has_self_gold();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::game_rouletteak_protocols::msg_scene_info* scene_info_;
::google::protobuf::int64 self_gold_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_get_scene_info_result* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_bc_scene_prepare_into : public ::google::protobuf::Message {
public:
packetl2c_bc_scene_prepare_into();
virtual ~packetl2c_bc_scene_prepare_into();
packetl2c_bc_scene_prepare_into(const packetl2c_bc_scene_prepare_into& from);
inline packetl2c_bc_scene_prepare_into& operator=(const packetl2c_bc_scene_prepare_into& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_bc_scene_prepare_into& default_instance();
void Swap(packetl2c_bc_scene_prepare_into* other);
// implements Message ----------------------------------------------
packetl2c_bc_scene_prepare_into* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_bc_scene_prepare_into& from);
void MergeFrom(const packetl2c_bc_scene_prepare_into& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_scene_prepare_into];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 cd = 2;
inline bool has_cd() const;
inline void clear_cd();
static const int kCdFieldNumber = 2;
inline ::google::protobuf::int32 cd() const;
inline void set_cd(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_bc_scene_prepare_into)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_cd();
inline void clear_has_cd();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 cd_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_bc_scene_prepare_into* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_bc_scene_bet_into : public ::google::protobuf::Message {
public:
packetl2c_bc_scene_bet_into();
virtual ~packetl2c_bc_scene_bet_into();
packetl2c_bc_scene_bet_into(const packetl2c_bc_scene_bet_into& from);
inline packetl2c_bc_scene_bet_into& operator=(const packetl2c_bc_scene_bet_into& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_bc_scene_bet_into& default_instance();
void Swap(packetl2c_bc_scene_bet_into* other);
// implements Message ----------------------------------------------
packetl2c_bc_scene_bet_into* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_bc_scene_bet_into& from);
void MergeFrom(const packetl2c_bc_scene_bet_into& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_scene_bet_into];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 cd = 2;
inline bool has_cd() const;
inline void clear_cd();
static const int kCdFieldNumber = 2;
inline ::google::protobuf::int32 cd() const;
inline void set_cd(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_bc_scene_bet_into)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_cd();
inline void clear_has_cd();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 cd_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_bc_scene_bet_into* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_bc_sync_scene_bet_into : public ::google::protobuf::Message {
public:
packetl2c_bc_sync_scene_bet_into();
virtual ~packetl2c_bc_sync_scene_bet_into();
packetl2c_bc_sync_scene_bet_into(const packetl2c_bc_sync_scene_bet_into& from);
inline packetl2c_bc_sync_scene_bet_into& operator=(const packetl2c_bc_sync_scene_bet_into& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_bc_sync_scene_bet_into& default_instance();
void Swap(packetl2c_bc_sync_scene_bet_into* other);
// implements Message ----------------------------------------------
packetl2c_bc_sync_scene_bet_into* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_bc_sync_scene_bet_into& from);
void MergeFrom(const packetl2c_bc_sync_scene_bet_into& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_sync_scene_bet_into];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// repeated .game_rouletteak_protocols.msg_bet_info bet_list = 2;
inline int bet_list_size() const;
inline void clear_bet_list();
static const int kBetListFieldNumber = 2;
inline const ::game_rouletteak_protocols::msg_bet_info& bet_list(int index) const;
inline ::game_rouletteak_protocols::msg_bet_info* mutable_bet_list(int index);
inline ::game_rouletteak_protocols::msg_bet_info* add_bet_list();
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >&
bet_list() const;
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >*
mutable_bet_list();
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_bc_sync_scene_bet_into)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info > bet_list_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_bc_sync_scene_bet_into* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_bc_scene_deal_into : public ::google::protobuf::Message {
public:
packetl2c_bc_scene_deal_into();
virtual ~packetl2c_bc_scene_deal_into();
packetl2c_bc_scene_deal_into(const packetl2c_bc_scene_deal_into& from);
inline packetl2c_bc_scene_deal_into& operator=(const packetl2c_bc_scene_deal_into& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_bc_scene_deal_into& default_instance();
void Swap(packetl2c_bc_scene_deal_into* other);
// implements Message ----------------------------------------------
packetl2c_bc_scene_deal_into* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_bc_scene_deal_into& from);
void MergeFrom(const packetl2c_bc_scene_deal_into& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_scene_deal_into];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 cd = 2;
inline bool has_cd() const;
inline void clear_cd();
static const int kCdFieldNumber = 2;
inline ::google::protobuf::int32 cd() const;
inline void set_cd(::google::protobuf::int32 value);
// optional int32 number = 3;
inline bool has_number() const;
inline void clear_number();
static const int kNumberFieldNumber = 3;
inline ::google::protobuf::int32 number() const;
inline void set_number(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_bc_scene_deal_into)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_cd();
inline void clear_has_cd();
inline void set_has_number();
inline void clear_has_number();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 cd_;
::google::protobuf::int32 number_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_bc_scene_deal_into* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_bc_scene_result_into : public ::google::protobuf::Message {
public:
packetl2c_bc_scene_result_into();
virtual ~packetl2c_bc_scene_result_into();
packetl2c_bc_scene_result_into(const packetl2c_bc_scene_result_into& from);
inline packetl2c_bc_scene_result_into& operator=(const packetl2c_bc_scene_result_into& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_bc_scene_result_into& default_instance();
void Swap(packetl2c_bc_scene_result_into* other);
// implements Message ----------------------------------------------
packetl2c_bc_scene_result_into* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_bc_scene_result_into& from);
void MergeFrom(const packetl2c_bc_scene_result_into& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_scene_result_into];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 cd = 2;
inline bool has_cd() const;
inline void clear_cd();
static const int kCdFieldNumber = 2;
inline ::google::protobuf::int32 cd() const;
inline void set_cd(::google::protobuf::int32 value);
// optional .game_rouletteak_protocols.msg_result_info result_info = 3;
inline bool has_result_info() const;
inline void clear_result_info();
static const int kResultInfoFieldNumber = 3;
inline const ::game_rouletteak_protocols::msg_result_info& result_info() const;
inline ::game_rouletteak_protocols::msg_result_info* mutable_result_info();
inline ::game_rouletteak_protocols::msg_result_info* release_result_info();
inline void set_allocated_result_info(::game_rouletteak_protocols::msg_result_info* result_info);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_bc_scene_result_into)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_cd();
inline void clear_has_cd();
inline void set_has_result_info();
inline void clear_has_result_info();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 cd_;
::game_rouletteak_protocols::msg_result_info* result_info_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_bc_scene_result_into* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_ask_bet_info : public ::google::protobuf::Message {
public:
packetc2l_ask_bet_info();
virtual ~packetc2l_ask_bet_info();
packetc2l_ask_bet_info(const packetc2l_ask_bet_info& from);
inline packetc2l_ask_bet_info& operator=(const packetc2l_ask_bet_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_ask_bet_info& default_instance();
void Swap(packetc2l_ask_bet_info* other);
// implements Message ----------------------------------------------
packetc2l_ask_bet_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_ask_bet_info& from);
void MergeFrom(const packetc2l_ask_bet_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_ask_bet_info];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 bet_pos = 2;
inline bool has_bet_pos() const;
inline void clear_bet_pos();
static const int kBetPosFieldNumber = 2;
inline ::google::protobuf::int32 bet_pos() const;
inline void set_bet_pos(::google::protobuf::int32 value);
// optional int64 bet_gold = 3;
inline bool has_bet_gold() const;
inline void clear_bet_gold();
static const int kBetGoldFieldNumber = 3;
inline ::google::protobuf::int64 bet_gold() const;
inline void set_bet_gold(::google::protobuf::int64 value);
// optional int32 chip_index = 4;
inline bool has_chip_index() const;
inline void clear_chip_index();
static const int kChipIndexFieldNumber = 4;
inline ::google::protobuf::int32 chip_index() const;
inline void set_chip_index(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_ask_bet_info)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_bet_pos();
inline void clear_has_bet_pos();
inline void set_has_bet_gold();
inline void clear_has_bet_gold();
inline void set_has_chip_index();
inline void clear_has_chip_index();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 bet_pos_;
::google::protobuf::int64 bet_gold_;
::google::protobuf::int32 chip_index_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_ask_bet_info* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_bet_info_result : public ::google::protobuf::Message {
public:
packetl2c_bet_info_result();
virtual ~packetl2c_bet_info_result();
packetl2c_bet_info_result(const packetl2c_bet_info_result& from);
inline packetl2c_bet_info_result& operator=(const packetl2c_bet_info_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_bet_info_result& default_instance();
void Swap(packetl2c_bet_info_result* other);
// implements Message ----------------------------------------------
packetl2c_bet_info_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_bet_info_result& from);
void MergeFrom(const packetl2c_bet_info_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bet_info_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool has_result() const;
inline void clear_result();
static const int kResultFieldNumber = 2;
inline ::msg_type_def::e_msg_result_def result() const;
inline void set_result(::msg_type_def::e_msg_result_def value);
// optional .game_rouletteak_protocols.msg_bet_info bet_info = 3;
inline bool has_bet_info() const;
inline void clear_bet_info();
static const int kBetInfoFieldNumber = 3;
inline const ::game_rouletteak_protocols::msg_bet_info& bet_info() const;
inline ::game_rouletteak_protocols::msg_bet_info* mutable_bet_info();
inline ::game_rouletteak_protocols::msg_bet_info* release_bet_info();
inline void set_allocated_bet_info(::game_rouletteak_protocols::msg_bet_info* bet_info);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_bet_info_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_result();
inline void clear_has_result();
inline void set_has_bet_info();
inline void clear_has_bet_info();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
int result_;
::game_rouletteak_protocols::msg_bet_info* bet_info_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_bet_info_result* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_enter_player_info : public ::google::protobuf::Message {
public:
packetl2c_enter_player_info();
virtual ~packetl2c_enter_player_info();
packetl2c_enter_player_info(const packetl2c_enter_player_info& from);
inline packetl2c_enter_player_info& operator=(const packetl2c_enter_player_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_enter_player_info& default_instance();
void Swap(packetl2c_enter_player_info* other);
// implements Message ----------------------------------------------
packetl2c_enter_player_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_enter_player_info& from);
void MergeFrom(const packetl2c_enter_player_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_enter_player_info];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional .game_rouletteak_protocols.msg_player_info player_info = 2;
inline bool has_player_info() const;
inline void clear_player_info();
static const int kPlayerInfoFieldNumber = 2;
inline const ::game_rouletteak_protocols::msg_player_info& player_info() const;
inline ::game_rouletteak_protocols::msg_player_info* mutable_player_info();
inline ::game_rouletteak_protocols::msg_player_info* release_player_info();
inline void set_allocated_player_info(::game_rouletteak_protocols::msg_player_info* player_info);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_enter_player_info)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_player_info();
inline void clear_has_player_info();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::game_rouletteak_protocols::msg_player_info* player_info_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_enter_player_info* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_leave_player_info : public ::google::protobuf::Message {
public:
packetl2c_leave_player_info();
virtual ~packetl2c_leave_player_info();
packetl2c_leave_player_info(const packetl2c_leave_player_info& from);
inline packetl2c_leave_player_info& operator=(const packetl2c_leave_player_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_leave_player_info& default_instance();
void Swap(packetl2c_leave_player_info* other);
// implements Message ----------------------------------------------
packetl2c_leave_player_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_leave_player_info& from);
void MergeFrom(const packetl2c_leave_player_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_leave_player_info];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 player_id = 2;
inline bool has_player_id() const;
inline void clear_player_id();
static const int kPlayerIdFieldNumber = 2;
inline ::google::protobuf::int32 player_id() const;
inline void set_player_id(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_leave_player_info)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_player_id();
inline void clear_has_player_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 player_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_leave_player_info* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_bc_change_attr : public ::google::protobuf::Message {
public:
packetl2c_bc_change_attr();
virtual ~packetl2c_bc_change_attr();
packetl2c_bc_change_attr(const packetl2c_bc_change_attr& from);
inline packetl2c_bc_change_attr& operator=(const packetl2c_bc_change_attr& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_bc_change_attr& default_instance();
void Swap(packetl2c_bc_change_attr* other);
// implements Message ----------------------------------------------
packetl2c_bc_change_attr* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_bc_change_attr& from);
void MergeFrom(const packetl2c_bc_change_attr& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_change_attr];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 player_id = 2;
inline bool has_player_id() const;
inline void clear_player_id();
static const int kPlayerIdFieldNumber = 2;
inline ::google::protobuf::int32 player_id() const;
inline void set_player_id(::google::protobuf::int32 value);
// optional int32 item_type = 3;
inline bool has_item_type() const;
inline void clear_item_type();
static const int kItemTypeFieldNumber = 3;
inline ::google::protobuf::int32 item_type() const;
inline void set_item_type(::google::protobuf::int32 value);
// optional int64 change_value = 4;
inline bool has_change_value() const;
inline void clear_change_value();
static const int kChangeValueFieldNumber = 4;
inline ::google::protobuf::int64 change_value() const;
inline void set_change_value(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_bc_change_attr)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_player_id();
inline void clear_has_player_id();
inline void set_has_item_type();
inline void clear_has_item_type();
inline void set_has_change_value();
inline void clear_has_change_value();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 player_id_;
::google::protobuf::int64 change_value_;
::google::protobuf::int32 item_type_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_bc_change_attr* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_supply_chip : public ::google::protobuf::Message {
public:
packetc2l_supply_chip();
virtual ~packetc2l_supply_chip();
packetc2l_supply_chip(const packetc2l_supply_chip& from);
inline packetc2l_supply_chip& operator=(const packetc2l_supply_chip& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_supply_chip& default_instance();
void Swap(packetc2l_supply_chip* other);
// implements Message ----------------------------------------------
packetc2l_supply_chip* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_supply_chip& from);
void MergeFrom(const packetc2l_supply_chip& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_supply_chip];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_supply_chip)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_supply_chip* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_supply_chip_result : public ::google::protobuf::Message {
public:
packetl2c_supply_chip_result();
virtual ~packetl2c_supply_chip_result();
packetl2c_supply_chip_result(const packetl2c_supply_chip_result& from);
inline packetl2c_supply_chip_result& operator=(const packetl2c_supply_chip_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_supply_chip_result& default_instance();
void Swap(packetl2c_supply_chip_result* other);
// implements Message ----------------------------------------------
packetl2c_supply_chip_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_supply_chip_result& from);
void MergeFrom(const packetl2c_supply_chip_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_supply_chip_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool has_result() const;
inline void clear_result();
static const int kResultFieldNumber = 2;
inline ::msg_type_def::e_msg_result_def result() const;
inline void set_result(::msg_type_def::e_msg_result_def value);
// optional int64 gold = 6;
inline bool has_gold() const;
inline void clear_gold();
static const int kGoldFieldNumber = 6;
inline ::google::protobuf::int64 gold() const;
inline void set_gold(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_supply_chip_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_result();
inline void clear_has_result();
inline void set_has_gold();
inline void clear_has_gold();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
int result_;
::google::protobuf::int64 gold_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_supply_chip_result* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_check_state : public ::google::protobuf::Message {
public:
packetc2l_check_state();
virtual ~packetc2l_check_state();
packetc2l_check_state(const packetc2l_check_state& from);
inline packetc2l_check_state& operator=(const packetc2l_check_state& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_check_state& default_instance();
void Swap(packetc2l_check_state* other);
// implements Message ----------------------------------------------
packetc2l_check_state* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_check_state& from);
void MergeFrom(const packetc2l_check_state& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_check_state];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_check_state)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_check_state* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_check_state_result : public ::google::protobuf::Message {
public:
packetc2l_check_state_result();
virtual ~packetc2l_check_state_result();
packetc2l_check_state_result(const packetc2l_check_state_result& from);
inline packetc2l_check_state_result& operator=(const packetc2l_check_state_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_check_state_result& default_instance();
void Swap(packetc2l_check_state_result* other);
// implements Message ----------------------------------------------
packetc2l_check_state_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_check_state_result& from);
void MergeFrom(const packetc2l_check_state_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_check_state_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 room_id = 2;
inline bool has_room_id() const;
inline void clear_room_id();
static const int kRoomIdFieldNumber = 2;
inline ::google::protobuf::int32 room_id() const;
inline void set_room_id(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_check_state_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_room_id();
inline void clear_has_room_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 room_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_check_state_result* default_instance_;
};
// -------------------------------------------------------------------
class msg_room_history : public ::google::protobuf::Message {
public:
msg_room_history();
virtual ~msg_room_history();
msg_room_history(const msg_room_history& from);
inline msg_room_history& operator=(const msg_room_history& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const msg_room_history& default_instance();
void Swap(msg_room_history* other);
// implements Message ----------------------------------------------
msg_room_history* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const msg_room_history& from);
void MergeFrom(const msg_room_history& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int32 room_id = 1;
inline bool has_room_id() const;
inline void clear_room_id();
static const int kRoomIdFieldNumber = 1;
inline ::google::protobuf::int32 room_id() const;
inline void set_room_id(::google::protobuf::int32 value);
// optional int32 state = 2;
inline bool has_state() const;
inline void clear_state();
static const int kStateFieldNumber = 2;
inline ::google::protobuf::int32 state() const;
inline void set_state(::google::protobuf::int32 value);
// optional int32 cd = 3;
inline bool has_cd() const;
inline void clear_cd();
static const int kCdFieldNumber = 3;
inline ::google::protobuf::int32 cd() const;
inline void set_cd(::google::protobuf::int32 value);
// repeated int32 pos_list = 4;
inline int pos_list_size() const;
inline void clear_pos_list();
static const int kPosListFieldNumber = 4;
inline ::google::protobuf::int32 pos_list(int index) const;
inline void set_pos_list(int index, ::google::protobuf::int32 value);
inline void add_pos_list(::google::protobuf::int32 value);
inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
pos_list() const;
inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
mutable_pos_list();
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.msg_room_history)
private:
inline void set_has_room_id();
inline void clear_has_room_id();
inline void set_has_state();
inline void clear_has_state();
inline void set_has_cd();
inline void clear_has_cd();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::int32 room_id_;
::google::protobuf::int32 state_;
::google::protobuf::RepeatedField< ::google::protobuf::int32 > pos_list_;
::google::protobuf::int32 cd_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static msg_room_history* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_room_history_list : public ::google::protobuf::Message {
public:
packetc2l_room_history_list();
virtual ~packetc2l_room_history_list();
packetc2l_room_history_list(const packetc2l_room_history_list& from);
inline packetc2l_room_history_list& operator=(const packetc2l_room_history_list& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_room_history_list& default_instance();
void Swap(packetc2l_room_history_list* other);
// implements Message ----------------------------------------------
packetc2l_room_history_list* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_room_history_list& from);
void MergeFrom(const packetc2l_room_history_list& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_room_history_list];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_room_history_list)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_room_history_list* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_room_history_list_result : public ::google::protobuf::Message {
public:
packetl2c_room_history_list_result();
virtual ~packetl2c_room_history_list_result();
packetl2c_room_history_list_result(const packetl2c_room_history_list_result& from);
inline packetl2c_room_history_list_result& operator=(const packetl2c_room_history_list_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_room_history_list_result& default_instance();
void Swap(packetl2c_room_history_list_result* other);
// implements Message ----------------------------------------------
packetl2c_room_history_list_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_room_history_list_result& from);
void MergeFrom(const packetl2c_room_history_list_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_room_history_list_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// repeated .game_rouletteak_protocols.msg_room_history history_list = 2;
inline int history_list_size() const;
inline void clear_history_list();
static const int kHistoryListFieldNumber = 2;
inline const ::game_rouletteak_protocols::msg_room_history& history_list(int index) const;
inline ::game_rouletteak_protocols::msg_room_history* mutable_history_list(int index);
inline ::game_rouletteak_protocols::msg_room_history* add_history_list();
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_history >&
history_list() const;
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_history >*
mutable_history_list();
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_room_history_list_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_history > history_list_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_room_history_list_result* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_notify_history : public ::google::protobuf::Message {
public:
packetl2c_notify_history();
virtual ~packetl2c_notify_history();
packetl2c_notify_history(const packetl2c_notify_history& from);
inline packetl2c_notify_history& operator=(const packetl2c_notify_history& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_notify_history& default_instance();
void Swap(packetl2c_notify_history* other);
// implements Message ----------------------------------------------
packetl2c_notify_history* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_notify_history& from);
void MergeFrom(const packetl2c_notify_history& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_notify_history];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 room_id = 2;
inline bool has_room_id() const;
inline void clear_room_id();
static const int kRoomIdFieldNumber = 2;
inline ::google::protobuf::int32 room_id() const;
inline void set_room_id(::google::protobuf::int32 value);
// optional int32 state = 3;
inline bool has_state() const;
inline void clear_state();
static const int kStateFieldNumber = 3;
inline ::google::protobuf::int32 state() const;
inline void set_state(::google::protobuf::int32 value);
// optional int32 cd = 4;
inline bool has_cd() const;
inline void clear_cd();
static const int kCdFieldNumber = 4;
inline ::google::protobuf::int32 cd() const;
inline void set_cd(::google::protobuf::int32 value);
// optional int32 pos = 5;
inline bool has_pos() const;
inline void clear_pos();
static const int kPosFieldNumber = 5;
inline ::google::protobuf::int32 pos() const;
inline void set_pos(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_notify_history)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_room_id();
inline void clear_has_room_id();
inline void set_has_state();
inline void clear_has_state();
inline void set_has_cd();
inline void clear_has_cd();
inline void set_has_pos();
inline void clear_has_pos();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 room_id_;
::google::protobuf::int32 state_;
::google::protobuf::int32 cd_;
::google::protobuf::int32 pos_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(5 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_notify_history* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_continue_bet : public ::google::protobuf::Message {
public:
packetc2l_continue_bet();
virtual ~packetc2l_continue_bet();
packetc2l_continue_bet(const packetc2l_continue_bet& from);
inline packetc2l_continue_bet& operator=(const packetc2l_continue_bet& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_continue_bet& default_instance();
void Swap(packetc2l_continue_bet* other);
// implements Message ----------------------------------------------
packetc2l_continue_bet* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_continue_bet& from);
void MergeFrom(const packetc2l_continue_bet& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_continue_bet];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_continue_bet)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_continue_bet* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_continue_bet_result : public ::google::protobuf::Message {
public:
packetl2c_continue_bet_result();
virtual ~packetl2c_continue_bet_result();
packetl2c_continue_bet_result(const packetl2c_continue_bet_result& from);
inline packetl2c_continue_bet_result& operator=(const packetl2c_continue_bet_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_continue_bet_result& default_instance();
void Swap(packetl2c_continue_bet_result* other);
// implements Message ----------------------------------------------
packetl2c_continue_bet_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_continue_bet_result& from);
void MergeFrom(const packetl2c_continue_bet_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_continue_bet_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool has_result() const;
inline void clear_result();
static const int kResultFieldNumber = 2;
inline ::msg_type_def::e_msg_result_def result() const;
inline void set_result(::msg_type_def::e_msg_result_def value);
// optional int64 cur_gold = 3;
inline bool has_cur_gold() const;
inline void clear_cur_gold();
static const int kCurGoldFieldNumber = 3;
inline ::google::protobuf::int64 cur_gold() const;
inline void set_cur_gold(::google::protobuf::int64 value);
// repeated .game_rouletteak_protocols.msg_bet_info bet_list = 4;
inline int bet_list_size() const;
inline void clear_bet_list();
static const int kBetListFieldNumber = 4;
inline const ::game_rouletteak_protocols::msg_bet_info& bet_list(int index) const;
inline ::game_rouletteak_protocols::msg_bet_info* mutable_bet_list(int index);
inline ::game_rouletteak_protocols::msg_bet_info* add_bet_list();
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >&
bet_list() const;
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >*
mutable_bet_list();
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_continue_bet_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_result();
inline void clear_has_result();
inline void set_has_cur_gold();
inline void clear_has_cur_gold();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
int result_;
::google::protobuf::int64 cur_gold_;
::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info > bet_list_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_continue_bet_result* default_instance_;
};
// -------------------------------------------------------------------
class packetc2l_cancel_bet : public ::google::protobuf::Message {
public:
packetc2l_cancel_bet();
virtual ~packetc2l_cancel_bet();
packetc2l_cancel_bet(const packetc2l_cancel_bet& from);
inline packetc2l_cancel_bet& operator=(const packetc2l_cancel_bet& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetc2l_cancel_bet& default_instance();
void Swap(packetc2l_cancel_bet* other);
// implements Message ----------------------------------------------
packetc2l_cancel_bet* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetc2l_cancel_bet& from);
void MergeFrom(const packetc2l_cancel_bet& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_cancel_bet];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 bet_pos = 2 [default = -1];
inline bool has_bet_pos() const;
inline void clear_bet_pos();
static const int kBetPosFieldNumber = 2;
inline ::google::protobuf::int32 bet_pos() const;
inline void set_bet_pos(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetc2l_cancel_bet)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_bet_pos();
inline void clear_has_bet_pos();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 bet_pos_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(2 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetc2l_cancel_bet* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_cancel_bet_result : public ::google::protobuf::Message {
public:
packetl2c_cancel_bet_result();
virtual ~packetl2c_cancel_bet_result();
packetl2c_cancel_bet_result(const packetl2c_cancel_bet_result& from);
inline packetl2c_cancel_bet_result& operator=(const packetl2c_cancel_bet_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_cancel_bet_result& default_instance();
void Swap(packetl2c_cancel_bet_result* other);
// implements Message ----------------------------------------------
packetl2c_cancel_bet_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_cancel_bet_result& from);
void MergeFrom(const packetl2c_cancel_bet_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_cancel_bet_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool has_result() const;
inline void clear_result();
static const int kResultFieldNumber = 2;
inline ::msg_type_def::e_msg_result_def result() const;
inline void set_result(::msg_type_def::e_msg_result_def value);
// optional int32 player_id = 3;
inline bool has_player_id() const;
inline void clear_player_id();
static const int kPlayerIdFieldNumber = 3;
inline ::google::protobuf::int32 player_id() const;
inline void set_player_id(::google::protobuf::int32 value);
// optional int64 cur_gold = 4;
inline bool has_cur_gold() const;
inline void clear_cur_gold();
static const int kCurGoldFieldNumber = 4;
inline ::google::protobuf::int64 cur_gold() const;
inline void set_cur_gold(::google::protobuf::int64 value);
// optional int32 bet_pos = 5;
inline bool has_bet_pos() const;
inline void clear_bet_pos();
static const int kBetPosFieldNumber = 5;
inline ::google::protobuf::int32 bet_pos() const;
inline void set_bet_pos(::google::protobuf::int32 value);
// optional int64 change_gold = 6;
inline bool has_change_gold() const;
inline void clear_change_gold();
static const int kChangeGoldFieldNumber = 6;
inline ::google::protobuf::int64 change_gold() const;
inline void set_change_gold(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_cancel_bet_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_result();
inline void clear_has_result();
inline void set_has_player_id();
inline void clear_has_player_id();
inline void set_has_cur_gold();
inline void clear_has_cur_gold();
inline void set_has_bet_pos();
inline void clear_has_bet_pos();
inline void set_has_change_gold();
inline void clear_has_change_gold();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
int result_;
::google::protobuf::int64 cur_gold_;
::google::protobuf::int32 player_id_;
::google::protobuf::int32 bet_pos_;
::google::protobuf::int64 change_gold_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(6 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_cancel_bet_result* default_instance_;
};
// -------------------------------------------------------------------
class room_player : public ::google::protobuf::Message {
public:
room_player();
virtual ~room_player();
room_player(const room_player& from);
inline room_player& operator=(const room_player& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const room_player& default_instance();
void Swap(room_player* other);
// implements Message ----------------------------------------------
room_player* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const room_player& from);
void MergeFrom(const room_player& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int32 player_id = 1;
inline bool has_player_id() const;
inline void clear_player_id();
static const int kPlayerIdFieldNumber = 1;
inline ::google::protobuf::int32 player_id() const;
inline void set_player_id(::google::protobuf::int32 value);
// optional int64 gold = 2;
inline bool has_gold() const;
inline void clear_gold();
static const int kGoldFieldNumber = 2;
inline ::google::protobuf::int64 gold() const;
inline void set_gold(::google::protobuf::int64 value);
// optional int64 profit_today = 3;
inline bool has_profit_today() const;
inline void clear_profit_today();
static const int kProfitTodayFieldNumber = 3;
inline ::google::protobuf::int64 profit_today() const;
inline void set_profit_today(::google::protobuf::int64 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.room_player)
private:
inline void set_has_player_id();
inline void clear_has_player_id();
inline void set_has_gold();
inline void clear_has_gold();
inline void set_has_profit_today();
inline void clear_has_profit_today();
::google::protobuf::UnknownFieldSet _unknown_fields_;
::google::protobuf::int64 gold_;
::google::protobuf::int64 profit_today_;
::google::protobuf::int32 player_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static room_player* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_gm_get_room_info : public ::google::protobuf::Message {
public:
packetl2c_gm_get_room_info();
virtual ~packetl2c_gm_get_room_info();
packetl2c_gm_get_room_info(const packetl2c_gm_get_room_info& from);
inline packetl2c_gm_get_room_info& operator=(const packetl2c_gm_get_room_info& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_gm_get_room_info& default_instance();
void Swap(packetl2c_gm_get_room_info* other);
// implements Message ----------------------------------------------
packetl2c_gm_get_room_info* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_gm_get_room_info& from);
void MergeFrom(const packetl2c_gm_get_room_info& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_gm_get_room_info];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_gm_get_room_info)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(1 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_gm_get_room_info* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_gm_get_room_info_result : public ::google::protobuf::Message {
public:
packetl2c_gm_get_room_info_result();
virtual ~packetl2c_gm_get_room_info_result();
packetl2c_gm_get_room_info_result(const packetl2c_gm_get_room_info_result& from);
inline packetl2c_gm_get_room_info_result& operator=(const packetl2c_gm_get_room_info_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_gm_get_room_info_result& default_instance();
void Swap(packetl2c_gm_get_room_info_result* other);
// implements Message ----------------------------------------------
packetl2c_gm_get_room_info_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_gm_get_room_info_result& from);
void MergeFrom(const packetl2c_gm_get_room_info_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_gm_get_room_info_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 result = 2;
inline bool has_result() const;
inline void clear_result();
static const int kResultFieldNumber = 2;
inline ::google::protobuf::int32 result() const;
inline void set_result(::google::protobuf::int32 value);
// optional int32 bead_num = 3 [default = -1];
inline bool has_bead_num() const;
inline void clear_bead_num();
static const int kBeadNumFieldNumber = 3;
inline ::google::protobuf::int32 bead_num() const;
inline void set_bead_num(::google::protobuf::int32 value);
// repeated .game_rouletteak_protocols.room_player players = 4;
inline int players_size() const;
inline void clear_players();
static const int kPlayersFieldNumber = 4;
inline const ::game_rouletteak_protocols::room_player& players(int index) const;
inline ::game_rouletteak_protocols::room_player* mutable_players(int index);
inline ::game_rouletteak_protocols::room_player* add_players();
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::room_player >&
players() const;
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::room_player >*
mutable_players();
// optional int64 stock = 5;
inline bool has_stock() const;
inline void clear_stock();
static const int kStockFieldNumber = 5;
inline ::google::protobuf::int64 stock() const;
inline void set_stock(::google::protobuf::int64 value);
// optional int64 water = 6;
inline bool has_water() const;
inline void clear_water();
static const int kWaterFieldNumber = 6;
inline ::google::protobuf::int64 water() const;
inline void set_water(::google::protobuf::int64 value);
// optional int32 kill = 7;
inline bool has_kill() const;
inline void clear_kill();
static const int kKillFieldNumber = 7;
inline ::google::protobuf::int32 kill() const;
inline void set_kill(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_gm_get_room_info_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_result();
inline void clear_has_result();
inline void set_has_bead_num();
inline void clear_has_bead_num();
inline void set_has_stock();
inline void clear_has_stock();
inline void set_has_water();
inline void clear_has_water();
inline void set_has_kill();
inline void clear_has_kill();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 result_;
::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::room_player > players_;
::google::protobuf::int64 stock_;
::google::protobuf::int32 bead_num_;
::google::protobuf::int32 kill_;
::google::protobuf::int64 water_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(7 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_gm_get_room_info_result* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_gm_set_bead : public ::google::protobuf::Message {
public:
packetl2c_gm_set_bead();
virtual ~packetl2c_gm_set_bead();
packetl2c_gm_set_bead(const packetl2c_gm_set_bead& from);
inline packetl2c_gm_set_bead& operator=(const packetl2c_gm_set_bead& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_gm_set_bead& default_instance();
void Swap(packetl2c_gm_set_bead* other);
// implements Message ----------------------------------------------
packetl2c_gm_set_bead* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_gm_set_bead& from);
void MergeFrom(const packetl2c_gm_set_bead& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_gm_set_bead];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 bead_num = 2;
inline bool has_bead_num() const;
inline void clear_bead_num();
static const int kBeadNumFieldNumber = 2;
inline ::google::protobuf::int32 bead_num() const;
inline void set_bead_num(::google::protobuf::int32 value);
// optional int32 kill = 3;
inline bool has_kill() const;
inline void clear_kill();
static const int kKillFieldNumber = 3;
inline ::google::protobuf::int32 kill() const;
inline void set_kill(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_gm_set_bead)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_bead_num();
inline void clear_has_bead_num();
inline void set_has_kill();
inline void clear_has_kill();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 bead_num_;
::google::protobuf::int32 kill_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(3 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_gm_set_bead* default_instance_;
};
// -------------------------------------------------------------------
class packetl2c_gm_set_bead_result : public ::google::protobuf::Message {
public:
packetl2c_gm_set_bead_result();
virtual ~packetl2c_gm_set_bead_result();
packetl2c_gm_set_bead_result(const packetl2c_gm_set_bead_result& from);
inline packetl2c_gm_set_bead_result& operator=(const packetl2c_gm_set_bead_result& from) {
CopyFrom(from);
return *this;
}
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _unknown_fields_;
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return &_unknown_fields_;
}
static const ::google::protobuf::Descriptor* descriptor();
static const packetl2c_gm_set_bead_result& default_instance();
void Swap(packetl2c_gm_set_bead_result* other);
// implements Message ----------------------------------------------
packetl2c_gm_set_bead_result* New() const;
void CopyFrom(const ::google::protobuf::Message& from);
void MergeFrom(const ::google::protobuf::Message& from);
void CopyFrom(const packetl2c_gm_set_bead_result& from);
void MergeFrom(const packetl2c_gm_set_bead_result& from);
void Clear();
bool IsInitialized() const;
int ByteSize() const;
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input);
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const;
::google::protobuf::uint8* SerializeWithCachedSizesToArray(::google::protobuf::uint8* output) const;
int GetCachedSize() const { return _cached_size_; }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const;
public:
::google::protobuf::Metadata GetMetadata() const;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_gm_set_bead_result];
inline bool has_packet_id() const;
inline void clear_packet_id();
static const int kPacketIdFieldNumber = 1;
inline ::game_rouletteak_protocols::e_server_msg_type packet_id() const;
inline void set_packet_id(::game_rouletteak_protocols::e_server_msg_type value);
// optional int32 result = 2;
inline bool has_result() const;
inline void clear_result();
static const int kResultFieldNumber = 2;
inline ::google::protobuf::int32 result() const;
inline void set_result(::google::protobuf::int32 value);
// optional int32 bead_num = 3;
inline bool has_bead_num() const;
inline void clear_bead_num();
static const int kBeadNumFieldNumber = 3;
inline ::google::protobuf::int32 bead_num() const;
inline void set_bead_num(::google::protobuf::int32 value);
// optional int32 kill = 4;
inline bool has_kill() const;
inline void clear_kill();
static const int kKillFieldNumber = 4;
inline ::google::protobuf::int32 kill() const;
inline void set_kill(::google::protobuf::int32 value);
// @@protoc_insertion_point(class_scope:game_rouletteak_protocols.packetl2c_gm_set_bead_result)
private:
inline void set_has_packet_id();
inline void clear_has_packet_id();
inline void set_has_result();
inline void clear_has_result();
inline void set_has_bead_num();
inline void clear_has_bead_num();
inline void set_has_kill();
inline void clear_has_kill();
::google::protobuf::UnknownFieldSet _unknown_fields_;
int packet_id_;
::google::protobuf::int32 result_;
::google::protobuf::int32 bead_num_;
::google::protobuf::int32 kill_;
mutable int _cached_size_;
::google::protobuf::uint32 _has_bits_[(4 + 31) / 32];
friend void protobuf_AddDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_AssignDesc_game_5frouletteak_5fprotocol_2eproto();
friend void protobuf_ShutdownFile_game_5frouletteak_5fprotocol_2eproto();
void InitAsDefaultInstance();
static packetl2c_gm_set_bead_result* default_instance_;
};
// ===================================================================
// ===================================================================
// msg_room_info
// optional int32 roomid = 1;
inline bool msg_room_info::has_roomid() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void msg_room_info::set_has_roomid() {
_has_bits_[0] |= 0x00000001u;
}
inline void msg_room_info::clear_has_roomid() {
_has_bits_[0] &= ~0x00000001u;
}
inline void msg_room_info::clear_roomid() {
roomid_ = 0;
clear_has_roomid();
}
inline ::google::protobuf::int32 msg_room_info::roomid() const {
return roomid_;
}
inline void msg_room_info::set_roomid(::google::protobuf::int32 value) {
set_has_roomid();
roomid_ = value;
}
// -------------------------------------------------------------------
// packetc2l_get_room_info
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_room_info];
inline bool packetc2l_get_room_info::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_get_room_info::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_get_room_info::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_get_room_info::clear_packet_id() {
packet_id_ = 10014;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_get_room_info::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_get_room_info::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// -------------------------------------------------------------------
// packetl2c_get_room_info_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_room_info_result];
inline bool packetl2c_get_room_info_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_get_room_info_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_get_room_info_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_get_room_info_result::clear_packet_id() {
packet_id_ = 15058;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_get_room_info_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_get_room_info_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// repeated .game_rouletteak_protocols.msg_room_info room_list = 2;
inline int packetl2c_get_room_info_result::room_list_size() const {
return room_list_.size();
}
inline void packetl2c_get_room_info_result::clear_room_list() {
room_list_.Clear();
}
inline const ::game_rouletteak_protocols::msg_room_info& packetl2c_get_room_info_result::room_list(int index) const {
return room_list_.Get(index);
}
inline ::game_rouletteak_protocols::msg_room_info* packetl2c_get_room_info_result::mutable_room_list(int index) {
return room_list_.Mutable(index);
}
inline ::game_rouletteak_protocols::msg_room_info* packetl2c_get_room_info_result::add_room_list() {
return room_list_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_info >&
packetl2c_get_room_info_result::room_list() const {
return room_list_;
}
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_info >*
packetl2c_get_room_info_result::mutable_room_list() {
return &room_list_;
}
// -------------------------------------------------------------------
// packetc2l_enter_room
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_enter_room];
inline bool packetc2l_enter_room::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_enter_room::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_enter_room::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_enter_room::clear_packet_id() {
packet_id_ = 10015;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_enter_room::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_enter_room::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 roomid = 2;
inline bool packetc2l_enter_room::has_roomid() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetc2l_enter_room::set_has_roomid() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetc2l_enter_room::clear_has_roomid() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetc2l_enter_room::clear_roomid() {
roomid_ = 0;
clear_has_roomid();
}
inline ::google::protobuf::int32 packetc2l_enter_room::roomid() const {
return roomid_;
}
inline void packetc2l_enter_room::set_roomid(::google::protobuf::int32 value) {
set_has_roomid();
roomid_ = value;
}
// -------------------------------------------------------------------
// packetl2c_enter_room_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_enter_room_result];
inline bool packetl2c_enter_room_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_enter_room_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_enter_room_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_enter_room_result::clear_packet_id() {
packet_id_ = 15059;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_enter_room_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_enter_room_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool packetl2c_enter_room_result::has_result() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_enter_room_result::set_has_result() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_enter_room_result::clear_has_result() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_enter_room_result::clear_result() {
result_ = 2;
clear_has_result();
}
inline ::msg_type_def::e_msg_result_def packetl2c_enter_room_result::result() const {
return static_cast< ::msg_type_def::e_msg_result_def >(result_);
}
inline void packetl2c_enter_room_result::set_result(::msg_type_def::e_msg_result_def value) {
assert(::msg_type_def::e_msg_result_def_IsValid(value));
set_has_result();
result_ = value;
}
// optional .game_rouletteak_protocols.msg_scene_info scene_info = 3;
inline bool packetl2c_enter_room_result::has_scene_info() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_enter_room_result::set_has_scene_info() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_enter_room_result::clear_has_scene_info() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_enter_room_result::clear_scene_info() {
if (scene_info_ != NULL) scene_info_->::game_rouletteak_protocols::msg_scene_info::Clear();
clear_has_scene_info();
}
inline const ::game_rouletteak_protocols::msg_scene_info& packetl2c_enter_room_result::scene_info() const {
return scene_info_ != NULL ? *scene_info_ : *default_instance_->scene_info_;
}
inline ::game_rouletteak_protocols::msg_scene_info* packetl2c_enter_room_result::mutable_scene_info() {
set_has_scene_info();
if (scene_info_ == NULL) scene_info_ = new ::game_rouletteak_protocols::msg_scene_info;
return scene_info_;
}
inline ::game_rouletteak_protocols::msg_scene_info* packetl2c_enter_room_result::release_scene_info() {
clear_has_scene_info();
::game_rouletteak_protocols::msg_scene_info* temp = scene_info_;
scene_info_ = NULL;
return temp;
}
inline void packetl2c_enter_room_result::set_allocated_scene_info(::game_rouletteak_protocols::msg_scene_info* scene_info) {
delete scene_info_;
scene_info_ = scene_info;
if (scene_info) {
set_has_scene_info();
} else {
clear_has_scene_info();
}
}
// optional int64 self_gold = 4;
inline bool packetl2c_enter_room_result::has_self_gold() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void packetl2c_enter_room_result::set_has_self_gold() {
_has_bits_[0] |= 0x00000008u;
}
inline void packetl2c_enter_room_result::clear_has_self_gold() {
_has_bits_[0] &= ~0x00000008u;
}
inline void packetl2c_enter_room_result::clear_self_gold() {
self_gold_ = GOOGLE_LONGLONG(0);
clear_has_self_gold();
}
inline ::google::protobuf::int64 packetl2c_enter_room_result::self_gold() const {
return self_gold_;
}
inline void packetl2c_enter_room_result::set_self_gold(::google::protobuf::int64 value) {
set_has_self_gold();
self_gold_ = value;
}
// -------------------------------------------------------------------
// packetc2l_leave_room
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_leave_room];
inline bool packetc2l_leave_room::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_leave_room::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_leave_room::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_leave_room::clear_packet_id() {
packet_id_ = 10016;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_leave_room::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_leave_room::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// -------------------------------------------------------------------
// packetl2c_leave_room_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_leave_room_result];
inline bool packetl2c_leave_room_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_leave_room_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_leave_room_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_leave_room_result::clear_packet_id() {
packet_id_ = 15060;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_leave_room_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_leave_room_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_success];
inline bool packetl2c_leave_room_result::has_result() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_leave_room_result::set_has_result() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_leave_room_result::clear_has_result() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_leave_room_result::clear_result() {
result_ = 1;
clear_has_result();
}
inline ::msg_type_def::e_msg_result_def packetl2c_leave_room_result::result() const {
return static_cast< ::msg_type_def::e_msg_result_def >(result_);
}
inline void packetl2c_leave_room_result::set_result(::msg_type_def::e_msg_result_def value) {
assert(::msg_type_def::e_msg_result_def_IsValid(value));
set_has_result();
result_ = value;
}
// optional int64 player_gold = 3;
inline bool packetl2c_leave_room_result::has_player_gold() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_leave_room_result::set_has_player_gold() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_leave_room_result::clear_has_player_gold() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_leave_room_result::clear_player_gold() {
player_gold_ = GOOGLE_LONGLONG(0);
clear_has_player_gold();
}
inline ::google::protobuf::int64 packetl2c_leave_room_result::player_gold() const {
return player_gold_;
}
inline void packetl2c_leave_room_result::set_player_gold(::google::protobuf::int64 value) {
set_has_player_gold();
player_gold_ = value;
}
// -------------------------------------------------------------------
// msg_player_info
// optional int32 player_id = 1;
inline bool msg_player_info::has_player_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void msg_player_info::set_has_player_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void msg_player_info::clear_has_player_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void msg_player_info::clear_player_id() {
player_id_ = 0;
clear_has_player_id();
}
inline ::google::protobuf::int32 msg_player_info::player_id() const {
return player_id_;
}
inline void msg_player_info::set_player_id(::google::protobuf::int32 value) {
set_has_player_id();
player_id_ = value;
}
// optional string player_name = 2;
inline bool msg_player_info::has_player_name() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void msg_player_info::set_has_player_name() {
_has_bits_[0] |= 0x00000002u;
}
inline void msg_player_info::clear_has_player_name() {
_has_bits_[0] &= ~0x00000002u;
}
inline void msg_player_info::clear_player_name() {
if (player_name_ != &::google::protobuf::internal::kEmptyString) {
player_name_->clear();
}
clear_has_player_name();
}
inline const ::std::string& msg_player_info::player_name() const {
return *player_name_;
}
inline void msg_player_info::set_player_name(const ::std::string& value) {
set_has_player_name();
if (player_name_ == &::google::protobuf::internal::kEmptyString) {
player_name_ = new ::std::string;
}
player_name_->assign(value);
}
inline void msg_player_info::set_player_name(const char* value) {
set_has_player_name();
if (player_name_ == &::google::protobuf::internal::kEmptyString) {
player_name_ = new ::std::string;
}
player_name_->assign(value);
}
inline void msg_player_info::set_player_name(const char* value, size_t size) {
set_has_player_name();
if (player_name_ == &::google::protobuf::internal::kEmptyString) {
player_name_ = new ::std::string;
}
player_name_->assign(reinterpret_cast<const char*>(value), size);
}
inline ::std::string* msg_player_info::mutable_player_name() {
set_has_player_name();
if (player_name_ == &::google::protobuf::internal::kEmptyString) {
player_name_ = new ::std::string;
}
return player_name_;
}
inline ::std::string* msg_player_info::release_player_name() {
clear_has_player_name();
if (player_name_ == &::google::protobuf::internal::kEmptyString) {
return NULL;
} else {
::std::string* temp = player_name_;
player_name_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
return temp;
}
}
inline void msg_player_info::set_allocated_player_name(::std::string* player_name) {
if (player_name_ != &::google::protobuf::internal::kEmptyString) {
delete player_name_;
}
if (player_name) {
set_has_player_name();
player_name_ = player_name;
} else {
clear_has_player_name();
player_name_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
}
}
// optional int32 head_frame = 3;
inline bool msg_player_info::has_head_frame() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void msg_player_info::set_has_head_frame() {
_has_bits_[0] |= 0x00000004u;
}
inline void msg_player_info::clear_has_head_frame() {
_has_bits_[0] &= ~0x00000004u;
}
inline void msg_player_info::clear_head_frame() {
head_frame_ = 0;
clear_has_head_frame();
}
inline ::google::protobuf::int32 msg_player_info::head_frame() const {
return head_frame_;
}
inline void msg_player_info::set_head_frame(::google::protobuf::int32 value) {
set_has_head_frame();
head_frame_ = value;
}
// optional string head_custom = 4;
inline bool msg_player_info::has_head_custom() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void msg_player_info::set_has_head_custom() {
_has_bits_[0] |= 0x00000008u;
}
inline void msg_player_info::clear_has_head_custom() {
_has_bits_[0] &= ~0x00000008u;
}
inline void msg_player_info::clear_head_custom() {
if (head_custom_ != &::google::protobuf::internal::kEmptyString) {
head_custom_->clear();
}
clear_has_head_custom();
}
inline const ::std::string& msg_player_info::head_custom() const {
return *head_custom_;
}
inline void msg_player_info::set_head_custom(const ::std::string& value) {
set_has_head_custom();
if (head_custom_ == &::google::protobuf::internal::kEmptyString) {
head_custom_ = new ::std::string;
}
head_custom_->assign(value);
}
inline void msg_player_info::set_head_custom(const char* value) {
set_has_head_custom();
if (head_custom_ == &::google::protobuf::internal::kEmptyString) {
head_custom_ = new ::std::string;
}
head_custom_->assign(value);
}
inline void msg_player_info::set_head_custom(const char* value, size_t size) {
set_has_head_custom();
if (head_custom_ == &::google::protobuf::internal::kEmptyString) {
head_custom_ = new ::std::string;
}
head_custom_->assign(reinterpret_cast<const char*>(value), size);
}
inline ::std::string* msg_player_info::mutable_head_custom() {
set_has_head_custom();
if (head_custom_ == &::google::protobuf::internal::kEmptyString) {
head_custom_ = new ::std::string;
}
return head_custom_;
}
inline ::std::string* msg_player_info::release_head_custom() {
clear_has_head_custom();
if (head_custom_ == &::google::protobuf::internal::kEmptyString) {
return NULL;
} else {
::std::string* temp = head_custom_;
head_custom_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
return temp;
}
}
inline void msg_player_info::set_allocated_head_custom(::std::string* head_custom) {
if (head_custom_ != &::google::protobuf::internal::kEmptyString) {
delete head_custom_;
}
if (head_custom) {
set_has_head_custom();
head_custom_ = head_custom;
} else {
clear_has_head_custom();
head_custom_ = const_cast< ::std::string*>(&::google::protobuf::internal::kEmptyString);
}
}
// optional int64 player_gold = 5;
inline bool msg_player_info::has_player_gold() const {
return (_has_bits_[0] & 0x00000010u) != 0;
}
inline void msg_player_info::set_has_player_gold() {
_has_bits_[0] |= 0x00000010u;
}
inline void msg_player_info::clear_has_player_gold() {
_has_bits_[0] &= ~0x00000010u;
}
inline void msg_player_info::clear_player_gold() {
player_gold_ = GOOGLE_LONGLONG(0);
clear_has_player_gold();
}
inline ::google::protobuf::int64 msg_player_info::player_gold() const {
return player_gold_;
}
inline void msg_player_info::set_player_gold(::google::protobuf::int64 value) {
set_has_player_gold();
player_gold_ = value;
}
// optional int32 player_sex = 6;
inline bool msg_player_info::has_player_sex() const {
return (_has_bits_[0] & 0x00000020u) != 0;
}
inline void msg_player_info::set_has_player_sex() {
_has_bits_[0] |= 0x00000020u;
}
inline void msg_player_info::clear_has_player_sex() {
_has_bits_[0] &= ~0x00000020u;
}
inline void msg_player_info::clear_player_sex() {
player_sex_ = 0;
clear_has_player_sex();
}
inline ::google::protobuf::int32 msg_player_info::player_sex() const {
return player_sex_;
}
inline void msg_player_info::set_player_sex(::google::protobuf::int32 value) {
set_has_player_sex();
player_sex_ = value;
}
// optional int32 vip_level = 7;
inline bool msg_player_info::has_vip_level() const {
return (_has_bits_[0] & 0x00000040u) != 0;
}
inline void msg_player_info::set_has_vip_level() {
_has_bits_[0] |= 0x00000040u;
}
inline void msg_player_info::clear_has_vip_level() {
_has_bits_[0] &= ~0x00000040u;
}
inline void msg_player_info::clear_vip_level() {
vip_level_ = 0;
clear_has_vip_level();
}
inline ::google::protobuf::int32 msg_player_info::vip_level() const {
return vip_level_;
}
inline void msg_player_info::set_vip_level(::google::protobuf::int32 value) {
set_has_vip_level();
vip_level_ = value;
}
// optional int32 history_bet_gold = 8;
inline bool msg_player_info::has_history_bet_gold() const {
return (_has_bits_[0] & 0x00000080u) != 0;
}
inline void msg_player_info::set_has_history_bet_gold() {
_has_bits_[0] |= 0x00000080u;
}
inline void msg_player_info::clear_has_history_bet_gold() {
_has_bits_[0] &= ~0x00000080u;
}
inline void msg_player_info::clear_history_bet_gold() {
history_bet_gold_ = 0;
clear_has_history_bet_gold();
}
inline ::google::protobuf::int32 msg_player_info::history_bet_gold() const {
return history_bet_gold_;
}
inline void msg_player_info::set_history_bet_gold(::google::protobuf::int32 value) {
set_has_history_bet_gold();
history_bet_gold_ = value;
}
// optional int32 win_count = 9;
inline bool msg_player_info::has_win_count() const {
return (_has_bits_[0] & 0x00000100u) != 0;
}
inline void msg_player_info::set_has_win_count() {
_has_bits_[0] |= 0x00000100u;
}
inline void msg_player_info::clear_has_win_count() {
_has_bits_[0] &= ~0x00000100u;
}
inline void msg_player_info::clear_win_count() {
win_count_ = 0;
clear_has_win_count();
}
inline ::google::protobuf::int32 msg_player_info::win_count() const {
return win_count_;
}
inline void msg_player_info::set_win_count(::google::protobuf::int32 value) {
set_has_win_count();
win_count_ = value;
}
// -------------------------------------------------------------------
// msg_bet_info
// optional int32 player_id = 1;
inline bool msg_bet_info::has_player_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void msg_bet_info::set_has_player_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void msg_bet_info::clear_has_player_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void msg_bet_info::clear_player_id() {
player_id_ = 0;
clear_has_player_id();
}
inline ::google::protobuf::int32 msg_bet_info::player_id() const {
return player_id_;
}
inline void msg_bet_info::set_player_id(::google::protobuf::int32 value) {
set_has_player_id();
player_id_ = value;
}
// optional int32 bet_pos = 2;
inline bool msg_bet_info::has_bet_pos() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void msg_bet_info::set_has_bet_pos() {
_has_bits_[0] |= 0x00000002u;
}
inline void msg_bet_info::clear_has_bet_pos() {
_has_bits_[0] &= ~0x00000002u;
}
inline void msg_bet_info::clear_bet_pos() {
bet_pos_ = 0;
clear_has_bet_pos();
}
inline ::google::protobuf::int32 msg_bet_info::bet_pos() const {
return bet_pos_;
}
inline void msg_bet_info::set_bet_pos(::google::protobuf::int32 value) {
set_has_bet_pos();
bet_pos_ = value;
}
// optional int64 bet_gold = 3;
inline bool msg_bet_info::has_bet_gold() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void msg_bet_info::set_has_bet_gold() {
_has_bits_[0] |= 0x00000004u;
}
inline void msg_bet_info::clear_has_bet_gold() {
_has_bits_[0] &= ~0x00000004u;
}
inline void msg_bet_info::clear_bet_gold() {
bet_gold_ = GOOGLE_LONGLONG(0);
clear_has_bet_gold();
}
inline ::google::protobuf::int64 msg_bet_info::bet_gold() const {
return bet_gold_;
}
inline void msg_bet_info::set_bet_gold(::google::protobuf::int64 value) {
set_has_bet_gold();
bet_gold_ = value;
}
// optional int64 cur_gold = 4;
inline bool msg_bet_info::has_cur_gold() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void msg_bet_info::set_has_cur_gold() {
_has_bits_[0] |= 0x00000008u;
}
inline void msg_bet_info::clear_has_cur_gold() {
_has_bits_[0] &= ~0x00000008u;
}
inline void msg_bet_info::clear_cur_gold() {
cur_gold_ = GOOGLE_LONGLONG(0);
clear_has_cur_gold();
}
inline ::google::protobuf::int64 msg_bet_info::cur_gold() const {
return cur_gold_;
}
inline void msg_bet_info::set_cur_gold(::google::protobuf::int64 value) {
set_has_cur_gold();
cur_gold_ = value;
}
// optional int32 chip_index = 5;
inline bool msg_bet_info::has_chip_index() const {
return (_has_bits_[0] & 0x00000010u) != 0;
}
inline void msg_bet_info::set_has_chip_index() {
_has_bits_[0] |= 0x00000010u;
}
inline void msg_bet_info::clear_has_chip_index() {
_has_bits_[0] &= ~0x00000010u;
}
inline void msg_bet_info::clear_chip_index() {
chip_index_ = 0;
clear_has_chip_index();
}
inline ::google::protobuf::int32 msg_bet_info::chip_index() const {
return chip_index_;
}
inline void msg_bet_info::set_chip_index(::google::protobuf::int32 value) {
set_has_chip_index();
chip_index_ = value;
}
// -------------------------------------------------------------------
// msg_player_gold
// optional int32 player_id = 1;
inline bool msg_player_gold::has_player_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void msg_player_gold::set_has_player_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void msg_player_gold::clear_has_player_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void msg_player_gold::clear_player_id() {
player_id_ = 0;
clear_has_player_id();
}
inline ::google::protobuf::int32 msg_player_gold::player_id() const {
return player_id_;
}
inline void msg_player_gold::set_player_id(::google::protobuf::int32 value) {
set_has_player_id();
player_id_ = value;
}
// optional int64 win_gold = 2;
inline bool msg_player_gold::has_win_gold() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void msg_player_gold::set_has_win_gold() {
_has_bits_[0] |= 0x00000002u;
}
inline void msg_player_gold::clear_has_win_gold() {
_has_bits_[0] &= ~0x00000002u;
}
inline void msg_player_gold::clear_win_gold() {
win_gold_ = GOOGLE_LONGLONG(0);
clear_has_win_gold();
}
inline ::google::protobuf::int64 msg_player_gold::win_gold() const {
return win_gold_;
}
inline void msg_player_gold::set_win_gold(::google::protobuf::int64 value) {
set_has_win_gold();
win_gold_ = value;
}
// optional int64 cur_gold = 3;
inline bool msg_player_gold::has_cur_gold() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void msg_player_gold::set_has_cur_gold() {
_has_bits_[0] |= 0x00000004u;
}
inline void msg_player_gold::clear_has_cur_gold() {
_has_bits_[0] &= ~0x00000004u;
}
inline void msg_player_gold::clear_cur_gold() {
cur_gold_ = GOOGLE_LONGLONG(0);
clear_has_cur_gold();
}
inline ::google::protobuf::int64 msg_player_gold::cur_gold() const {
return cur_gold_;
}
inline void msg_player_gold::set_cur_gold(::google::protobuf::int64 value) {
set_has_cur_gold();
cur_gold_ = value;
}
// optional int32 history_bet_gold = 4;
inline bool msg_player_gold::has_history_bet_gold() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void msg_player_gold::set_has_history_bet_gold() {
_has_bits_[0] |= 0x00000008u;
}
inline void msg_player_gold::clear_has_history_bet_gold() {
_has_bits_[0] &= ~0x00000008u;
}
inline void msg_player_gold::clear_history_bet_gold() {
history_bet_gold_ = 0;
clear_has_history_bet_gold();
}
inline ::google::protobuf::int32 msg_player_gold::history_bet_gold() const {
return history_bet_gold_;
}
inline void msg_player_gold::set_history_bet_gold(::google::protobuf::int32 value) {
set_has_history_bet_gold();
history_bet_gold_ = value;
}
// optional int64 win_count = 5;
inline bool msg_player_gold::has_win_count() const {
return (_has_bits_[0] & 0x00000010u) != 0;
}
inline void msg_player_gold::set_has_win_count() {
_has_bits_[0] |= 0x00000010u;
}
inline void msg_player_gold::clear_has_win_count() {
_has_bits_[0] &= ~0x00000010u;
}
inline void msg_player_gold::clear_win_count() {
win_count_ = GOOGLE_LONGLONG(0);
clear_has_win_count();
}
inline ::google::protobuf::int64 msg_player_gold::win_count() const {
return win_count_;
}
inline void msg_player_gold::set_win_count(::google::protobuf::int64 value) {
set_has_win_count();
win_count_ = value;
}
// -------------------------------------------------------------------
// msg_result_info
// optional int32 number = 1;
inline bool msg_result_info::has_number() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void msg_result_info::set_has_number() {
_has_bits_[0] |= 0x00000001u;
}
inline void msg_result_info::clear_has_number() {
_has_bits_[0] &= ~0x00000001u;
}
inline void msg_result_info::clear_number() {
number_ = 0;
clear_has_number();
}
inline ::google::protobuf::int32 msg_result_info::number() const {
return number_;
}
inline void msg_result_info::set_number(::google::protobuf::int32 value) {
set_has_number();
number_ = value;
}
// repeated .game_rouletteak_protocols.msg_player_gold player_golds = 2;
inline int msg_result_info::player_golds_size() const {
return player_golds_.size();
}
inline void msg_result_info::clear_player_golds() {
player_golds_.Clear();
}
inline const ::game_rouletteak_protocols::msg_player_gold& msg_result_info::player_golds(int index) const {
return player_golds_.Get(index);
}
inline ::game_rouletteak_protocols::msg_player_gold* msg_result_info::mutable_player_golds(int index) {
return player_golds_.Mutable(index);
}
inline ::game_rouletteak_protocols::msg_player_gold* msg_result_info::add_player_golds() {
return player_golds_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_gold >&
msg_result_info::player_golds() const {
return player_golds_;
}
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_gold >*
msg_result_info::mutable_player_golds() {
return &player_golds_;
}
// -------------------------------------------------------------------
// msg_scene_info
// optional int32 roomid = 1;
inline bool msg_scene_info::has_roomid() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void msg_scene_info::set_has_roomid() {
_has_bits_[0] |= 0x00000001u;
}
inline void msg_scene_info::clear_has_roomid() {
_has_bits_[0] &= ~0x00000001u;
}
inline void msg_scene_info::clear_roomid() {
roomid_ = 0;
clear_has_roomid();
}
inline ::google::protobuf::int32 msg_scene_info::roomid() const {
return roomid_;
}
inline void msg_scene_info::set_roomid(::google::protobuf::int32 value) {
set_has_roomid();
roomid_ = value;
}
// optional int32 scene_state = 2;
inline bool msg_scene_info::has_scene_state() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void msg_scene_info::set_has_scene_state() {
_has_bits_[0] |= 0x00000002u;
}
inline void msg_scene_info::clear_has_scene_state() {
_has_bits_[0] &= ~0x00000002u;
}
inline void msg_scene_info::clear_scene_state() {
scene_state_ = 0;
clear_has_scene_state();
}
inline ::google::protobuf::int32 msg_scene_info::scene_state() const {
return scene_state_;
}
inline void msg_scene_info::set_scene_state(::google::protobuf::int32 value) {
set_has_scene_state();
scene_state_ = value;
}
// optional int32 cd = 3;
inline bool msg_scene_info::has_cd() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void msg_scene_info::set_has_cd() {
_has_bits_[0] |= 0x00000004u;
}
inline void msg_scene_info::clear_has_cd() {
_has_bits_[0] &= ~0x00000004u;
}
inline void msg_scene_info::clear_cd() {
cd_ = 0;
clear_has_cd();
}
inline ::google::protobuf::int32 msg_scene_info::cd() const {
return cd_;
}
inline void msg_scene_info::set_cd(::google::protobuf::int32 value) {
set_has_cd();
cd_ = value;
}
// repeated .game_rouletteak_protocols.msg_player_info player_list = 4;
inline int msg_scene_info::player_list_size() const {
return player_list_.size();
}
inline void msg_scene_info::clear_player_list() {
player_list_.Clear();
}
inline const ::game_rouletteak_protocols::msg_player_info& msg_scene_info::player_list(int index) const {
return player_list_.Get(index);
}
inline ::game_rouletteak_protocols::msg_player_info* msg_scene_info::mutable_player_list(int index) {
return player_list_.Mutable(index);
}
inline ::game_rouletteak_protocols::msg_player_info* msg_scene_info::add_player_list() {
return player_list_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_info >&
msg_scene_info::player_list() const {
return player_list_;
}
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_player_info >*
msg_scene_info::mutable_player_list() {
return &player_list_;
}
// repeated .game_rouletteak_protocols.msg_bet_info bet_infos = 5;
inline int msg_scene_info::bet_infos_size() const {
return bet_infos_.size();
}
inline void msg_scene_info::clear_bet_infos() {
bet_infos_.Clear();
}
inline const ::game_rouletteak_protocols::msg_bet_info& msg_scene_info::bet_infos(int index) const {
return bet_infos_.Get(index);
}
inline ::game_rouletteak_protocols::msg_bet_info* msg_scene_info::mutable_bet_infos(int index) {
return bet_infos_.Mutable(index);
}
inline ::game_rouletteak_protocols::msg_bet_info* msg_scene_info::add_bet_infos() {
return bet_infos_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >&
msg_scene_info::bet_infos() const {
return bet_infos_;
}
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >*
msg_scene_info::mutable_bet_infos() {
return &bet_infos_;
}
// optional .game_rouletteak_protocols.msg_result_info result_info = 6;
inline bool msg_scene_info::has_result_info() const {
return (_has_bits_[0] & 0x00000020u) != 0;
}
inline void msg_scene_info::set_has_result_info() {
_has_bits_[0] |= 0x00000020u;
}
inline void msg_scene_info::clear_has_result_info() {
_has_bits_[0] &= ~0x00000020u;
}
inline void msg_scene_info::clear_result_info() {
if (result_info_ != NULL) result_info_->::game_rouletteak_protocols::msg_result_info::Clear();
clear_has_result_info();
}
inline const ::game_rouletteak_protocols::msg_result_info& msg_scene_info::result_info() const {
return result_info_ != NULL ? *result_info_ : *default_instance_->result_info_;
}
inline ::game_rouletteak_protocols::msg_result_info* msg_scene_info::mutable_result_info() {
set_has_result_info();
if (result_info_ == NULL) result_info_ = new ::game_rouletteak_protocols::msg_result_info;
return result_info_;
}
inline ::game_rouletteak_protocols::msg_result_info* msg_scene_info::release_result_info() {
clear_has_result_info();
::game_rouletteak_protocols::msg_result_info* temp = result_info_;
result_info_ = NULL;
return temp;
}
inline void msg_scene_info::set_allocated_result_info(::game_rouletteak_protocols::msg_result_info* result_info) {
delete result_info_;
result_info_ = result_info;
if (result_info) {
set_has_result_info();
} else {
clear_has_result_info();
}
}
// repeated int32 pos_list = 7;
inline int msg_scene_info::pos_list_size() const {
return pos_list_.size();
}
inline void msg_scene_info::clear_pos_list() {
pos_list_.Clear();
}
inline ::google::protobuf::int32 msg_scene_info::pos_list(int index) const {
return pos_list_.Get(index);
}
inline void msg_scene_info::set_pos_list(int index, ::google::protobuf::int32 value) {
pos_list_.Set(index, value);
}
inline void msg_scene_info::add_pos_list(::google::protobuf::int32 value) {
pos_list_.Add(value);
}
inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
msg_scene_info::pos_list() const {
return pos_list_;
}
inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
msg_scene_info::mutable_pos_list() {
return &pos_list_;
}
// optional int64 bet_gold_room = 8;
inline bool msg_scene_info::has_bet_gold_room() const {
return (_has_bits_[0] & 0x00000080u) != 0;
}
inline void msg_scene_info::set_has_bet_gold_room() {
_has_bits_[0] |= 0x00000080u;
}
inline void msg_scene_info::clear_has_bet_gold_room() {
_has_bits_[0] &= ~0x00000080u;
}
inline void msg_scene_info::clear_bet_gold_room() {
bet_gold_room_ = GOOGLE_LONGLONG(0);
clear_has_bet_gold_room();
}
inline ::google::protobuf::int64 msg_scene_info::bet_gold_room() const {
return bet_gold_room_;
}
inline void msg_scene_info::set_bet_gold_room(::google::protobuf::int64 value) {
set_has_bet_gold_room();
bet_gold_room_ = value;
}
// optional int64 bet_gold_self = 9;
inline bool msg_scene_info::has_bet_gold_self() const {
return (_has_bits_[0] & 0x00000100u) != 0;
}
inline void msg_scene_info::set_has_bet_gold_self() {
_has_bits_[0] |= 0x00000100u;
}
inline void msg_scene_info::clear_has_bet_gold_self() {
_has_bits_[0] &= ~0x00000100u;
}
inline void msg_scene_info::clear_bet_gold_self() {
bet_gold_self_ = GOOGLE_LONGLONG(0);
clear_has_bet_gold_self();
}
inline ::google::protobuf::int64 msg_scene_info::bet_gold_self() const {
return bet_gold_self_;
}
inline void msg_scene_info::set_bet_gold_self(::google::protobuf::int64 value) {
set_has_bet_gold_self();
bet_gold_self_ = value;
}
// -------------------------------------------------------------------
// packetc2l_get_scene_info
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_get_scene_info];
inline bool packetc2l_get_scene_info::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_get_scene_info::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_get_scene_info::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_get_scene_info::clear_packet_id() {
packet_id_ = 10001;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_get_scene_info::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_get_scene_info::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// -------------------------------------------------------------------
// packetl2c_get_scene_info_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_get_scene_info_result];
inline bool packetl2c_get_scene_info_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_get_scene_info_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_get_scene_info_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_get_scene_info_result::clear_packet_id() {
packet_id_ = 15001;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_get_scene_info_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_get_scene_info_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional .game_rouletteak_protocols.msg_scene_info scene_info = 2;
inline bool packetl2c_get_scene_info_result::has_scene_info() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_get_scene_info_result::set_has_scene_info() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_get_scene_info_result::clear_has_scene_info() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_get_scene_info_result::clear_scene_info() {
if (scene_info_ != NULL) scene_info_->::game_rouletteak_protocols::msg_scene_info::Clear();
clear_has_scene_info();
}
inline const ::game_rouletteak_protocols::msg_scene_info& packetl2c_get_scene_info_result::scene_info() const {
return scene_info_ != NULL ? *scene_info_ : *default_instance_->scene_info_;
}
inline ::game_rouletteak_protocols::msg_scene_info* packetl2c_get_scene_info_result::mutable_scene_info() {
set_has_scene_info();
if (scene_info_ == NULL) scene_info_ = new ::game_rouletteak_protocols::msg_scene_info;
return scene_info_;
}
inline ::game_rouletteak_protocols::msg_scene_info* packetl2c_get_scene_info_result::release_scene_info() {
clear_has_scene_info();
::game_rouletteak_protocols::msg_scene_info* temp = scene_info_;
scene_info_ = NULL;
return temp;
}
inline void packetl2c_get_scene_info_result::set_allocated_scene_info(::game_rouletteak_protocols::msg_scene_info* scene_info) {
delete scene_info_;
scene_info_ = scene_info;
if (scene_info) {
set_has_scene_info();
} else {
clear_has_scene_info();
}
}
// optional int64 self_gold = 3;
inline bool packetl2c_get_scene_info_result::has_self_gold() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_get_scene_info_result::set_has_self_gold() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_get_scene_info_result::clear_has_self_gold() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_get_scene_info_result::clear_self_gold() {
self_gold_ = GOOGLE_LONGLONG(0);
clear_has_self_gold();
}
inline ::google::protobuf::int64 packetl2c_get_scene_info_result::self_gold() const {
return self_gold_;
}
inline void packetl2c_get_scene_info_result::set_self_gold(::google::protobuf::int64 value) {
set_has_self_gold();
self_gold_ = value;
}
// -------------------------------------------------------------------
// packetl2c_bc_scene_prepare_into
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_scene_prepare_into];
inline bool packetl2c_bc_scene_prepare_into::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_bc_scene_prepare_into::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_bc_scene_prepare_into::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_bc_scene_prepare_into::clear_packet_id() {
packet_id_ = 15050;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_bc_scene_prepare_into::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_bc_scene_prepare_into::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 cd = 2;
inline bool packetl2c_bc_scene_prepare_into::has_cd() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_bc_scene_prepare_into::set_has_cd() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_bc_scene_prepare_into::clear_has_cd() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_bc_scene_prepare_into::clear_cd() {
cd_ = 0;
clear_has_cd();
}
inline ::google::protobuf::int32 packetl2c_bc_scene_prepare_into::cd() const {
return cd_;
}
inline void packetl2c_bc_scene_prepare_into::set_cd(::google::protobuf::int32 value) {
set_has_cd();
cd_ = value;
}
// -------------------------------------------------------------------
// packetl2c_bc_scene_bet_into
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_scene_bet_into];
inline bool packetl2c_bc_scene_bet_into::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_bc_scene_bet_into::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_bc_scene_bet_into::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_bc_scene_bet_into::clear_packet_id() {
packet_id_ = 15051;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_bc_scene_bet_into::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_bc_scene_bet_into::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 cd = 2;
inline bool packetl2c_bc_scene_bet_into::has_cd() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_bc_scene_bet_into::set_has_cd() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_bc_scene_bet_into::clear_has_cd() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_bc_scene_bet_into::clear_cd() {
cd_ = 0;
clear_has_cd();
}
inline ::google::protobuf::int32 packetl2c_bc_scene_bet_into::cd() const {
return cd_;
}
inline void packetl2c_bc_scene_bet_into::set_cd(::google::protobuf::int32 value) {
set_has_cd();
cd_ = value;
}
// -------------------------------------------------------------------
// packetl2c_bc_sync_scene_bet_into
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_sync_scene_bet_into];
inline bool packetl2c_bc_sync_scene_bet_into::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_bc_sync_scene_bet_into::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_bc_sync_scene_bet_into::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_bc_sync_scene_bet_into::clear_packet_id() {
packet_id_ = 15052;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_bc_sync_scene_bet_into::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_bc_sync_scene_bet_into::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// repeated .game_rouletteak_protocols.msg_bet_info bet_list = 2;
inline int packetl2c_bc_sync_scene_bet_into::bet_list_size() const {
return bet_list_.size();
}
inline void packetl2c_bc_sync_scene_bet_into::clear_bet_list() {
bet_list_.Clear();
}
inline const ::game_rouletteak_protocols::msg_bet_info& packetl2c_bc_sync_scene_bet_into::bet_list(int index) const {
return bet_list_.Get(index);
}
inline ::game_rouletteak_protocols::msg_bet_info* packetl2c_bc_sync_scene_bet_into::mutable_bet_list(int index) {
return bet_list_.Mutable(index);
}
inline ::game_rouletteak_protocols::msg_bet_info* packetl2c_bc_sync_scene_bet_into::add_bet_list() {
return bet_list_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >&
packetl2c_bc_sync_scene_bet_into::bet_list() const {
return bet_list_;
}
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >*
packetl2c_bc_sync_scene_bet_into::mutable_bet_list() {
return &bet_list_;
}
// -------------------------------------------------------------------
// packetl2c_bc_scene_deal_into
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_scene_deal_into];
inline bool packetl2c_bc_scene_deal_into::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_bc_scene_deal_into::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_bc_scene_deal_into::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_bc_scene_deal_into::clear_packet_id() {
packet_id_ = 15053;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_bc_scene_deal_into::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_bc_scene_deal_into::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 cd = 2;
inline bool packetl2c_bc_scene_deal_into::has_cd() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_bc_scene_deal_into::set_has_cd() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_bc_scene_deal_into::clear_has_cd() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_bc_scene_deal_into::clear_cd() {
cd_ = 0;
clear_has_cd();
}
inline ::google::protobuf::int32 packetl2c_bc_scene_deal_into::cd() const {
return cd_;
}
inline void packetl2c_bc_scene_deal_into::set_cd(::google::protobuf::int32 value) {
set_has_cd();
cd_ = value;
}
// optional int32 number = 3;
inline bool packetl2c_bc_scene_deal_into::has_number() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_bc_scene_deal_into::set_has_number() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_bc_scene_deal_into::clear_has_number() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_bc_scene_deal_into::clear_number() {
number_ = 0;
clear_has_number();
}
inline ::google::protobuf::int32 packetl2c_bc_scene_deal_into::number() const {
return number_;
}
inline void packetl2c_bc_scene_deal_into::set_number(::google::protobuf::int32 value) {
set_has_number();
number_ = value;
}
// -------------------------------------------------------------------
// packetl2c_bc_scene_result_into
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_scene_result_into];
inline bool packetl2c_bc_scene_result_into::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_bc_scene_result_into::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_bc_scene_result_into::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_bc_scene_result_into::clear_packet_id() {
packet_id_ = 15054;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_bc_scene_result_into::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_bc_scene_result_into::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 cd = 2;
inline bool packetl2c_bc_scene_result_into::has_cd() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_bc_scene_result_into::set_has_cd() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_bc_scene_result_into::clear_has_cd() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_bc_scene_result_into::clear_cd() {
cd_ = 0;
clear_has_cd();
}
inline ::google::protobuf::int32 packetl2c_bc_scene_result_into::cd() const {
return cd_;
}
inline void packetl2c_bc_scene_result_into::set_cd(::google::protobuf::int32 value) {
set_has_cd();
cd_ = value;
}
// optional .game_rouletteak_protocols.msg_result_info result_info = 3;
inline bool packetl2c_bc_scene_result_into::has_result_info() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_bc_scene_result_into::set_has_result_info() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_bc_scene_result_into::clear_has_result_info() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_bc_scene_result_into::clear_result_info() {
if (result_info_ != NULL) result_info_->::game_rouletteak_protocols::msg_result_info::Clear();
clear_has_result_info();
}
inline const ::game_rouletteak_protocols::msg_result_info& packetl2c_bc_scene_result_into::result_info() const {
return result_info_ != NULL ? *result_info_ : *default_instance_->result_info_;
}
inline ::game_rouletteak_protocols::msg_result_info* packetl2c_bc_scene_result_into::mutable_result_info() {
set_has_result_info();
if (result_info_ == NULL) result_info_ = new ::game_rouletteak_protocols::msg_result_info;
return result_info_;
}
inline ::game_rouletteak_protocols::msg_result_info* packetl2c_bc_scene_result_into::release_result_info() {
clear_has_result_info();
::game_rouletteak_protocols::msg_result_info* temp = result_info_;
result_info_ = NULL;
return temp;
}
inline void packetl2c_bc_scene_result_into::set_allocated_result_info(::game_rouletteak_protocols::msg_result_info* result_info) {
delete result_info_;
result_info_ = result_info;
if (result_info) {
set_has_result_info();
} else {
clear_has_result_info();
}
}
// -------------------------------------------------------------------
// packetc2l_ask_bet_info
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_ask_bet_info];
inline bool packetc2l_ask_bet_info::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_ask_bet_info::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_ask_bet_info::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_ask_bet_info::clear_packet_id() {
packet_id_ = 10011;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_ask_bet_info::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_ask_bet_info::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 bet_pos = 2;
inline bool packetc2l_ask_bet_info::has_bet_pos() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetc2l_ask_bet_info::set_has_bet_pos() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetc2l_ask_bet_info::clear_has_bet_pos() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetc2l_ask_bet_info::clear_bet_pos() {
bet_pos_ = 0;
clear_has_bet_pos();
}
inline ::google::protobuf::int32 packetc2l_ask_bet_info::bet_pos() const {
return bet_pos_;
}
inline void packetc2l_ask_bet_info::set_bet_pos(::google::protobuf::int32 value) {
set_has_bet_pos();
bet_pos_ = value;
}
// optional int64 bet_gold = 3;
inline bool packetc2l_ask_bet_info::has_bet_gold() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetc2l_ask_bet_info::set_has_bet_gold() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetc2l_ask_bet_info::clear_has_bet_gold() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetc2l_ask_bet_info::clear_bet_gold() {
bet_gold_ = GOOGLE_LONGLONG(0);
clear_has_bet_gold();
}
inline ::google::protobuf::int64 packetc2l_ask_bet_info::bet_gold() const {
return bet_gold_;
}
inline void packetc2l_ask_bet_info::set_bet_gold(::google::protobuf::int64 value) {
set_has_bet_gold();
bet_gold_ = value;
}
// optional int32 chip_index = 4;
inline bool packetc2l_ask_bet_info::has_chip_index() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void packetc2l_ask_bet_info::set_has_chip_index() {
_has_bits_[0] |= 0x00000008u;
}
inline void packetc2l_ask_bet_info::clear_has_chip_index() {
_has_bits_[0] &= ~0x00000008u;
}
inline void packetc2l_ask_bet_info::clear_chip_index() {
chip_index_ = 0;
clear_has_chip_index();
}
inline ::google::protobuf::int32 packetc2l_ask_bet_info::chip_index() const {
return chip_index_;
}
inline void packetc2l_ask_bet_info::set_chip_index(::google::protobuf::int32 value) {
set_has_chip_index();
chip_index_ = value;
}
// -------------------------------------------------------------------
// packetl2c_bet_info_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bet_info_result];
inline bool packetl2c_bet_info_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_bet_info_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_bet_info_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_bet_info_result::clear_packet_id() {
packet_id_ = 15011;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_bet_info_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_bet_info_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool packetl2c_bet_info_result::has_result() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_bet_info_result::set_has_result() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_bet_info_result::clear_has_result() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_bet_info_result::clear_result() {
result_ = 2;
clear_has_result();
}
inline ::msg_type_def::e_msg_result_def packetl2c_bet_info_result::result() const {
return static_cast< ::msg_type_def::e_msg_result_def >(result_);
}
inline void packetl2c_bet_info_result::set_result(::msg_type_def::e_msg_result_def value) {
assert(::msg_type_def::e_msg_result_def_IsValid(value));
set_has_result();
result_ = value;
}
// optional .game_rouletteak_protocols.msg_bet_info bet_info = 3;
inline bool packetl2c_bet_info_result::has_bet_info() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_bet_info_result::set_has_bet_info() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_bet_info_result::clear_has_bet_info() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_bet_info_result::clear_bet_info() {
if (bet_info_ != NULL) bet_info_->::game_rouletteak_protocols::msg_bet_info::Clear();
clear_has_bet_info();
}
inline const ::game_rouletteak_protocols::msg_bet_info& packetl2c_bet_info_result::bet_info() const {
return bet_info_ != NULL ? *bet_info_ : *default_instance_->bet_info_;
}
inline ::game_rouletteak_protocols::msg_bet_info* packetl2c_bet_info_result::mutable_bet_info() {
set_has_bet_info();
if (bet_info_ == NULL) bet_info_ = new ::game_rouletteak_protocols::msg_bet_info;
return bet_info_;
}
inline ::game_rouletteak_protocols::msg_bet_info* packetl2c_bet_info_result::release_bet_info() {
clear_has_bet_info();
::game_rouletteak_protocols::msg_bet_info* temp = bet_info_;
bet_info_ = NULL;
return temp;
}
inline void packetl2c_bet_info_result::set_allocated_bet_info(::game_rouletteak_protocols::msg_bet_info* bet_info) {
delete bet_info_;
bet_info_ = bet_info;
if (bet_info) {
set_has_bet_info();
} else {
clear_has_bet_info();
}
}
// -------------------------------------------------------------------
// packetl2c_enter_player_info
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_enter_player_info];
inline bool packetl2c_enter_player_info::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_enter_player_info::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_enter_player_info::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_enter_player_info::clear_packet_id() {
packet_id_ = 15055;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_enter_player_info::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_enter_player_info::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional .game_rouletteak_protocols.msg_player_info player_info = 2;
inline bool packetl2c_enter_player_info::has_player_info() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_enter_player_info::set_has_player_info() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_enter_player_info::clear_has_player_info() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_enter_player_info::clear_player_info() {
if (player_info_ != NULL) player_info_->::game_rouletteak_protocols::msg_player_info::Clear();
clear_has_player_info();
}
inline const ::game_rouletteak_protocols::msg_player_info& packetl2c_enter_player_info::player_info() const {
return player_info_ != NULL ? *player_info_ : *default_instance_->player_info_;
}
inline ::game_rouletteak_protocols::msg_player_info* packetl2c_enter_player_info::mutable_player_info() {
set_has_player_info();
if (player_info_ == NULL) player_info_ = new ::game_rouletteak_protocols::msg_player_info;
return player_info_;
}
inline ::game_rouletteak_protocols::msg_player_info* packetl2c_enter_player_info::release_player_info() {
clear_has_player_info();
::game_rouletteak_protocols::msg_player_info* temp = player_info_;
player_info_ = NULL;
return temp;
}
inline void packetl2c_enter_player_info::set_allocated_player_info(::game_rouletteak_protocols::msg_player_info* player_info) {
delete player_info_;
player_info_ = player_info;
if (player_info) {
set_has_player_info();
} else {
clear_has_player_info();
}
}
// -------------------------------------------------------------------
// packetl2c_leave_player_info
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_leave_player_info];
inline bool packetl2c_leave_player_info::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_leave_player_info::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_leave_player_info::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_leave_player_info::clear_packet_id() {
packet_id_ = 15056;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_leave_player_info::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_leave_player_info::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 player_id = 2;
inline bool packetl2c_leave_player_info::has_player_id() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_leave_player_info::set_has_player_id() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_leave_player_info::clear_has_player_id() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_leave_player_info::clear_player_id() {
player_id_ = 0;
clear_has_player_id();
}
inline ::google::protobuf::int32 packetl2c_leave_player_info::player_id() const {
return player_id_;
}
inline void packetl2c_leave_player_info::set_player_id(::google::protobuf::int32 value) {
set_has_player_id();
player_id_ = value;
}
// -------------------------------------------------------------------
// packetl2c_bc_change_attr
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_bc_change_attr];
inline bool packetl2c_bc_change_attr::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_bc_change_attr::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_bc_change_attr::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_bc_change_attr::clear_packet_id() {
packet_id_ = 15066;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_bc_change_attr::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_bc_change_attr::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 player_id = 2;
inline bool packetl2c_bc_change_attr::has_player_id() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_bc_change_attr::set_has_player_id() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_bc_change_attr::clear_has_player_id() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_bc_change_attr::clear_player_id() {
player_id_ = 0;
clear_has_player_id();
}
inline ::google::protobuf::int32 packetl2c_bc_change_attr::player_id() const {
return player_id_;
}
inline void packetl2c_bc_change_attr::set_player_id(::google::protobuf::int32 value) {
set_has_player_id();
player_id_ = value;
}
// optional int32 item_type = 3;
inline bool packetl2c_bc_change_attr::has_item_type() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_bc_change_attr::set_has_item_type() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_bc_change_attr::clear_has_item_type() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_bc_change_attr::clear_item_type() {
item_type_ = 0;
clear_has_item_type();
}
inline ::google::protobuf::int32 packetl2c_bc_change_attr::item_type() const {
return item_type_;
}
inline void packetl2c_bc_change_attr::set_item_type(::google::protobuf::int32 value) {
set_has_item_type();
item_type_ = value;
}
// optional int64 change_value = 4;
inline bool packetl2c_bc_change_attr::has_change_value() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void packetl2c_bc_change_attr::set_has_change_value() {
_has_bits_[0] |= 0x00000008u;
}
inline void packetl2c_bc_change_attr::clear_has_change_value() {
_has_bits_[0] &= ~0x00000008u;
}
inline void packetl2c_bc_change_attr::clear_change_value() {
change_value_ = GOOGLE_LONGLONG(0);
clear_has_change_value();
}
inline ::google::protobuf::int64 packetl2c_bc_change_attr::change_value() const {
return change_value_;
}
inline void packetl2c_bc_change_attr::set_change_value(::google::protobuf::int64 value) {
set_has_change_value();
change_value_ = value;
}
// -------------------------------------------------------------------
// packetc2l_supply_chip
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_supply_chip];
inline bool packetc2l_supply_chip::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_supply_chip::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_supply_chip::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_supply_chip::clear_packet_id() {
packet_id_ = 10020;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_supply_chip::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_supply_chip::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// -------------------------------------------------------------------
// packetl2c_supply_chip_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_supply_chip_result];
inline bool packetl2c_supply_chip_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_supply_chip_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_supply_chip_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_supply_chip_result::clear_packet_id() {
packet_id_ = 15067;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_supply_chip_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_supply_chip_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool packetl2c_supply_chip_result::has_result() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_supply_chip_result::set_has_result() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_supply_chip_result::clear_has_result() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_supply_chip_result::clear_result() {
result_ = 2;
clear_has_result();
}
inline ::msg_type_def::e_msg_result_def packetl2c_supply_chip_result::result() const {
return static_cast< ::msg_type_def::e_msg_result_def >(result_);
}
inline void packetl2c_supply_chip_result::set_result(::msg_type_def::e_msg_result_def value) {
assert(::msg_type_def::e_msg_result_def_IsValid(value));
set_has_result();
result_ = value;
}
// optional int64 gold = 6;
inline bool packetl2c_supply_chip_result::has_gold() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_supply_chip_result::set_has_gold() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_supply_chip_result::clear_has_gold() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_supply_chip_result::clear_gold() {
gold_ = GOOGLE_LONGLONG(0);
clear_has_gold();
}
inline ::google::protobuf::int64 packetl2c_supply_chip_result::gold() const {
return gold_;
}
inline void packetl2c_supply_chip_result::set_gold(::google::protobuf::int64 value) {
set_has_gold();
gold_ = value;
}
// -------------------------------------------------------------------
// packetc2l_check_state
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_check_state];
inline bool packetc2l_check_state::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_check_state::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_check_state::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_check_state::clear_packet_id() {
packet_id_ = 10021;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_check_state::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_check_state::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// -------------------------------------------------------------------
// packetc2l_check_state_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_check_state_result];
inline bool packetc2l_check_state_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_check_state_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_check_state_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_check_state_result::clear_packet_id() {
packet_id_ = 15068;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_check_state_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_check_state_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 room_id = 2;
inline bool packetc2l_check_state_result::has_room_id() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetc2l_check_state_result::set_has_room_id() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetc2l_check_state_result::clear_has_room_id() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetc2l_check_state_result::clear_room_id() {
room_id_ = 0;
clear_has_room_id();
}
inline ::google::protobuf::int32 packetc2l_check_state_result::room_id() const {
return room_id_;
}
inline void packetc2l_check_state_result::set_room_id(::google::protobuf::int32 value) {
set_has_room_id();
room_id_ = value;
}
// -------------------------------------------------------------------
// msg_room_history
// optional int32 room_id = 1;
inline bool msg_room_history::has_room_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void msg_room_history::set_has_room_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void msg_room_history::clear_has_room_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void msg_room_history::clear_room_id() {
room_id_ = 0;
clear_has_room_id();
}
inline ::google::protobuf::int32 msg_room_history::room_id() const {
return room_id_;
}
inline void msg_room_history::set_room_id(::google::protobuf::int32 value) {
set_has_room_id();
room_id_ = value;
}
// optional int32 state = 2;
inline bool msg_room_history::has_state() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void msg_room_history::set_has_state() {
_has_bits_[0] |= 0x00000002u;
}
inline void msg_room_history::clear_has_state() {
_has_bits_[0] &= ~0x00000002u;
}
inline void msg_room_history::clear_state() {
state_ = 0;
clear_has_state();
}
inline ::google::protobuf::int32 msg_room_history::state() const {
return state_;
}
inline void msg_room_history::set_state(::google::protobuf::int32 value) {
set_has_state();
state_ = value;
}
// optional int32 cd = 3;
inline bool msg_room_history::has_cd() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void msg_room_history::set_has_cd() {
_has_bits_[0] |= 0x00000004u;
}
inline void msg_room_history::clear_has_cd() {
_has_bits_[0] &= ~0x00000004u;
}
inline void msg_room_history::clear_cd() {
cd_ = 0;
clear_has_cd();
}
inline ::google::protobuf::int32 msg_room_history::cd() const {
return cd_;
}
inline void msg_room_history::set_cd(::google::protobuf::int32 value) {
set_has_cd();
cd_ = value;
}
// repeated int32 pos_list = 4;
inline int msg_room_history::pos_list_size() const {
return pos_list_.size();
}
inline void msg_room_history::clear_pos_list() {
pos_list_.Clear();
}
inline ::google::protobuf::int32 msg_room_history::pos_list(int index) const {
return pos_list_.Get(index);
}
inline void msg_room_history::set_pos_list(int index, ::google::protobuf::int32 value) {
pos_list_.Set(index, value);
}
inline void msg_room_history::add_pos_list(::google::protobuf::int32 value) {
pos_list_.Add(value);
}
inline const ::google::protobuf::RepeatedField< ::google::protobuf::int32 >&
msg_room_history::pos_list() const {
return pos_list_;
}
inline ::google::protobuf::RepeatedField< ::google::protobuf::int32 >*
msg_room_history::mutable_pos_list() {
return &pos_list_;
}
// -------------------------------------------------------------------
// packetc2l_room_history_list
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_room_history_list];
inline bool packetc2l_room_history_list::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_room_history_list::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_room_history_list::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_room_history_list::clear_packet_id() {
packet_id_ = 10017;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_room_history_list::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_room_history_list::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// -------------------------------------------------------------------
// packetl2c_room_history_list_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_room_history_list_result];
inline bool packetl2c_room_history_list_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_room_history_list_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_room_history_list_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_room_history_list_result::clear_packet_id() {
packet_id_ = 15061;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_room_history_list_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_room_history_list_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// repeated .game_rouletteak_protocols.msg_room_history history_list = 2;
inline int packetl2c_room_history_list_result::history_list_size() const {
return history_list_.size();
}
inline void packetl2c_room_history_list_result::clear_history_list() {
history_list_.Clear();
}
inline const ::game_rouletteak_protocols::msg_room_history& packetl2c_room_history_list_result::history_list(int index) const {
return history_list_.Get(index);
}
inline ::game_rouletteak_protocols::msg_room_history* packetl2c_room_history_list_result::mutable_history_list(int index) {
return history_list_.Mutable(index);
}
inline ::game_rouletteak_protocols::msg_room_history* packetl2c_room_history_list_result::add_history_list() {
return history_list_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_history >&
packetl2c_room_history_list_result::history_list() const {
return history_list_;
}
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_room_history >*
packetl2c_room_history_list_result::mutable_history_list() {
return &history_list_;
}
// -------------------------------------------------------------------
// packetl2c_notify_history
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_notify_history];
inline bool packetl2c_notify_history::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_notify_history::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_notify_history::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_notify_history::clear_packet_id() {
packet_id_ = 15062;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_notify_history::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_notify_history::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 room_id = 2;
inline bool packetl2c_notify_history::has_room_id() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_notify_history::set_has_room_id() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_notify_history::clear_has_room_id() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_notify_history::clear_room_id() {
room_id_ = 0;
clear_has_room_id();
}
inline ::google::protobuf::int32 packetl2c_notify_history::room_id() const {
return room_id_;
}
inline void packetl2c_notify_history::set_room_id(::google::protobuf::int32 value) {
set_has_room_id();
room_id_ = value;
}
// optional int32 state = 3;
inline bool packetl2c_notify_history::has_state() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_notify_history::set_has_state() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_notify_history::clear_has_state() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_notify_history::clear_state() {
state_ = 0;
clear_has_state();
}
inline ::google::protobuf::int32 packetl2c_notify_history::state() const {
return state_;
}
inline void packetl2c_notify_history::set_state(::google::protobuf::int32 value) {
set_has_state();
state_ = value;
}
// optional int32 cd = 4;
inline bool packetl2c_notify_history::has_cd() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void packetl2c_notify_history::set_has_cd() {
_has_bits_[0] |= 0x00000008u;
}
inline void packetl2c_notify_history::clear_has_cd() {
_has_bits_[0] &= ~0x00000008u;
}
inline void packetl2c_notify_history::clear_cd() {
cd_ = 0;
clear_has_cd();
}
inline ::google::protobuf::int32 packetl2c_notify_history::cd() const {
return cd_;
}
inline void packetl2c_notify_history::set_cd(::google::protobuf::int32 value) {
set_has_cd();
cd_ = value;
}
// optional int32 pos = 5;
inline bool packetl2c_notify_history::has_pos() const {
return (_has_bits_[0] & 0x00000010u) != 0;
}
inline void packetl2c_notify_history::set_has_pos() {
_has_bits_[0] |= 0x00000010u;
}
inline void packetl2c_notify_history::clear_has_pos() {
_has_bits_[0] &= ~0x00000010u;
}
inline void packetl2c_notify_history::clear_pos() {
pos_ = 0;
clear_has_pos();
}
inline ::google::protobuf::int32 packetl2c_notify_history::pos() const {
return pos_;
}
inline void packetl2c_notify_history::set_pos(::google::protobuf::int32 value) {
set_has_pos();
pos_ = value;
}
// -------------------------------------------------------------------
// packetc2l_continue_bet
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_continue_bet];
inline bool packetc2l_continue_bet::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_continue_bet::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_continue_bet::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_continue_bet::clear_packet_id() {
packet_id_ = 10012;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_continue_bet::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_continue_bet::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// -------------------------------------------------------------------
// packetl2c_continue_bet_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_continue_bet_result];
inline bool packetl2c_continue_bet_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_continue_bet_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_continue_bet_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_continue_bet_result::clear_packet_id() {
packet_id_ = 15012;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_continue_bet_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_continue_bet_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool packetl2c_continue_bet_result::has_result() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_continue_bet_result::set_has_result() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_continue_bet_result::clear_has_result() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_continue_bet_result::clear_result() {
result_ = 2;
clear_has_result();
}
inline ::msg_type_def::e_msg_result_def packetl2c_continue_bet_result::result() const {
return static_cast< ::msg_type_def::e_msg_result_def >(result_);
}
inline void packetl2c_continue_bet_result::set_result(::msg_type_def::e_msg_result_def value) {
assert(::msg_type_def::e_msg_result_def_IsValid(value));
set_has_result();
result_ = value;
}
// optional int64 cur_gold = 3;
inline bool packetl2c_continue_bet_result::has_cur_gold() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_continue_bet_result::set_has_cur_gold() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_continue_bet_result::clear_has_cur_gold() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_continue_bet_result::clear_cur_gold() {
cur_gold_ = GOOGLE_LONGLONG(0);
clear_has_cur_gold();
}
inline ::google::protobuf::int64 packetl2c_continue_bet_result::cur_gold() const {
return cur_gold_;
}
inline void packetl2c_continue_bet_result::set_cur_gold(::google::protobuf::int64 value) {
set_has_cur_gold();
cur_gold_ = value;
}
// repeated .game_rouletteak_protocols.msg_bet_info bet_list = 4;
inline int packetl2c_continue_bet_result::bet_list_size() const {
return bet_list_.size();
}
inline void packetl2c_continue_bet_result::clear_bet_list() {
bet_list_.Clear();
}
inline const ::game_rouletteak_protocols::msg_bet_info& packetl2c_continue_bet_result::bet_list(int index) const {
return bet_list_.Get(index);
}
inline ::game_rouletteak_protocols::msg_bet_info* packetl2c_continue_bet_result::mutable_bet_list(int index) {
return bet_list_.Mutable(index);
}
inline ::game_rouletteak_protocols::msg_bet_info* packetl2c_continue_bet_result::add_bet_list() {
return bet_list_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >&
packetl2c_continue_bet_result::bet_list() const {
return bet_list_;
}
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::msg_bet_info >*
packetl2c_continue_bet_result::mutable_bet_list() {
return &bet_list_;
}
// -------------------------------------------------------------------
// packetc2l_cancel_bet
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_cancel_bet];
inline bool packetc2l_cancel_bet::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetc2l_cancel_bet::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetc2l_cancel_bet::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetc2l_cancel_bet::clear_packet_id() {
packet_id_ = 10022;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetc2l_cancel_bet::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetc2l_cancel_bet::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 bet_pos = 2 [default = -1];
inline bool packetc2l_cancel_bet::has_bet_pos() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetc2l_cancel_bet::set_has_bet_pos() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetc2l_cancel_bet::clear_has_bet_pos() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetc2l_cancel_bet::clear_bet_pos() {
bet_pos_ = -1;
clear_has_bet_pos();
}
inline ::google::protobuf::int32 packetc2l_cancel_bet::bet_pos() const {
return bet_pos_;
}
inline void packetc2l_cancel_bet::set_bet_pos(::google::protobuf::int32 value) {
set_has_bet_pos();
bet_pos_ = value;
}
// -------------------------------------------------------------------
// packetl2c_cancel_bet_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_cancel_bet_result];
inline bool packetl2c_cancel_bet_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_cancel_bet_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_cancel_bet_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_cancel_bet_result::clear_packet_id() {
packet_id_ = 15069;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_cancel_bet_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_cancel_bet_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional .msg_type_def.e_msg_result_def result = 2 [default = e_rmt_fail];
inline bool packetl2c_cancel_bet_result::has_result() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_cancel_bet_result::set_has_result() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_cancel_bet_result::clear_has_result() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_cancel_bet_result::clear_result() {
result_ = 2;
clear_has_result();
}
inline ::msg_type_def::e_msg_result_def packetl2c_cancel_bet_result::result() const {
return static_cast< ::msg_type_def::e_msg_result_def >(result_);
}
inline void packetl2c_cancel_bet_result::set_result(::msg_type_def::e_msg_result_def value) {
assert(::msg_type_def::e_msg_result_def_IsValid(value));
set_has_result();
result_ = value;
}
// optional int32 player_id = 3;
inline bool packetl2c_cancel_bet_result::has_player_id() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_cancel_bet_result::set_has_player_id() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_cancel_bet_result::clear_has_player_id() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_cancel_bet_result::clear_player_id() {
player_id_ = 0;
clear_has_player_id();
}
inline ::google::protobuf::int32 packetl2c_cancel_bet_result::player_id() const {
return player_id_;
}
inline void packetl2c_cancel_bet_result::set_player_id(::google::protobuf::int32 value) {
set_has_player_id();
player_id_ = value;
}
// optional int64 cur_gold = 4;
inline bool packetl2c_cancel_bet_result::has_cur_gold() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void packetl2c_cancel_bet_result::set_has_cur_gold() {
_has_bits_[0] |= 0x00000008u;
}
inline void packetl2c_cancel_bet_result::clear_has_cur_gold() {
_has_bits_[0] &= ~0x00000008u;
}
inline void packetl2c_cancel_bet_result::clear_cur_gold() {
cur_gold_ = GOOGLE_LONGLONG(0);
clear_has_cur_gold();
}
inline ::google::protobuf::int64 packetl2c_cancel_bet_result::cur_gold() const {
return cur_gold_;
}
inline void packetl2c_cancel_bet_result::set_cur_gold(::google::protobuf::int64 value) {
set_has_cur_gold();
cur_gold_ = value;
}
// optional int32 bet_pos = 5;
inline bool packetl2c_cancel_bet_result::has_bet_pos() const {
return (_has_bits_[0] & 0x00000010u) != 0;
}
inline void packetl2c_cancel_bet_result::set_has_bet_pos() {
_has_bits_[0] |= 0x00000010u;
}
inline void packetl2c_cancel_bet_result::clear_has_bet_pos() {
_has_bits_[0] &= ~0x00000010u;
}
inline void packetl2c_cancel_bet_result::clear_bet_pos() {
bet_pos_ = 0;
clear_has_bet_pos();
}
inline ::google::protobuf::int32 packetl2c_cancel_bet_result::bet_pos() const {
return bet_pos_;
}
inline void packetl2c_cancel_bet_result::set_bet_pos(::google::protobuf::int32 value) {
set_has_bet_pos();
bet_pos_ = value;
}
// optional int64 change_gold = 6;
inline bool packetl2c_cancel_bet_result::has_change_gold() const {
return (_has_bits_[0] & 0x00000020u) != 0;
}
inline void packetl2c_cancel_bet_result::set_has_change_gold() {
_has_bits_[0] |= 0x00000020u;
}
inline void packetl2c_cancel_bet_result::clear_has_change_gold() {
_has_bits_[0] &= ~0x00000020u;
}
inline void packetl2c_cancel_bet_result::clear_change_gold() {
change_gold_ = GOOGLE_LONGLONG(0);
clear_has_change_gold();
}
inline ::google::protobuf::int64 packetl2c_cancel_bet_result::change_gold() const {
return change_gold_;
}
inline void packetl2c_cancel_bet_result::set_change_gold(::google::protobuf::int64 value) {
set_has_change_gold();
change_gold_ = value;
}
// -------------------------------------------------------------------
// room_player
// optional int32 player_id = 1;
inline bool room_player::has_player_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void room_player::set_has_player_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void room_player::clear_has_player_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void room_player::clear_player_id() {
player_id_ = 0;
clear_has_player_id();
}
inline ::google::protobuf::int32 room_player::player_id() const {
return player_id_;
}
inline void room_player::set_player_id(::google::protobuf::int32 value) {
set_has_player_id();
player_id_ = value;
}
// optional int64 gold = 2;
inline bool room_player::has_gold() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void room_player::set_has_gold() {
_has_bits_[0] |= 0x00000002u;
}
inline void room_player::clear_has_gold() {
_has_bits_[0] &= ~0x00000002u;
}
inline void room_player::clear_gold() {
gold_ = GOOGLE_LONGLONG(0);
clear_has_gold();
}
inline ::google::protobuf::int64 room_player::gold() const {
return gold_;
}
inline void room_player::set_gold(::google::protobuf::int64 value) {
set_has_gold();
gold_ = value;
}
// optional int64 profit_today = 3;
inline bool room_player::has_profit_today() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void room_player::set_has_profit_today() {
_has_bits_[0] |= 0x00000004u;
}
inline void room_player::clear_has_profit_today() {
_has_bits_[0] &= ~0x00000004u;
}
inline void room_player::clear_profit_today() {
profit_today_ = GOOGLE_LONGLONG(0);
clear_has_profit_today();
}
inline ::google::protobuf::int64 room_player::profit_today() const {
return profit_today_;
}
inline void room_player::set_profit_today(::google::protobuf::int64 value) {
set_has_profit_today();
profit_today_ = value;
}
// -------------------------------------------------------------------
// packetl2c_gm_get_room_info
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_gm_get_room_info];
inline bool packetl2c_gm_get_room_info::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_gm_get_room_info::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_gm_get_room_info::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_gm_get_room_info::clear_packet_id() {
packet_id_ = 10101;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_gm_get_room_info::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_gm_get_room_info::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// -------------------------------------------------------------------
// packetl2c_gm_get_room_info_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_gm_get_room_info_result];
inline bool packetl2c_gm_get_room_info_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_gm_get_room_info_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_gm_get_room_info_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_gm_get_room_info_result::clear_packet_id() {
packet_id_ = 15101;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_gm_get_room_info_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_gm_get_room_info_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 result = 2;
inline bool packetl2c_gm_get_room_info_result::has_result() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_gm_get_room_info_result::set_has_result() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_gm_get_room_info_result::clear_has_result() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_gm_get_room_info_result::clear_result() {
result_ = 0;
clear_has_result();
}
inline ::google::protobuf::int32 packetl2c_gm_get_room_info_result::result() const {
return result_;
}
inline void packetl2c_gm_get_room_info_result::set_result(::google::protobuf::int32 value) {
set_has_result();
result_ = value;
}
// optional int32 bead_num = 3 [default = -1];
inline bool packetl2c_gm_get_room_info_result::has_bead_num() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_gm_get_room_info_result::set_has_bead_num() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_gm_get_room_info_result::clear_has_bead_num() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_gm_get_room_info_result::clear_bead_num() {
bead_num_ = -1;
clear_has_bead_num();
}
inline ::google::protobuf::int32 packetl2c_gm_get_room_info_result::bead_num() const {
return bead_num_;
}
inline void packetl2c_gm_get_room_info_result::set_bead_num(::google::protobuf::int32 value) {
set_has_bead_num();
bead_num_ = value;
}
// repeated .game_rouletteak_protocols.room_player players = 4;
inline int packetl2c_gm_get_room_info_result::players_size() const {
return players_.size();
}
inline void packetl2c_gm_get_room_info_result::clear_players() {
players_.Clear();
}
inline const ::game_rouletteak_protocols::room_player& packetl2c_gm_get_room_info_result::players(int index) const {
return players_.Get(index);
}
inline ::game_rouletteak_protocols::room_player* packetl2c_gm_get_room_info_result::mutable_players(int index) {
return players_.Mutable(index);
}
inline ::game_rouletteak_protocols::room_player* packetl2c_gm_get_room_info_result::add_players() {
return players_.Add();
}
inline const ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::room_player >&
packetl2c_gm_get_room_info_result::players() const {
return players_;
}
inline ::google::protobuf::RepeatedPtrField< ::game_rouletteak_protocols::room_player >*
packetl2c_gm_get_room_info_result::mutable_players() {
return &players_;
}
// optional int64 stock = 5;
inline bool packetl2c_gm_get_room_info_result::has_stock() const {
return (_has_bits_[0] & 0x00000010u) != 0;
}
inline void packetl2c_gm_get_room_info_result::set_has_stock() {
_has_bits_[0] |= 0x00000010u;
}
inline void packetl2c_gm_get_room_info_result::clear_has_stock() {
_has_bits_[0] &= ~0x00000010u;
}
inline void packetl2c_gm_get_room_info_result::clear_stock() {
stock_ = GOOGLE_LONGLONG(0);
clear_has_stock();
}
inline ::google::protobuf::int64 packetl2c_gm_get_room_info_result::stock() const {
return stock_;
}
inline void packetl2c_gm_get_room_info_result::set_stock(::google::protobuf::int64 value) {
set_has_stock();
stock_ = value;
}
// optional int64 water = 6;
inline bool packetl2c_gm_get_room_info_result::has_water() const {
return (_has_bits_[0] & 0x00000020u) != 0;
}
inline void packetl2c_gm_get_room_info_result::set_has_water() {
_has_bits_[0] |= 0x00000020u;
}
inline void packetl2c_gm_get_room_info_result::clear_has_water() {
_has_bits_[0] &= ~0x00000020u;
}
inline void packetl2c_gm_get_room_info_result::clear_water() {
water_ = GOOGLE_LONGLONG(0);
clear_has_water();
}
inline ::google::protobuf::int64 packetl2c_gm_get_room_info_result::water() const {
return water_;
}
inline void packetl2c_gm_get_room_info_result::set_water(::google::protobuf::int64 value) {
set_has_water();
water_ = value;
}
// optional int32 kill = 7;
inline bool packetl2c_gm_get_room_info_result::has_kill() const {
return (_has_bits_[0] & 0x00000040u) != 0;
}
inline void packetl2c_gm_get_room_info_result::set_has_kill() {
_has_bits_[0] |= 0x00000040u;
}
inline void packetl2c_gm_get_room_info_result::clear_has_kill() {
_has_bits_[0] &= ~0x00000040u;
}
inline void packetl2c_gm_get_room_info_result::clear_kill() {
kill_ = 0;
clear_has_kill();
}
inline ::google::protobuf::int32 packetl2c_gm_get_room_info_result::kill() const {
return kill_;
}
inline void packetl2c_gm_get_room_info_result::set_kill(::google::protobuf::int32 value) {
set_has_kill();
kill_ = value;
}
// -------------------------------------------------------------------
// packetl2c_gm_set_bead
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_c2l_gm_set_bead];
inline bool packetl2c_gm_set_bead::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_gm_set_bead::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_gm_set_bead::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_gm_set_bead::clear_packet_id() {
packet_id_ = 10102;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_gm_set_bead::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_gm_set_bead::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 bead_num = 2;
inline bool packetl2c_gm_set_bead::has_bead_num() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_gm_set_bead::set_has_bead_num() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_gm_set_bead::clear_has_bead_num() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_gm_set_bead::clear_bead_num() {
bead_num_ = 0;
clear_has_bead_num();
}
inline ::google::protobuf::int32 packetl2c_gm_set_bead::bead_num() const {
return bead_num_;
}
inline void packetl2c_gm_set_bead::set_bead_num(::google::protobuf::int32 value) {
set_has_bead_num();
bead_num_ = value;
}
// optional int32 kill = 3;
inline bool packetl2c_gm_set_bead::has_kill() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_gm_set_bead::set_has_kill() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_gm_set_bead::clear_has_kill() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_gm_set_bead::clear_kill() {
kill_ = 0;
clear_has_kill();
}
inline ::google::protobuf::int32 packetl2c_gm_set_bead::kill() const {
return kill_;
}
inline void packetl2c_gm_set_bead::set_kill(::google::protobuf::int32 value) {
set_has_kill();
kill_ = value;
}
// -------------------------------------------------------------------
// packetl2c_gm_set_bead_result
// optional .game_rouletteak_protocols.e_server_msg_type packet_id = 1 [default = e_mst_l2c_gm_set_bead_result];
inline bool packetl2c_gm_set_bead_result::has_packet_id() const {
return (_has_bits_[0] & 0x00000001u) != 0;
}
inline void packetl2c_gm_set_bead_result::set_has_packet_id() {
_has_bits_[0] |= 0x00000001u;
}
inline void packetl2c_gm_set_bead_result::clear_has_packet_id() {
_has_bits_[0] &= ~0x00000001u;
}
inline void packetl2c_gm_set_bead_result::clear_packet_id() {
packet_id_ = 15102;
clear_has_packet_id();
}
inline ::game_rouletteak_protocols::e_server_msg_type packetl2c_gm_set_bead_result::packet_id() const {
return static_cast< ::game_rouletteak_protocols::e_server_msg_type >(packet_id_);
}
inline void packetl2c_gm_set_bead_result::set_packet_id(::game_rouletteak_protocols::e_server_msg_type value) {
assert(::game_rouletteak_protocols::e_server_msg_type_IsValid(value));
set_has_packet_id();
packet_id_ = value;
}
// optional int32 result = 2;
inline bool packetl2c_gm_set_bead_result::has_result() const {
return (_has_bits_[0] & 0x00000002u) != 0;
}
inline void packetl2c_gm_set_bead_result::set_has_result() {
_has_bits_[0] |= 0x00000002u;
}
inline void packetl2c_gm_set_bead_result::clear_has_result() {
_has_bits_[0] &= ~0x00000002u;
}
inline void packetl2c_gm_set_bead_result::clear_result() {
result_ = 0;
clear_has_result();
}
inline ::google::protobuf::int32 packetl2c_gm_set_bead_result::result() const {
return result_;
}
inline void packetl2c_gm_set_bead_result::set_result(::google::protobuf::int32 value) {
set_has_result();
result_ = value;
}
// optional int32 bead_num = 3;
inline bool packetl2c_gm_set_bead_result::has_bead_num() const {
return (_has_bits_[0] & 0x00000004u) != 0;
}
inline void packetl2c_gm_set_bead_result::set_has_bead_num() {
_has_bits_[0] |= 0x00000004u;
}
inline void packetl2c_gm_set_bead_result::clear_has_bead_num() {
_has_bits_[0] &= ~0x00000004u;
}
inline void packetl2c_gm_set_bead_result::clear_bead_num() {
bead_num_ = 0;
clear_has_bead_num();
}
inline ::google::protobuf::int32 packetl2c_gm_set_bead_result::bead_num() const {
return bead_num_;
}
inline void packetl2c_gm_set_bead_result::set_bead_num(::google::protobuf::int32 value) {
set_has_bead_num();
bead_num_ = value;
}
// optional int32 kill = 4;
inline bool packetl2c_gm_set_bead_result::has_kill() const {
return (_has_bits_[0] & 0x00000008u) != 0;
}
inline void packetl2c_gm_set_bead_result::set_has_kill() {
_has_bits_[0] |= 0x00000008u;
}
inline void packetl2c_gm_set_bead_result::clear_has_kill() {
_has_bits_[0] &= ~0x00000008u;
}
inline void packetl2c_gm_set_bead_result::clear_kill() {
kill_ = 0;
clear_has_kill();
}
inline ::google::protobuf::int32 packetl2c_gm_set_bead_result::kill() const {
return kill_;
}
inline void packetl2c_gm_set_bead_result::set_kill(::google::protobuf::int32 value) {
set_has_kill();
kill_ = value;
}
// @@protoc_insertion_point(namespace_scope)
} // namespace game_rouletteak_protocols
#ifndef SWIG
namespace google {
namespace protobuf {
} // namespace google
} // namespace protobuf
#endif // SWIG
// @@protoc_insertion_point(global_scope)
#endif // PROTOBUF_game_5frouletteak_5fprotocol_2eproto__INCLUDED
| [
"czh850109@gmail.com"
] | czh850109@gmail.com |
cfa56a2e98a45c8cfc51a7e6ceaa708cceb52656 | 7a070a8b5f56e3a07f460823e2fd72ea9263b838 | /OOStubs/loesung-4/main.cc | 694de199ba88b75f5dbf541252751ed941cbd959 | [] | no_license | sellung/BSB | 0b81c3f3fa2a23323ba6ae88a2ea7506bd74b539 | 73848200155744a509e6ddf885a19ccba4d27637 | refs/heads/master | 2020-06-13T11:58:51.541405 | 2018-05-17T13:25:35 | 2018-05-17T13:25:35 | 75,384,152 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 996 | cc | /* $Id: main.cc 956 2008-10-19 22:24:23Z hsc $ */
/* Hier muesst ihr selbst Code vervollstaendigen */
//#include "machine/cgascr.h"
#include "thread/scheduler.h"
#include "user/appl.h"
#include "device/cgastr.h"
#include "thread/dispatch.h"
void* stack_1[1024];
void* stack_2[1024];
void* stack_3[1024];
Scheduler scheduler;
int main()
{
kout.clearscreen();
kout << "size of stack_1: " << sizeof(stack_1) << endl;
kout << "size of stack_2: " << sizeof(stack_2) << endl;
kout << "size of stack_3: " << sizeof(stack_3) << endl;
Application app1(&stack_1[1024]);
Application app2(&stack_2[1024]);
Application app3(&stack_3[1024]);
int col = 30;
int row = 8;
app1.setName("App1");
app1.color = 0x03;
app1.setCoord(col, row);
app2.setName("App2");
app2.color = 0x04;
app2.setCoord(col, row + 2);
app3.setName("App3");
app3.color = 0x05;
app3.setCoord(col, row + 4);
scheduler.ready(app1);
scheduler.ready(app2);
scheduler.ready(app3);
scheduler.schedule();
}
| [
"pernes06@web.de"
] | pernes06@web.de |
773b698c0eac2d883e2e4634e1da2b9e04620bf1 | b5a9d42f7ea5e26cd82b3be2b26c324d5da79ba1 | /tensorflow/lite/delegates/gpu/gl/compiler/preprocessor.cc | 08f02139e20c95c06af6fda1dc20e85b3717040b | [
"Apache-2.0"
] | permissive | uve/tensorflow | e48cb29f39ed24ee27e81afd1687960682e1fbef | e08079463bf43e5963acc41da1f57e95603f8080 | refs/heads/master | 2020-11-29T11:30:40.391232 | 2020-01-11T13:43:10 | 2020-01-11T13:43:10 | 230,088,347 | 0 | 0 | Apache-2.0 | 2019-12-25T10:49:15 | 2019-12-25T10:49:14 | null | UTF-8 | C++ | false | false | 3,329 | cc | /* Copyright 2019 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
#include "tensorflow/lite/delegates/gpu/gl/compiler/preprocessor.h"
#include "absl/strings/str_cat.h"
#include "tensorflow/lite/delegates/gpu/common/status.h"
namespace tflite {
namespace gpu {
namespace gl {
namespace {
// Given input string and a delimiter returns back a substring including
// delimiters. If there was only starting delimiter found, returns single char.
absl::string_view FindInlineBlock(absl::string_view s, char delimiter) {
size_t start = s.find(delimiter);
if (start != absl::string_view::npos) {
size_t end = s.find(delimiter, start + 1);
if (end != std::string::npos) {
return s.substr(start, end - start + 1);
}
// Special case to indicate that we didn't find the end.
return s.substr(start, 1);
}
return s.substr(s.size(), 0);
}
// For the given 's' and its substring 'subs' returns new substring of 's' that
// begins past 'subs'.
absl::string_view PastSubstr(absl::string_view s, absl::string_view subs) {
return s.substr(subs.data() + subs.size() - s.data());
}
} // namespace
Status TextPreprocessor::Rewrite(const std::string& input,
std::string* output) {
absl::string_view s = input;
std::string result;
while (true) {
absl::string_view inline_block = FindInlineBlock(s, inline_delimiter_);
result.append(s.data(), inline_block.data() - s.data());
if (inline_block.empty()) {
break;
}
if (inline_block.size() == 1) {
return NotFoundError("Unable to find end of inline block");
}
s = PastSubstr(s, inline_block);
bool processed = false;
for (auto& rewrite : inline_rewrites_) {
if (processed) {
break;
}
switch (rewrite->Rewrite(inline_block.substr(1, inline_block.size() - 2),
&result)) {
case RewriteStatus::NOT_RECOGNIZED:
// try another rewrite.
break;
case RewriteStatus::SUCCESS:
processed = true;
break;
case RewriteStatus::ERROR:
return InternalError(absl::StrCat("Error while rewriting '",
inline_block, "': ", result));
}
}
if (!processed) {
if (!keep_unknown_rewrites_) {
return NotFoundError(absl::StrCat("Didn't find inline rewrite for '",
inline_block, "'"));
}
absl::StrAppend(&result, inline_block);
}
}
*output = std::move(result);
return OkStatus();
}
} // namespace gl
} // namespace gpu
} // namespace tflite
| [
"v-grniki@microsoft.com"
] | v-grniki@microsoft.com |
15872913440070ade406b48429c14477ec0b9e08 | 130fc6ecaf5f9e57ea64b08b5b6c287ce432dc1f | /Unreal 4/CppCourse/Source/CppCourse/MyActorComponent.h | 50033977ac39982c1e987899136d9bcfb80f45c5 | [] | no_license | Xuzon/PortFolio | d1dc98f352e6d0459d7739c0a866c6f1a701542d | c2f1674bc15930ce0d45143e4d935e3e631fe9c2 | refs/heads/master | 2021-01-17T15:05:08.179998 | 2020-05-13T17:26:19 | 2020-05-13T17:26:19 | 53,209,189 | 5 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 680 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Components/ActorComponent.h"
#include "MyActorComponent.generated.h"
UCLASS( ClassGroup=(Custom), meta=(BlueprintSpawnableComponent) )
class CPPCOURSE_API UMyActorComponent : public UActorComponent
{
GENERATED_BODY()
public:
// Sets default values for this component's properties
UMyActorComponent();
protected:
// Called when the game starts
virtual void BeginPlay() override;
public:
// Called every frame
virtual void TickComponent(float DeltaTime, ELevelTick TickType, FActorComponentTickFunction* ThisTickFunction) override;
};
| [
"xuzon69@gmail.com"
] | xuzon69@gmail.com |
019b63005c76a290c7228d6a2bcc0986de38479a | 4d623ea7a585e58e4094c41dc212f60ba0aec5ea | /C_Strange_Birthday_Party.cpp | 083f4f5c654307f1c4c1a71b3cf2c1702f74a4dc | [] | no_license | akshit-04/CPP-Codes | 624aadeeec35bf608ef4e83f1020b7b54d992203 | ede0766d65df0328f7544cadb3f8ff0431147386 | refs/heads/main | 2023-08-30T13:28:14.748412 | 2021-11-19T12:04:43 | 2021-11-19T12:04:43 | 429,779,083 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 998 | cpp | #include<bits/stdc++.h>
using namespace std;
#define ll long long
#define For(i,n) for(int i=0;i<n;i++)
#define VI vector<int>
#define VL vector<ll>
#define fast ios_base::sync_with_stdio(0); cin.tie(0)
#define pb push_back
const int M = 200001;
char arr[1111][1111];
int a[101],r[10001],ans[10001];
int main()
{
fast;
int t;
cin>>t;
while(t--)
{
int n,m;
cin>>n>>m;
VI a(n);
For(i,n)
cin>>a[i];
int p[m];
For(i,m)
cin>>p[i];
sort(a.rbegin(),a.rend());
int j=0;
ll sum=0;
For(i,n)
{
if(j<a[i] && j<m)
{
if(p[j]<p[a[i]-1])
{
sum+=p[j];
j++;
}
else
sum+=p[a[i]-1];
}
else
{
sum+=p[a[i]-1];
}
}
cout<<sum<<"\n";
}
return 0;
} | [
"ishu.akshitgarg@gmail.com"
] | ishu.akshitgarg@gmail.com |
53f61ec6db32270a905886acfea7a0726f9468c5 | 82ed39c1ee2fc8c1be433cc0d2b3559365f5ae10 | /Queue/implementations/queue_with_stacks.cpp | 65f4650982ad03be137027fe613d93d5fba8426d | [] | no_license | sharopcha/cpp_data_structure | b532ada88a08b438a608a5e2a09d51dda52e5edf | 7883afa5184cca063fb4a6cd2ec8b0f8a8b64f1c | refs/heads/master | 2021-05-19T16:45:47.174059 | 2020-04-09T17:25:05 | 2020-04-09T17:25:05 | 252,034,070 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,503 | cpp | // Implementing queue using two stacks
// METHOD 1
/*
enQueue(q, x):
While stack1 is not empty, push everything from stack1 to stack2.
Push x to stack1 (assuming size of stacks is unlimited).
Push everything back to stack1.
Here time complexity will be O(n)
deQueue(q):
If stack1 is empty then error
Pop an item from stack1 and return it
*/
#include <bits/stdc++.h>
using namespace std;
/*
struct Queue
{
stack<int> s1, s2;
void enQueue(int x)
{
// move all elements from s1 to s2
while (!s1.empty())
{
s2.push(s1.top());
s1.pop();
}
// push item into s1
s1.push(x);
// push everything back to s1
while (!s2.empty())
{
s1.push(s2.top());
s2.pop();
}
}
// Dequeue an item from the queue
int deQueue()
{
// if first stack is empty
if (s1.empty())
{
cout << "Queue is empty" << endl;
exit(0);
}
// return top of s1
int x = s1.top();
s1.pop();
return x;
}
};
*/
// METHOD 2
/*
enQueue(q, x)
1) Push x to stack1 (assuming size of stacks is unlimited).
Here time complexity will be O(1)
deQueue(q)
1) If both stacks are empty then error.
2) If stack2 is empty
While stack1 is not empty, push everything from stack1 to stack2.
3) Pop the element from stack2 and return it.
Here time complexity will be O(n)
*/
struct Queue
{
stack<int> s1, s2;
// enqueue an item to the queue
void enQueue(int x)
{
// pushitem into the first stack
s1.push(x);
}
// dequeue an item from the queue
int deQueue()
{
// if both stacks are empty
if (s1.empty() && s2.empty())
{
cout << "Queue is empty" << endl;
exit(0);
}
// if s2 is empty, move elements from s1
if (s2.empty())
{
while (!s1.empty())
{
s2.push(s1.top());
s1.pop();
}
}
// return the top item from s2
int x = s2.top();
s2.pop();
return x;
}
};
// Driver
int main()
{
Queue queue;
queue.enQueue(1);
queue.enQueue(2);
queue.enQueue(3);
cout << queue.deQueue() << endl;
cout << queue.deQueue() << endl;
cout << queue.deQueue() << endl;
return 0;
} | [
"napster1202@gmail.com"
] | napster1202@gmail.com |
4cb414d94ba739268e8cff9e18b6a5c03c6b3024 | 63403a947660409f7926b3e84521709392ab53fa | /client/systems/vehicleStore/dialog/vehiclestoreDefines.hpp | b6c2e2a5d6e717848c63b754ace2163663e372c6 | [
"MIT"
] | permissive | Exonical/Vanguard_Wasteland.cup_chernarus_A3 | 7ab5a342ed21710744f61626aab0ee00c3cb6b34 | ee8f51807847f35c924bb8bf701e863387b603b8 | refs/heads/master | 2022-11-15T13:48:56.055079 | 2020-07-13T09:20:42 | 2020-07-13T09:20:42 | 279,253,009 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,157 | hpp | // ******************************************************************************************
// * This project is licensed under the GNU Affero GPL v3. Copyright © 2014 A3Wasteland.com *
// ******************************************************************************************
#define vehshop_DIALOG 5285
#define vehshop_veh_TEXT 5286
#define vehshop_veh_list 5287
#define vehshop_color_list 5288
#define vehshop_defparts_checkbox 5388
#define vehshop_part_list 5389
#define vehshop_money 5289
#define vehshop_button0 5290 // Land
#define vehshop_button1 5291 // Armored
#define vehshop_button2 5292 // Tanks
#define vehshop_button3 5293 // Helis
#define vehshop_button4 5294 // Planes
#define vehshop_button5 5295 // Boats
#define vehshop_button6 5296 // Submarines (unused)
#define vehshop_BuyButton_IDC 100
#define A3W_vehPaintIDD 5785
#define vehshop_list_textureChecked (toLower getText (configFile >> "RscCheckBox" >> "textureChecked"))
#define vehshop_list_textureUnchecked (toLower getText (configFile >> "RscCheckBox" >> "textureUnchecked"))
#define vehshop_list_checkboxTextures [vehshop_list_textureUnchecked, vehshop_list_textureChecked] | [
"brycemanglin@gmail.com"
] | brycemanglin@gmail.com |
21eec6b200a5865b54d41e92f462d848a6801b6a | 725104e743ab6c99e6dcfd4e749c069af4c9cdc9 | /LeetCodeTestSolutions/Ex048-Anagrams.cpp | 218dfcab6f9e77f32a2fd85f7c3efeaffa15a372 | [] | no_license | Msudyc/LeetCodePartCpp | 7306af23a1921e0c52fc29d12b32fad337a62174 | 0204709753fdaeee6fa222f70fa11ff9bd1f6e6d | refs/heads/master | 2021-01-15T10:25:49.839340 | 2014-11-09T04:05:49 | 2014-11-09T04:05:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | cpp | /*
Given an array of strings, return all groups of strings
that are anagrams.
Note: All inputs will be in lower-case.
class Solution {
public:
vector<string> anagrams(vector<string> &strs) {
}
};
*/
#include <sstream>
#include <map>
#include "Ex048-Anagrams.h"
namespace LeetCodeTestSolutions
{
vector<string> Ex48::anagrams(vector<string> &strs)
{
map<string, vector<string>> strmap;
for (string str : strs)
{
vector<int> counts(26, 0);
for (char c : str) counts[c - 'a']++;
stringstream ss;
for (int i = 0; i < 26; i++)
if (counts[i] > 0) ss << counts[i] << (char)('a' + i);
strmap[ss.str()].push_back(str);
}
vector<string> ans;
for (auto &sp : strmap)
if (sp.second.size() > 1)
ans.insert(ans.end(), sp.second.begin(), sp.second.end());
return ans;
}
} | [
"msudyc@gmail.com"
] | msudyc@gmail.com |
95151f3f7eb7d3bac015eea4d2a02faa81f8301f | 8298059fcfe4950537959ec30345088b4b5c82f4 | /BinaryTrees/level_order_traverse.cpp | a2ed3b65ec8f402e909289584362d2db6b93c97c | [] | no_license | sumit-sngpt/practice | fcb6177e2663eaa709caf32f6ffd4e61203c8fd8 | 957a548c830c21031ec387c8c04feea78d4a88ec | refs/heads/master | 2021-01-19T04:52:11.041712 | 2014-11-06T17:10:01 | 2014-11-06T17:10:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,020 | cpp | #include <iostream>
#include <queue>
using namespace std;
/*
Level order traversal - Breadth first traversal
*/
typedef struct node {
int data;
struct node* left;
struct node* right;
} Node;
Node* newNode(int num) {
Node* ptr = new Node;
ptr->data = num;
ptr->right = NULL;
ptr->left = NULL;
return ptr;
}
void lvltraversal(Node* root) {
queue<Node*> qu;
if(root==NULL) {
return;
} else {
qu.push(root);
}
while(!qu.empty()) {
Node* ptr = qu.front();
qu.pop();
cout << ptr->data << endl;
if (ptr->left)
qu.push(ptr->left);
if(ptr->right)
qu.push(ptr->right);
}
}
int main()
{
Node* root = newNode(1);
root->left = newNode(2);
root->right = newNode(3);
root->left->left = newNode(4);
root->left->right = newNode(5);
root->right->right = newNode(6);
root->right->right->left = newNode(7);
lvltraversal(root);
cout << endl;
return 0;
}
| [
"sumit_sngpt@yahoo.co.in"
] | sumit_sngpt@yahoo.co.in |
e710fbd37a49ed35ae3f4f936352e9cdea6eedcb | c92e5d70a188e02c251172d92d3f26b88b2cefd3 | /interface/RPCNtupleBaseFiller.h | 907a5bbaef8c236f87b3acfee49e51bac63b2f3c | [] | no_license | BrieucF/RPCNtupleMaker | 2d02b053468e41ef420e86f835c695f3b0e6e838 | b3ed4d53667f2a82abdd64946c6e5bdb061ca749 | refs/heads/master | 2021-02-14T22:13:10.337834 | 2020-04-22T13:21:03 | 2020-04-22T13:21:03 | 244,839,722 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,112 | h | #ifndef RPCNtupleBaseFiller_h
#define RPCNtupleBaseFiller_h
#include "RPCAnalysis/RPCNtupleMaker/interface/RPCNtupleConfig.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "TTree.h"
#include <memory>
#include <string>
class RPCNtupleBaseFiller
{
public :
/// Constructor
RPCNtupleBaseFiller(const std::shared_ptr<RPCNtupleConfig> config,
std::shared_ptr<TTree> tree, const std::string & label);
/// Destructor
virtual ~RPCNtupleBaseFiller();
/// Intialize function : setup tree branches etc ...
virtual void initialize() = 0;
/// Clear branches before event filling
virtual void clear() = 0;
/// Fill tree branches for a given event
virtual void fill(const edm::Event & ev) = 0;
protected :
/// Definition of default values for int variables
static constexpr int DEFAULT_INT_VAL = -999;
/// Definition of default values for positive int variables
static constexpr int DEFAULT_INT_VAL_POS = -1;
/// Definition of default values for float variables
static constexpr double DEFAULT_DOUBLE_VAL = -999.;
/// Definition of default values for positive float variables
static constexpr double DEFAULT_DOUBLE_VAL_POS = -1.;
/// Ponter to the configuration
std::shared_ptr<RPCNtupleConfig> m_config;
/// Pointer to the TTree
std::shared_ptr<TTree> m_tree;
/// The label at the beginning of each branch
std::string m_label;
/// Conditional getter :
/// checks whether a token is valid and if
/// retireving the data collection succeded
template<typename T> edm::Handle<T> conditionalGet(const edm::Event & ev,
const edm::EDGetTokenT<T> & token,
const std::string & collectionName)
{
edm::Handle<T> collection ;
if (!token.isUninitialized())
{
if (!ev.getByToken(token, collection))
edm::LogError("") << "[RPCNtuple]::conditionalGet: "
<< collectionName << " collection does not exist !!!";
}
return collection;
}
};
#endif
| [
"brieucfrancois@hotmail.com"
] | brieucfrancois@hotmail.com |
6f9666831cc1602c86712e40ff9b992e176e4f2d | b505568bafb956c2d6bdc46cb09c3dfa5b8625ca | /filemanager.cpp | 5e34a3b64da8ac8a2466b2a746e5dd35a88e3741 | [
"Apache-2.0"
] | permissive | 2991535823/car | f1d0c1f96a8d37808ed8b887a3a55c76d29afd7f | ff8539c2cc169d9372d9f5eccf5d2e76d2b9e5f4 | refs/heads/main | 2023-05-25T19:53:03.147624 | 2021-06-02T11:54:54 | 2021-06-02T11:54:54 | 315,836,771 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,760 | cpp | #include "filemanager.h"
FileManager::FileManager(QObject *parent) : QObject(parent)
{
Q_UNUSED(parent)
if(createFolder(iniFolder))
{
setMapPath(MapFolder);
}
MapFolder=getMapPath();
DebugManager::v(MapFolder+"是目前的地图文件夹");
DebugManager::v(createFolder(MapFolder)?"地图文件夹创建":"地图文件夹存在");
startTimer(500);
setmaplist();
seteditfile(_maplist.size()>0?_maplist.first():"no file.json");
DebugManager::d("file manager create");
}
FileManager::~FileManager()
{
//写入日志
if(!createFile("carlog",".log",MapFolder))
{
QJsonObject temp;
temp.insert("creat",QDateTime::currentDateTime().toString());
temp.insert("log",logarray);
writefile("carlog",temp,".log",MapFolder);
}
_file->close();
delete _file;
DebugManager::d("file manager destory");
}
bool FileManager::doCmd(FileManager::Cmd cmd)
{
Q_UNUSED(cmd)
bool code=false;
switch (cmd) {
case Start:
code=startCollection();
break;
case Stop:
code=stopCollection();
break;
case Done:
code=doneCollection();
break;
case Delete:
code=deleteFile(_editfile,MapFolder);
break;
default:
break;
}
return code;
}
bool FileManager::setParms(QString filename)
{
//创建一个地图
_filename=filename;
clearMapData();
QJsonObject jsonObject;
// QJsonDocument jsonDoc;
bool fileExit=_file->exists(MapFolder+_filename+Suffix);
QString filestatus=fileExit?"Edit":"Create";
QDateTime time=QDateTime::currentDateTime();
if(fileExit){
jsonObject = readFile(filename,Suffix,MapFolder);
}else {
createFile(filename,Suffix,MapFolder);
}
jsonObject.insert(filestatus,time.toString());
writefile(filename,jsonObject,Suffix,MapFolder);
return true;
}
void FileManager::createmap(QString filename)
{
_filename=filename;
createFile(filename,Suffix,MapFolder);
}
//开放给MapManager和Cmd的接口
QJsonObject FileManager::getmap(QString filename, bool orNotToMap)
{
if(filename.indexOf(".json")!=-1)
{
filename.remove(".json");
}
QJsonObject temp=readFile(filename,Suffix,MapFolder);//下面的代码可以优化
if(orNotToMap)//发送给地图
{
QJsonArray pointmsgs= temp["data"].toArray();
QJsonArray returnPointMsgs;
QJsonObject t;
for(auto &&i:pointmsgs)
{
QStringList info=i.toString().split(',');
t["x"]=info[10];
t["y"]=info[9];
returnPointMsgs.append(t);
}
temp["data"]=returnPointMsgs;
return temp;
}else {//发送给cmd
QJsonArray pointmsgs= temp["data"].toArray();
QJsonArray returnPointMsgs;
for(auto &&i:pointmsgs)
{
QStringList msgs=i.toString().split(',');
returnPointMsgs.append(msgs[9]+','+msgs[10]);
}
temp.insert("data",returnPointMsgs);
return temp;
}
}
//设置编辑的地图
void FileManager::seteditfile(QString name)
{
if(_editfile!=name)
{
_editfile=name;
}
DebugManager::i("_editfile:"+_editfile);
emit editfileUpdata(_editfile);
}
QString FileManager::geteditfile()
{
return _editfile;
}
//采集一个地图点数据
bool FileManager::startCollection()
{
if(DataCheck::checkFormat(gpsData))//正则校验
{
if(map.last()!=gpsData&&DataCheck::checkEffect(gpsData))//有效性校验
{
map.append(gpsData);
return true;
}else {
DebugManager::v("小车位置没有变动,或校验位出错,采集停止");
}
}else {
QMessageBox::information(NULL, "提示信息", "地图数据不符合要求,请检查串口!",
QMessageBox::Yes);
}
return false;
}
bool FileManager::stopCollection()
{
if(map.size()>0)
{
map.pop_back();
}
return true;
}
//完成采集。写入数据
bool FileManager::doneCollection()
{
QJsonObject jsonobj=readFile(_filename,Suffix,MapFolder);
jsonobj.insert("data",map);
writefile(_filename,jsonobj,Suffix,MapFolder);
clearMapData();
return true;
}
//写日志
void FileManager::writeLog(QString data)
{
logarray.append(data);
}
//删除文件
bool FileManager::deleteFile(QString filename, QString folder)
{
QFile *deletefile=new QFile(folder+filename);
return deletefile->remove();
}
//读文件内容
QJsonObject FileManager::readFile(QString filename, QString suffix, QString folder)
{
_file=new QFile(folder+filename+suffix);
QJsonParseError error;
QJsonObject tempobj;
QJsonDocument tempdoc;
if(_file->exists()){
if(_file->open(QIODevice::ReadOnly|QIODevice::Text))
{
tempdoc=QJsonDocument::fromJson(_file->readAll(),&error);
tempobj=tempdoc.object();
_file->close();
}
}
return tempobj;
}
//写文件
bool FileManager::writefile(QString filename, QJsonObject obj, QString suffix, QString folder)
{
_file->setFileName(folder+filename+suffix);
bool code=false;
if(_file->exists()){
if(_file->open(QIODevice::ReadWrite|QIODevice::Truncate))
{
QJsonDocument _doc(obj);
_file->write(_doc.toJson());
_file->close();
code=true;
}else {
code=false;
}
}
return code;
}
//得到地图List
QStringList FileManager::getmaplist()
{
return _maplist;
}
//得到采集的地图点
int FileManager::getNodeSize()
{
return _nodesize;
}
//创建文件
bool FileManager::createFile(QString filename, QString suffix, QString folder)
{
bool code=false;
_file=new QFile(folder+filename+suffix);
if(!_file->exists())
{
code=_file->open(QIODevice::ReadWrite|QIODevice::Text);
_file->close();
}
return code;
}
//创建文件
bool FileManager::createFolder(QString folder)
{
bool code=false;
if(!dir.exists(folder)){
code=dir.mkdir(folder);
}
return code;
}
//更新地图列表信息
void FileManager::setmaplist()
{
QDir dir(MapFolder);
QStringList list;
QFileInfoList infolist=dir.entryInfoList();
for(auto &&i:infolist){
if(i.suffix()=="json")
{
list.append(i.fileName());
}
}
if(_maplist!=list){
_maplist=list;
emit maplistupdata();
}
}
//设置该类的Serial的对象
void FileManager::setserial(SerialManager *manager)
{
_serial = manager;
static int limit=0;
if(limit==0)
{
connect(_serial,&SerialManager::readDone,this,&FileManager::readSerial);
}
limit++;
}
SerialManager *FileManager::getSerial()
{
return _serial;
}
//设置采集数据的个数
void FileManager::setNodeSize()
{
if(_nodesize!=map.size())
{
_nodesize=map.size();
emit nodeSizeUpdata();
}
}
//清楚地图数据
bool FileManager::clearMapData()
{
int length=map.size();
for(int i=0;i<length ;i++)
{
map.removeFirst();
}
return true;
}
//得到地图文件存放的路径
QString FileManager::getMapPath()
{
if(createFile("settings",".ini",iniFolder))
{
DebugManager::d("配置文件不存在,开始进行设置......");
setMapPath(MapFolder);
return MapFolder;
}else {
QJsonObject temp=readFile("settings",".ini",iniFolder);
QJsonValue path=temp["mapfolder"];
return path.toString();
}
}
//设置地图文件存放的路径
bool FileManager::setMapPath(QString MapPath)
{
//这两行代码重要
MapPath.remove("file:///");
MapPath.append('/');
if(createFile("settings",".ini",iniFolder))
{
//第一次创建
QJsonObject temp;
temp.insert("mapfolder",MapPath);
writefile("settings",temp,".ini",iniFolder);
emit mapPathUpdata();
}else {
QJsonObject temp=readFile("settings",".ini",iniFolder);
QJsonValue path=temp["mapfolder"];
if(path!=MapPath)
{
temp.insert("mapfolder",MapPath);
writefile("settings",temp,".ini",iniFolder);
emit mapPathUpdata();
QMessageBox::information(NULL,"提示","修改了地图存放路径,必须重启软件加载设置",QMessageBox::Yes);
}
}
return true;//不规范,需要改
}
//槽函数
void FileManager::readSerial(const QString msg)
{
gpsData=msg;
writeLog(msg);
}
//重写事件
void FileManager::timerEvent(QTimerEvent *event)
{
Q_UNUSED(event)
setmaplist();
setNodeSize();
}
| [
"2991535823@qq.com"
] | 2991535823@qq.com |
fb156fe502e90be48298a735257d20235e2276c4 | e1f11832ae94a27ac0eb9ae98c2166d79ca85a00 | /Nyctophobia/Gamestate.h | a18b9810d385ae36b5bbbbbf7ad473bc020c3fbe | [] | no_license | Focusrite/Nyctophobia | 4dc23570b784bae39af718ac9f3dbbfbb27b0e5f | a9e050b809de6cdc016d38edc6cceb449b051cd7 | refs/heads/master | 2021-01-22T06:53:38.053364 | 2012-05-24T19:37:18 | 2012-05-24T19:37:18 | 1,504,383 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 954 | h | #ifndef GAMESTATE_H
#define GAMESTATE_H
#include "Game.h"
class Game;
// Reference: http://gamedevgeek.com/tutorials/managing-game-states-in-c/
// Abstract baseclass
class GameState
{
public:
virtual void init(Game* game) = 0;
virtual void cleanup(void) = 0;
virtual void pause() = 0;
virtual void resume() = 0;
virtual void handleEvents(UINT msg, WPARAM wParam, LPARAM lParam) = 0;
virtual void update(double dt) = 0;
virtual void draw() = 0;
virtual void drawAlpha() = 0;
void setGame(Game* game) {mGame = game;};
void changeState(GameState* state) {
mGame->changeState(state);
}
void useCamera(bool b) {
mUsesCamera = b;
}
bool usesCamera() {
return mUsesCamera;
}
void drawToAlpha(bool b) {mDrawToAlpha = b;}
bool drawingToAlpha() {return mDrawToAlpha;}
protected:
GameState(){};
private:
bool mStateChanged;
Game *mGame;
bool mUsesCamera;
bool mDrawToAlpha;
}; // Class
extern GameState* gGameState;
#endif | [
"Focusrite@Focus.(none)"
] | Focusrite@Focus.(none) |
7eddf360954748494d8a52a2c324dc2fe18b39ed | 1b7bc0c8810624c79e1dade01bb63177058f1a28 | /Cpp14/Strou/templates_23-28/enable_if/enable_if_main.cpp | be02a05ad8a0133e07cf886ac45433ac34848273 | [
"MIT"
] | permissive | ernestyalumni/HrdwCCppCUDA | 61f123359fb585f279a32a19ba64dfdb60a4f66f | ad067fd4e605c230ea87bdc36cc38341e681a1e0 | refs/heads/master | 2023-07-21T06:00:51.881770 | 2023-04-26T13:58:57 | 2023-04-26T13:58:57 | 109,069,731 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,204 | cpp | //------------------------------------------------------------------------------
/// \file enable_if_main.cpp
/// \author Ernest Yeung
/// \email ernestyalumni@gmail.com
/// \brief Main driver function for enable_if.h.
/// \ref https://en.cppreference.com/w/cpp/types/enable_if
/// \details Demonstrate enable_if for template metaprogramming, and its
/// relationship to interfaces.
/// \copyright If you find this code useful, feel free to donate directly and
/// easily at this direct PayPal link:
///
/// https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=ernestsaveschristmas%2bpaypal%40gmail%2ecom&lc=US&item_name=ernestyalumni¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted
///
/// which won't go through a 3rd. party such as indiegogo, kickstarter, patreon.
/// Otherwise, I receive emails and messages on how all my (free) material on
/// physics, math, and engineering have helped students with their studies, and
/// I know what it's like to not have money as a student, but love physics (or
/// math, sciences, etc.), so I am committed to keeping all my material
/// open-source and free, whether or not sufficiently crowdfunded, under the
/// open-source MIT license: feel free to copy, edit, paste, make your own
/// versions, share, use as you wish.
/// Peace out, never give up! -EY
//------------------------------------------------------------------------------
/// COMPILATION TIPS:
/// g++ -std=c++14 enable_if_main.cpp -o enable_if_main
//------------------------------------------------------------------------------
#include "enable_if.h"
#include <string>
#include <type_traits> // std::aligned_union_t
using Templates::construct;
using Templates::destroy;
int main()
{
// \ref https://en.cppreference.com/w/cpp/types/enable_if
{
std::aligned_union_t<0, int, std::string> u;
construct(reinterpret_cast<int*>(&u));
destroy(reinterpret_cast<int*>(&u));
// Segmentation Fault
construct(reinterpret_cast<std::string*>(&u), "Hello");
destroy(reinterpret_cast<std::string*>(&u));
// A<int> a1; // OK, matches the primary template
// A<double> a2; // OK, matches the partial specialization
}
}
| [
"ernestyalumni@gmail.com"
] | ernestyalumni@gmail.com |
44f4e53bea12aa2464ed138cc0afe7d6d4511db0 | 87f1abe25c14be3d109cf8f5d1a4c7544347f4a6 | /include/ForegroundSystemLauncher.h | 4a0dccf1c60263c00a4737cd975743375b4cfbe7 | [
"Apache-2.0"
] | permissive | claremacrae/cppp2019 | 36d0cd8d6d1bf46a38d9775e581e3c5de44b2548 | ab6826322b9295ed43208b576e1bbf736bada1dc | refs/heads/master | 2020-06-03T13:55:36.956763 | 2019-09-03T14:04:14 | 2019-09-03T14:04:14 | 191,594,236 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,243 | h | #ifndef CPPP2019_FOREGROUNDSYSTEMLAUNCHER_H
#define CPPP2019_FOREGROUNDSYSTEMLAUNCHER_H
#include "ApprovalTests.hpp"
// Based on SystemLauncher, and differs in that it runs the command in
// the foreground instead of the background, so that any text output is
// interleaved in with the output from the test framework.
class ForegroundSystemLauncher : public CommandLauncher
{
public:
bool launch(std::vector<std::string> argv) override
{
SystemLauncher temp_launcher;
if (!temp_launcher.exists(argv.front()))
{
return false;
}
// Surround each of the arguments by double-quotes:
const std::string command = std::accumulate(
argv.begin(), argv.end(), std::string(""),
[](std::string a, std::string b) {return a + " " + "\"" + b + "\""; });
// See https://stackoverflow.com/a/9965141/104370 for why the Windows string is so complex:
const std::string launch = SystemUtils::isWindowsOs() ?
(std::string("cmd /S /C ") + "\"" + command + "\"") :
(command);
system(launch.c_str());
return true;
}
};
#endif //CPPP2019_FOREGROUNDSYSTEMLAUNCHER_H
| [
"github@cfmacrae.fastmail.co.uk"
] | github@cfmacrae.fastmail.co.uk |
6074bb93e8748025a1be1130bdd750909563be55 | 4a2c5dc402424bb12b02e667b4f5dbc1add90307 | /src/Helper/BitOperation.hpp | b27679ae8a10f18cbd01d6843b1464b838fedde5 | [] | no_license | knshnb/competitive_library | 75ff92101fc617f8e55090e77d42f5838863d01a | 54c93ca8056580fc73f83168353bb1298562ded1 | refs/heads/master | 2021-06-04T15:43:40.397585 | 2021-05-07T16:29:46 | 2021-05-07T16:29:46 | 150,403,917 | 6 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 105 | hpp |
// Sの部分集合の列挙
for (int T = S;; T = (T - 1) & S) {
// 操作
if (T == 0) break;
}
| [
"abe.kenshin@gmail.com"
] | abe.kenshin@gmail.com |
404c3f64f7ad8a80e3e6ccdd7dc0eb60e2f46c45 | b1b0c55e741e4e9e5dc4a4f8d0b3fd050f477098 | /gameSource/objectBank.cpp | efc48affc83fed3db29edf4645b9d68ba44b998d | [
"LicenseRef-scancode-public-domain"
] | permissive | kenikamu/OneLife | e558323f501b279aa20281fbcbf5935b35ef71fd | 15a3a2437fab4ef22b4c2a3a006d18785bebddfa | refs/heads/master | 2020-03-14T10:31:24.255069 | 2018-04-28T19:20:05 | 2018-04-28T19:20:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 135,151 | cpp |
#include "objectBank.h"
#include "minorGems/util/StringTree.h"
#include "minorGems/util/SimpleVector.h"
#include "minorGems/util/stringUtils.h"
#include "minorGems/util/random/JenkinsRandomSource.h"
#include "minorGems/io/file/File.h"
#include "minorGems/graphics/converters/TGAImageConverter.h"
#include "spriteBank.h"
#include "ageControl.h"
#include "folderCache.h"
#include "soundBank.h"
#include "animationBank.h"
static int mapSize;
// maps IDs to records
// sparse, so some entries are NULL
static ObjectRecord **idMap;
static StringTree tree;
// track objects that are marked with the person flag
static SimpleVector<int> personObjectIDs;
// track female people
static SimpleVector<int> femalePersonObjectIDs;
// track monument calls
static SimpleVector<int> monumentCallObjectIDs;
// track death markers
static SimpleVector<int> deathMarkerObjectIDs;
// anything above race 100 is put in bin for race 100
#define MAX_RACE 100
static SimpleVector<int> racePersonObjectIDs[ MAX_RACE + 1 ];
static SimpleVector<int> raceList;
#define MAX_BIOME 511
static float biomeHeatMap[ MAX_BIOME + 1 ];
static int recomputeObjectHeight( int inNumSprites, int *inSprites,
doublePair *inSpritePos );
static void rebuildRaceList() {
raceList.deleteAll();
for( int i=0; i <= MAX_RACE; i++ ) {
if( racePersonObjectIDs[ i ].size() > 0 ) {
raceList.push_back( i );
// now sort into every-other gender order
int num = racePersonObjectIDs[i].size();
SimpleVector<int> boys;
SimpleVector<int> girls;
for( int j=0; j<num; j++ ) {
int id = racePersonObjectIDs[i].getElementDirect( j );
ObjectRecord *o = getObject( id );
if( o->male ) {
boys.push_back( id );
}
else {
girls.push_back( id );
}
}
racePersonObjectIDs[i].deleteAll();
int boyIndex = 0;
int girlIndex = 0;
int boysLeft = boys.size();
int girlsLeft = girls.size();
int flip = 0;
for( int j=0; j<num; j++ ) {
if( ( flip && boysLeft > 0 )
||
girlsLeft == 0 ) {
racePersonObjectIDs[i].push_back(
boys.getElementDirect( boyIndex ) );
boysLeft--;
boyIndex++;
}
else {
racePersonObjectIDs[i].push_back(
girls.getElementDirect( girlIndex ) );
girlsLeft--;
girlIndex++;
}
flip = !flip;
}
}
}
}
static JenkinsRandomSource randSource;
static ClothingSet emptyClothing = { NULL, NULL, NULL, NULL, NULL, NULL };
static FolderCache cache;
static int currentFile;
static SimpleVector<ObjectRecord*> records;
static int maxID;
static int maxWideRadius = 0;
int getMaxObjectID() {
return maxID;
}
void setDrawColor( FloatRGB inColor ) {
setDrawColor( inColor.r,
inColor.g,
inColor.b,
1 );
}
static char autoGenerateUsedObjects = false;
static char autoGenerateVariableObjects = false;
int initObjectBankStart( char *outRebuildingCache,
char inAutoGenerateUsedObjects,
char inAutoGenerateVariableObjects ) {
maxID = 0;
currentFile = 0;
cache = initFolderCache( "objects", outRebuildingCache );
autoGenerateUsedObjects = inAutoGenerateUsedObjects;
autoGenerateVariableObjects = inAutoGenerateVariableObjects;
return cache.numFiles;
}
char *boolArrayToSparseCommaString( const char *inLineName,
char *inArray, int inLength ) {
char numberBuffer[20];
SimpleVector<char> resultBuffer;
resultBuffer.appendElementString( inLineName );
resultBuffer.push_back( '=' );
char firstWritten = false;
for( int i=0; i<inLength; i++ ) {
if( inArray[i] ) {
if( firstWritten ) {
resultBuffer.push_back( ',' );
}
sprintf( numberBuffer, "%d", i );
resultBuffer.appendElementString( numberBuffer );
firstWritten = true;
}
}
if( !firstWritten ) {
resultBuffer.appendElementString( "-1" );
}
return resultBuffer.getElementString();
}
void sparseCommaLineToBoolArray( const char *inExpectedLineName,
char *inLine,
char *inBoolArray,
int inBoolArrayLength ) {
if( strstr( inLine, inExpectedLineName ) == NULL ) {
printf( "Expected line name %s not found in line %s\n",
inExpectedLineName, inLine );
return;
}
char *listStart = strstr( inLine, "=" );
if( listStart == NULL ) {
printf( "Expected character '=' not found in line %s\n",
inLine );
return;
}
listStart = &( listStart[1] );
int numParts;
char **listNumberStrings = split( listStart, ",", &numParts );
for( int i=0; i<numParts; i++ ) {
int scannedInt = -1;
sscanf( listNumberStrings[i], "%d", &scannedInt );
if( scannedInt >= 0 &&
scannedInt < inBoolArrayLength ) {
inBoolArray[ scannedInt ] = true;
}
delete [] listNumberStrings[i];
}
delete [] listNumberStrings;
}
static void fillObjectBiomeFromString( ObjectRecord *inRecord,
char *inBiomes ) {
char **biomeParts = split( inBiomes, ",", &( inRecord->numBiomes ) );
inRecord->biomes = new int[ inRecord->numBiomes ];
for( int i=0; i< inRecord->numBiomes; i++ ) {
sscanf( biomeParts[i], "%d", &( inRecord->biomes[i] ) );
delete [] biomeParts[i];
}
delete [] biomeParts;
}
float initObjectBankStep() {
if( currentFile == cache.numFiles ) {
return 1.0;
}
int i = currentFile;
char *txtFileName = getFileName( cache, i );
if( strstr( txtFileName, ".txt" ) != NULL &&
strstr( txtFileName, "groundHeat_" ) == NULL &&
strcmp( txtFileName, "nextObjectNumber.txt" ) != 0 ) {
// an object txt file!
char *objectText = getFileContents( cache, i );
if( objectText != NULL ) {
int numLines;
char **lines = split( objectText, "\n", &numLines );
delete [] objectText;
if( numLines >= 14 ) {
ObjectRecord *r = new ObjectRecord;
int next = 0;
r->id = 0;
sscanf( lines[next], "id=%d",
&( r->id ) );
if( r->id > maxID ) {
maxID = r->id;
}
next++;
r->description = stringDuplicate( lines[next] );
next++;
int contRead = 0;
sscanf( lines[next], "containable=%d",
&( contRead ) );
r->containable = contRead;
next++;
r->containSize = 1;
r->vertContainRotationOffset = 0;
sscanf( lines[next], "containSize=%f,vertSlotRot=%lf",
&( r->containSize ),
&( r->vertContainRotationOffset ) );
next++;
int permRead = 0;
r->minPickupAge = 3;
sscanf( lines[next], "permanent=%d,minPickupAge=%d",
&( permRead ),
&( r->minPickupAge ) );
r->permanent = permRead;
next++;
int heldInHandRead = 0;
sscanf( lines[next], "heldInHand=%d",
&( heldInHandRead ) );
r->heldInHand = false;
r->rideable = false;
if( heldInHandRead == 1 ) {
r->heldInHand = true;
}
else if( heldInHandRead == 2 ) {
r->rideable = true;
}
next++;
int blocksWalkingRead = 0;
r->leftBlockingRadius = 0;
r->rightBlockingRadius = 0;
int drawBehindPlayerRead = 0;
sscanf( lines[next],
"blocksWalking=%d,"
"leftBlockingRadius=%d,rightBlockingRadius=%d,"
"drawBehindPlayer=%d",
&( blocksWalkingRead ),
&( r->leftBlockingRadius ),
&( r->rightBlockingRadius ),
&( drawBehindPlayerRead ) );
r->blocksWalking = blocksWalkingRead;
r->drawBehindPlayer = drawBehindPlayerRead;
r->wide = ( r->leftBlockingRadius > 0 ||
r->rightBlockingRadius > 0 );
if( r->wide ) {
r->drawBehindPlayer = true;
if( r->leftBlockingRadius > maxWideRadius ) {
maxWideRadius = r->leftBlockingRadius;
}
if( r->rightBlockingRadius > maxWideRadius ) {
maxWideRadius = r->rightBlockingRadius;
}
}
next++;
r->mapChance = 0;
char biomeString[200];
int numRead = sscanf( lines[next],
"mapChance=%f#biomes_%199s",
&( r->mapChance ), biomeString );
if( numRead != 2 ) {
// biome not present (old format), treat as 0
biomeString[0] = '0';
biomeString[1] = '\0';
sscanf( lines[next], "mapChance=%f", &( r->mapChance ) );
// NOTE: I've avoided too many of these format
// bandaids, and forced whole-folder file rewrites
// in the past.
// But now we're part way into production, so bandaids
// are more effective.
}
fillObjectBiomeFromString( r, biomeString );
next++;
r->heatValue = 0;
sscanf( lines[next], "heatValue=%d",
&( r->heatValue ) );
next++;
r->rValue = 0;
sscanf( lines[next], "rValue=%f",
&( r->rValue ) );
next++;
int personRead = 0;
int noSpawnRead = 0;
sscanf( lines[next], "person=%d,noSpawn=%d",
&personRead, &noSpawnRead );
r->person = ( personRead > 0 );
r->race = personRead;
r->personNoSpawn = noSpawnRead;
next++;
int maleRead = 0;
sscanf( lines[next], "male=%d",
&( maleRead ) );
r->male = maleRead;
next++;
int deathMarkerRead = 0;
sscanf( lines[next], "deathMarker=%d",
&( deathMarkerRead ) );
r->deathMarker = deathMarkerRead;
if( r->deathMarker ) {
deathMarkerObjectIDs.push_back( r->id );
}
next++;
r->homeMarker = false;
if( strstr( lines[next], "homeMarker=" ) != NULL ) {
// home marker flag present
int homeMarkerRead = 0;
sscanf( lines[next], "homeMarker=%d", &( homeMarkerRead ) );
r->homeMarker = homeMarkerRead;
next++;
}
r->floor = false;
if( strstr( lines[next], "floor=" ) != NULL ) {
// floor flag present
int floorRead = 0;
sscanf( lines[next], "floor=%d", &( floorRead ) );
r->floor = floorRead;
next++;
}
r->floorHugging = false;
if( strstr( lines[next], "floorHugging=" ) != NULL ) {
// floorHugging flag present
int hugRead = 0;
sscanf( lines[next], "floorHugging=%d", &( hugRead ) );
r->floorHugging = hugRead;
next++;
}
sscanf( lines[next], "foodValue=%d",
&( r->foodValue ) );
next++;
sscanf( lines[next], "speedMult=%f",
&( r->speedMult ) );
next++;
r->heldOffset.x = 0;
r->heldOffset.y = 0;
sscanf( lines[next], "heldOffset=%lf,%lf",
&( r->heldOffset.x ),
&( r->heldOffset.y ) );
next++;
r->clothing = 'n';
sscanf( lines[next], "clothing=%c",
&( r->clothing ));
next++;
r->clothingOffset.x = 0;
r->clothingOffset.y = 0;
sscanf( lines[next], "clothingOffset=%lf,%lf",
&( r->clothingOffset.x ),
&( r->clothingOffset.y ) );
next++;
r->deadlyDistance = 0;
sscanf( lines[next], "deadlyDistance=%d",
&( r->deadlyDistance ) );
next++;
r->useDistance = 1;
if( strstr( lines[next],
"useDistance=" ) != NULL ) {
// use distance present
sscanf( lines[next], "useDistance=%d",
&( r->useDistance ) );
next++;
}
r->creationSound = blankSoundUsage;
r->usingSound = blankSoundUsage;
r->eatingSound = blankSoundUsage;
r->decaySound = blankSoundUsage;
if( strstr( lines[next], "sounds=" ) != NULL ) {
// sounds present
int numParts = 0;
char **parts = split( &( lines[next][7] ), ",", &numParts );
if( numParts == 4 ) {
r->creationSound = scanSoundUsage( parts[0] );
r->usingSound = scanSoundUsage( parts[1] );
r->eatingSound = scanSoundUsage( parts[2] );
r->decaySound = scanSoundUsage( parts[3] );
}
for( int i=0; i<numParts; i++ ) {
delete [] parts[i];
}
delete [] parts;
next++;
}
if( strstr( lines[next],
"creationSoundInitialOnly=" ) != NULL ) {
// flag present
int flagRead = 0;
sscanf( lines[next], "creationSoundInitialOnly=%d",
&( flagRead ) );
r->creationSoundInitialOnly = flagRead;
next++;
}
else {
r->creationSoundInitialOnly = 0;
}
r->numSlots = 0;
r->slotTimeStretch = 1.0f;
if( strstr( lines[next], "#" ) != NULL ) {
sscanf( lines[next], "numSlots=%d#timeStretch=%f",
&( r->numSlots ),
&( r->slotTimeStretch ) );
}
else {
sscanf( lines[next], "numSlots=%d",
&( r->numSlots ) );
}
next++;
r->slotSize = 1;
sscanf( lines[next], "slotSize=%f",
&( r->slotSize ) );
next++;
r->slotPos = new doublePair[ r->numSlots ];
r->slotVert = new char[ r->numSlots ];
r->slotParent = new int[ r->numSlots ];
for( int i=0; i< r->numSlots; i++ ) {
r->slotVert[i] = false;
r->slotParent[i] = -1;
int vertRead = 0;
sscanf( lines[ next ], "slotPos=%lf,%lf,vert=%d,parent=%d",
&( r->slotPos[i].x ),
&( r->slotPos[i].y ),
&vertRead,
&( r->slotParent[i] ) );
r->slotVert[i] = vertRead;
next++;
}
r->numSprites = 0;
sscanf( lines[next], "numSprites=%d",
&( r->numSprites ) );
next++;
r->sprites = new int[r->numSprites];
r->spritePos = new doublePair[ r->numSprites ];
r->spriteRot = new double[ r->numSprites ];
r->spriteHFlip = new char[ r->numSprites ];
r->spriteColor = new FloatRGB[ r->numSprites ];
r->spriteAgeStart = new double[ r->numSprites ];
r->spriteAgeEnd = new double[ r->numSprites ];
r->spriteParent = new int[ r->numSprites ];
r->spriteInvisibleWhenHolding = new char[ r->numSprites ];
r->spriteInvisibleWhenWorn = new int[ r->numSprites ];
r->spriteBehindSlots = new char[ r->numSprites ];
r->spriteIsHead = new char[ r->numSprites ];
r->spriteIsBody = new char[ r->numSprites ];
r->spriteIsBackFoot = new char[ r->numSprites ];
r->spriteIsFrontFoot = new char[ r->numSprites ];
memset( r->spriteIsHead, false, r->numSprites );
memset( r->spriteIsBody, false, r->numSprites );
memset( r->spriteIsBackFoot, false, r->numSprites );
memset( r->spriteIsFrontFoot, false, r->numSprites );
r->numUses = 1;
r->useChance = 1.0f;
r->spriteUseVanish = new char[ r->numSprites ];
r->spriteUseAppear = new char[ r->numSprites ];
r->useDummyIDs = NULL;
r->isUseDummy = false;
r->useDummyParent = 0;
r->cachedHeight = -1;
memset( r->spriteUseVanish, false, r->numSprites );
memset( r->spriteUseAppear, false, r->numSprites );
r->spriteSkipDrawing = new char[ r->numSprites ];
memset( r->spriteSkipDrawing, false, r->numSprites );
r->apocalypseTrigger = false;
if( r->description[0] == 'T' &&
r->description[1] == 'h' &&
strstr( r->description, "The Apocalypse" ) ==
r->description ) {
printf( "Object id %d (%s) seen as an apocalypse trigger\n",
r->id, r->description );
r->apocalypseTrigger = true;
}
r->monumentStep = false;
r->monumentDone = false;
r->monumentCall = false;
if( strstr( r->description, "monument" ) != NULL ) {
// some kind of monument state
if( strstr( r->description, "monumentStep" ) != NULL ) {
r->monumentStep = true;
}
else if( strstr( r->description,
"monumentDone" ) != NULL ) {
r->monumentDone = true;
}
else if( strstr( r->description,
"monumentCall" ) != NULL ) {
r->monumentCall = true;
monumentCallObjectIDs.push_back( r->id );
}
}
r->numVariableDummyIDs = 0;
r->variableDummyIDs = NULL;
r->isVariableDummy = false;
for( int i=0; i< r->numSprites; i++ ) {
sscanf( lines[next], "spriteID=%d",
&( r->sprites[i] ) );
next++;
sscanf( lines[next], "pos=%lf,%lf",
&( r->spritePos[i].x ),
&( r->spritePos[i].y ) );
next++;
sscanf( lines[next], "rot=%lf",
&( r->spriteRot[i] ) );
next++;
int flipRead = 0;
sscanf( lines[next], "hFlip=%d", &flipRead );
r->spriteHFlip[i] = flipRead;
next++;
sscanf( lines[next], "color=%f,%f,%f",
&( r->spriteColor[i].r ),
&( r->spriteColor[i].g ),
&( r->spriteColor[i].b ) );
next++;
sscanf( lines[next], "ageRange=%lf,%lf",
&( r->spriteAgeStart[i] ),
&( r->spriteAgeEnd[i] ) );
next++;
sscanf( lines[next], "parent=%d",
&( r->spriteParent[i] ) );
next++;
int invisRead = 0;
int invisWornRead = 0;
int behindSlotsRead = 0;
sscanf( lines[next],
"invisHolding=%d,invisWorn=%d,behindSlots=%d",
&invisRead, &invisWornRead,
&behindSlotsRead );
r->spriteInvisibleWhenHolding[i] = invisRead;
r->spriteInvisibleWhenWorn[i] = invisWornRead;
r->spriteBehindSlots[i] = behindSlotsRead;
next++;
}
sparseCommaLineToBoolArray( "headIndex", lines[next],
r->spriteIsHead, r->numSprites );
next++;
sparseCommaLineToBoolArray( "bodyIndex", lines[next],
r->spriteIsBody, r->numSprites );
next++;
sparseCommaLineToBoolArray( "backFootIndex", lines[next],
r->spriteIsBackFoot,
r->numSprites );
next++;
sparseCommaLineToBoolArray( "frontFootIndex", lines[next],
r->spriteIsFrontFoot,
r->numSprites );
next++;
if( next < numLines ) {
// info about num uses and vanish/appear sprites
sscanf( lines[next], "numUses=%d,%f",
&( r->numUses ),
&( r->useChance ) );
next++;
if( next < numLines ) {
sparseCommaLineToBoolArray( "useVanishIndex",
lines[next],
r->spriteUseVanish,
r->numSprites );
next++;
if( next < numLines ) {
sparseCommaLineToBoolArray( "useAppearIndex",
lines[next],
r->spriteUseAppear,
r->numSprites );
next++;
}
}
}
if( next < numLines ) {
sscanf( lines[next], "pixHeight=%d",
&( r->cachedHeight ) );
next++;
}
records.push_back( r );
if( r->person && ! r->personNoSpawn ) {
personObjectIDs.push_back( r->id );
if( ! r->male ) {
femalePersonObjectIDs.push_back( r->id );
}
if( r->race <= MAX_RACE ) {
racePersonObjectIDs[ r->race ].push_back( r->id );
}
else {
racePersonObjectIDs[ MAX_RACE ].push_back( r->id );
}
}
}
for( int i=0; i<numLines; i++ ) {
delete [] lines[i];
}
delete [] lines;
}
}
delete [] txtFileName;
currentFile ++;
return (float)( currentFile ) / (float)( cache.numFiles );
}
static char makeNewObjectsSearchable = false;
void enableObjectSearch( char inEnable ) {
makeNewObjectsSearchable = inEnable;
}
void initObjectBankFinish() {
freeFolderCache( cache );
mapSize = maxID + 1;
idMap = new ObjectRecord*[ mapSize ];
for( int i=0; i<mapSize; i++ ) {
idMap[i] = NULL;
}
int numRecords = records.size();
for( int i=0; i<numRecords; i++ ) {
ObjectRecord *r = records.getElementDirect(i);
idMap[ r->id ] = r;
if( makeNewObjectsSearchable ) {
char *lowercase = stringToLowerCase( r->description );
tree.insert( lowercase, r );
delete [] lowercase;
}
}
rebuildRaceList();
printf( "Loaded %d objects from objects folder\n", numRecords );
if( autoGenerateUsedObjects ) {
int numAutoGenerated = 0;
char oldSearch = makeNewObjectsSearchable;
// don't need to be able to search for dummy objs
makeNewObjectsSearchable = false;
for( int i=0; i<mapSize; i++ ) {
if( idMap[i] != NULL ) {
ObjectRecord *o = idMap[i];
if( o->numUses > 1 ) {
int mainID = o->id;
int numUses = o->numUses;
int numDummyObj = numUses - 1;
o->useDummyIDs = new int[ numDummyObj ];
for( int s=0; s<o->numSprites; s++ ) {
if( o->spriteUseAppear[s] ) {
// hide all appearing sprites in parent object
o->spriteSkipDrawing[s] = true;
}
}
for( int d=1; d<=numDummyObj; d++ ) {
numAutoGenerated ++;
char *desc = autoSprintf( "%s# use %d",
o->description,
d );
int dummyID = reAddObject( o, desc, true );
delete [] desc;
o->useDummyIDs[ d - 1 ] = dummyID;
ObjectRecord *dummyO = getObject( dummyID );
// only main object has uses
// dummies set to 0 so we don't recursively make
// more dummies out of them
dummyO->numUses = 0;
// used objects never occur naturally
dummyO->mapChance = 0;
dummyO->isUseDummy = true;
dummyO->useDummyParent = mainID;
if( o->creationSoundInitialOnly ) {
clearSoundUsage( &( dummyO->creationSound ) );
}
setupSpriteUseVis( o, d, dummyO->spriteSkipDrawing );
// copy anims too
for( int t=0; t<endAnimType; t++ ) {
AnimationRecord *a = getAnimation( mainID,
(AnimType)t );
if( a != NULL ) {
// feels more risky, but way faster
// than copying it
// temporarily replace the object ID
// before adding this record
// it will be copied internally
a->objectID = dummyID;
addAnimation( a, true );
// restore original record
a->objectID = mainID;
}
}
}
}
}
}
makeNewObjectsSearchable = oldSearch;
printf( " Auto-generated %d 'used' objects\n", numAutoGenerated );
}
if( autoGenerateVariableObjects ) {
int numAutoGenerated = 0;
char oldSearch = makeNewObjectsSearchable;
// don't need to be able to search for dummy objs
makeNewObjectsSearchable = false;
for( int i=0; i<mapSize; i++ ) {
if( idMap[i] != NULL ) {
ObjectRecord *o = idMap[i];
char *dollarPos = strstr( o->description, "$" );
if( dollarPos != NULL ) {
int mainID = o->id;
char *afterDollarPos = &( dollarPos[1] );
int numVar = 0;
int numRead = sscanf( afterDollarPos, "%d", &numVar );
if( numRead != 1 || numVar < 2 ) {
continue;
}
o->numVariableDummyIDs = numVar;
o->variableDummyIDs = new int[ numVar ];
char *target = autoSprintf( "$%d", numVar );
for( int d=1; d<=numVar; d++ ) {
numAutoGenerated ++;
char *sub = autoSprintf( "%d", d );
char found;
char *desc = replaceOnce( o->description, target,
sub,
&found );
delete [] sub;
int dummyID = reAddObject( o, desc, true );
delete [] desc;
o->variableDummyIDs[ d - 1 ] = dummyID;
ObjectRecord *dummyO = getObject( dummyID );
dummyO->isVariableDummy = true;
// copy anims too
for( int t=0; t<endAnimType; t++ ) {
AnimationRecord *a = getAnimation( mainID,
(AnimType)t );
if( a != NULL ) {
// feels more risky, but way faster
// than copying it
// temporarily replace the object ID
// before adding this record
// it will be copied internally
a->objectID = dummyID;
addAnimation( a, true );
// restore original record
a->objectID = mainID;
}
}
}
delete [] target;
}
}
}
makeNewObjectsSearchable = oldSearch;
printf( " Auto-generated %d 'variable' objects\n", numAutoGenerated );
}
for( int i=0; i<=MAX_BIOME; i++ ) {
biomeHeatMap[ i ] = 0;
}
SimpleVector<int> biomes;
getAllBiomes( &biomes );
// heat files stored in objects folder
File groundHeatDir( NULL, "objects" );
if( groundHeatDir.exists() && groundHeatDir.isDirectory() ) {
for( int i=0; i<biomes.size(); i++ ) {
int b = biomes.getElementDirect( i );
float heat = 0;
char *heatFileName = autoSprintf( "groundHeat_%d.txt", b );
File *heatFile = groundHeatDir.getChildFile( heatFileName );
if( heatFile->exists() && ! heatFile->isDirectory() ) {
char *cont = heatFile->readFileContents();
if( cont != NULL ) {
sscanf( cont, "%f", &heat );
delete [] cont;
}
}
delete heatFile;
delete [] heatFileName;
if( b <= MAX_BIOME ) {
biomeHeatMap[ b ] = heat;
}
}
}
// resaveAll();
}
float getBiomeHeatValue( int inBiome ) {
if( inBiome >= 0 && inBiome <= MAX_BIOME ) {
return biomeHeatMap[ inBiome ];
}
return 0;
}
// working vectors for this setup function
// don't re-compute these if we're repeating operation on same objectID
// (which we do when we compute use dummy objects at startup)
static int lastSetupObject = -1;
static int numVanishingSprites = 0;
static int numAppearingSprites = 0;
static SimpleVector<int> vanishingIndices;
static SimpleVector<int> appearingIndices;
void setupSpriteUseVis( ObjectRecord *inObject, int inUsesRemaining,
char *inSpriteSkipDrawing ) {
memset( inSpriteSkipDrawing, false, inObject->numSprites );
if( inObject->numUses == inUsesRemaining ) {
for( int s=0; s<inObject->numSprites; s++ ) {
if( inObject->spriteUseAppear[s] ) {
// hide all appearing sprites
inSpriteSkipDrawing[s] = true;
}
}
return;
}
else if( inUsesRemaining == 0 ) {
for( int s=0; s<inObject->numSprites; s++ ) {
if( inObject->spriteUseVanish[s] ) {
// hide all vanishing sprites
inSpriteSkipDrawing[s] = true;
}
}
}
else {
// generate vis for one of the use dummy objects
int numUses = inObject->numUses;
if( inObject->id != lastSetupObject ) {
numVanishingSprites = 0;
numAppearingSprites = 0;
vanishingIndices.deleteAll();
appearingIndices.deleteAll();
for( int s=0; s<inObject->numSprites; s++ ) {
if( inObject->spriteUseVanish[s] ) {
numVanishingSprites ++;
vanishingIndices.push_back( s );
}
}
for( int s=0; s<inObject->numSprites; s++ ) {
if( inObject->spriteUseAppear[s] ) {
numAppearingSprites ++;
appearingIndices.push_back( s );
// hide all appearing sprites as basis
inSpriteSkipDrawing[s] = true;
}
}
lastSetupObject = inObject->id;
}
else {
for( int i=0; i<numAppearingSprites; i++ ) {
// hide all appearing sprites as basis
inSpriteSkipDrawing[ appearingIndices.getElementDirect(i) ] =
true;
}
}
int d = inUsesRemaining;
// hide some sprites
int numSpritesLeft =
( d * (numVanishingSprites) ) / numUses;
int numInLastDummy = numVanishingSprites / numUses;
if( numInLastDummy == 0 ) {
// add 1 to everything to pad up, so last
// dummy has 1 sprite in it
numSpritesLeft += 1;
}
if( numSpritesLeft > numVanishingSprites ) {
numSpritesLeft = numVanishingSprites;
}
for( int v=numSpritesLeft; v<numVanishingSprites; v++ ) {
inSpriteSkipDrawing[ vanishingIndices.getElementDirect( v ) ] =
true;
}
// now handle appearing sprites
int numInvisSpritesLeft =
lrint( ( d * (numAppearingSprites) ) / (double)numUses );
/*
// testing... do we need to do this?
int numInvisInLastDummy = numAppearingSprites / numUses;
if( numInLastDummy == 0 ) {
// add 1 to everything to pad up, so last
// dummy has 1 sprite in it
numSpritesLeft += 1;
}
*/
if( numInvisSpritesLeft > numAppearingSprites ) {
numInvisSpritesLeft = numAppearingSprites;
}
for( int v=0; v<numAppearingSprites - numInvisSpritesLeft; v++ ) {
inSpriteSkipDrawing[ appearingIndices.getElementDirect( v ) ] =
false;
}
}
}
static void freeObjectRecord( int inID ) {
if( inID < mapSize ) {
if( idMap[inID] != NULL ) {
char *lower = stringToLowerCase( idMap[inID]->description );
tree.remove( lower, idMap[inID] );
delete [] lower;
int race = idMap[inID]->race;
delete [] idMap[inID]->description;
delete [] idMap[inID]->biomes;
delete [] idMap[inID]->slotPos;
delete [] idMap[inID]->slotVert;
delete [] idMap[inID]->slotParent;
delete [] idMap[inID]->sprites;
delete [] idMap[inID]->spritePos;
delete [] idMap[inID]->spriteRot;
delete [] idMap[inID]->spriteHFlip;
delete [] idMap[inID]->spriteColor;
delete [] idMap[inID]->spriteAgeStart;
delete [] idMap[inID]->spriteAgeEnd;
delete [] idMap[inID]->spriteParent;
delete [] idMap[inID]->spriteInvisibleWhenHolding;
delete [] idMap[inID]->spriteInvisibleWhenWorn;
delete [] idMap[inID]->spriteBehindSlots;
delete [] idMap[inID]->spriteIsHead;
delete [] idMap[inID]->spriteIsBody;
delete [] idMap[inID]->spriteIsBackFoot;
delete [] idMap[inID]->spriteIsFrontFoot;
delete [] idMap[inID]->spriteUseVanish;
delete [] idMap[inID]->spriteUseAppear;
if( idMap[inID]->useDummyIDs != NULL ) {
delete [] idMap[inID]->useDummyIDs;
}
if( idMap[inID]->variableDummyIDs != NULL ) {
delete [] idMap[inID]->variableDummyIDs;
}
delete [] idMap[inID]->spriteSkipDrawing;
clearSoundUsage( &( idMap[inID]->creationSound ) );
clearSoundUsage( &( idMap[inID]->usingSound ) );
clearSoundUsage( &( idMap[inID]->eatingSound ) );
clearSoundUsage( &( idMap[inID]->decaySound ) );
delete idMap[inID];
idMap[inID] = NULL;
personObjectIDs.deleteElementEqualTo( inID );
femalePersonObjectIDs.deleteElementEqualTo( inID );
monumentCallObjectIDs.deleteElementEqualTo( inID );
deathMarkerObjectIDs.deleteElementEqualTo( inID );
if( race <= MAX_RACE ) {
racePersonObjectIDs[ race ].deleteElementEqualTo( inID );
}
else {
racePersonObjectIDs[ MAX_RACE ].deleteElementEqualTo( inID );
}
rebuildRaceList();
}
}
}
void freeObjectBank() {
for( int i=0; i<mapSize; i++ ) {
if( idMap[i] != NULL ) {
delete [] idMap[i]->slotPos;
delete [] idMap[i]->slotVert;
delete [] idMap[i]->slotParent;
delete [] idMap[i]->description;
delete [] idMap[i]->biomes;
delete [] idMap[i]->sprites;
delete [] idMap[i]->spritePos;
delete [] idMap[i]->spriteRot;
delete [] idMap[i]->spriteHFlip;
delete [] idMap[i]->spriteColor;
delete [] idMap[i]->spriteAgeStart;
delete [] idMap[i]->spriteAgeEnd;
delete [] idMap[i]->spriteParent;
delete [] idMap[i]->spriteInvisibleWhenHolding;
delete [] idMap[i]->spriteInvisibleWhenWorn;
delete [] idMap[i]->spriteBehindSlots;
delete [] idMap[i]->spriteIsHead;
delete [] idMap[i]->spriteIsBody;
delete [] idMap[i]->spriteIsBackFoot;
delete [] idMap[i]->spriteIsFrontFoot;
delete [] idMap[i]->spriteUseVanish;
delete [] idMap[i]->spriteUseAppear;
if( idMap[i]->useDummyIDs != NULL ) {
delete [] idMap[i]->useDummyIDs;
}
if( idMap[i]->variableDummyIDs != NULL ) {
delete [] idMap[i]->variableDummyIDs;
}
delete [] idMap[i]->spriteSkipDrawing;
//printf( "\n\nClearing sound usage for id %d\n", i );
clearSoundUsage( &( idMap[i]->creationSound ) );
clearSoundUsage( &( idMap[i]->usingSound ) );
clearSoundUsage( &( idMap[i]->eatingSound ) );
clearSoundUsage( &( idMap[i]->decaySound ) );
delete idMap[i];
}
}
delete [] idMap;
personObjectIDs.deleteAll();
femalePersonObjectIDs.deleteAll();
monumentCallObjectIDs.deleteAll();
deathMarkerObjectIDs.deleteAll();
for( int i=0; i<= MAX_RACE; i++ ) {
racePersonObjectIDs[i].deleteAll();
}
rebuildRaceList();
}
int reAddObject( ObjectRecord *inObject,
char *inNewDescription,
char inNoWriteToFile, int inReplaceID ) {
const char *desc = inObject->description;
if( inNewDescription != NULL ) {
desc = inNewDescription;
}
char *biomeString = getBiomesString( inObject );
int id = addObject( desc,
inObject->containable,
inObject->containSize,
inObject->vertContainRotationOffset,
inObject->permanent,
inObject->minPickupAge,
inObject->heldInHand,
inObject->rideable,
inObject->blocksWalking,
inObject->leftBlockingRadius,
inObject->rightBlockingRadius,
inObject->drawBehindPlayer,
biomeString,
inObject->mapChance,
inObject->heatValue,
inObject->rValue,
inObject->person,
inObject->personNoSpawn,
inObject->male,
inObject->race,
inObject->deathMarker,
inObject->homeMarker,
inObject->floor,
inObject->floorHugging,
inObject->foodValue,
inObject->speedMult,
inObject->heldOffset,
inObject->clothing,
inObject->clothingOffset,
inObject->deadlyDistance,
inObject->useDistance,
inObject->creationSound,
inObject->usingSound,
inObject->eatingSound,
inObject->decaySound,
inObject->creationSoundInitialOnly,
inObject->numSlots,
inObject->slotSize,
inObject->slotPos,
inObject->slotVert,
inObject->slotParent,
inObject->slotTimeStretch,
inObject->numSprites,
inObject->sprites,
inObject->spritePos,
inObject->spriteRot,
inObject->spriteHFlip,
inObject->spriteColor,
inObject->spriteAgeStart,
inObject->spriteAgeEnd,
inObject->spriteParent,
inObject->spriteInvisibleWhenHolding,
inObject->spriteInvisibleWhenWorn,
inObject->spriteBehindSlots,
inObject->spriteIsHead,
inObject->spriteIsBody,
inObject->spriteIsBackFoot,
inObject->spriteIsFrontFoot,
inObject->numUses,
inObject->useChance,
inObject->spriteUseVanish,
inObject->spriteUseAppear,
inNoWriteToFile,
inReplaceID );
delete [] biomeString;
return id;
}
void resaveAll() {
printf( "Starting to resave all objects\n..." );
for( int i=0; i<mapSize; i++ ) {
if( idMap[i] != NULL ) {
ObjectRecord *o = idMap[i];
char anyNotLoaded = true;
while( anyNotLoaded ) {
anyNotLoaded = false;
for( int s=0; s< o->numSprites; s++ ) {
char loaded = markSpriteLive( o->sprites[s] );
if( ! loaded ) {
anyNotLoaded = true;
}
}
stepSpriteBank();
}
reAddObject( idMap[i], NULL, false, i );
}
}
printf( "...done with resave\n" );
}
ObjectRecord *getObject( int inID ) {
if( inID < mapSize ) {
if( idMap[inID] != NULL ) {
return idMap[inID];
}
}
return NULL;
}
int getNumContainerSlots( int inID ) {
ObjectRecord *r = getObject( inID );
if( r == NULL ) {
return 0;
}
else {
return r->numSlots;
}
}
char isContainable( int inID ) {
ObjectRecord *r = getObject( inID );
if( r == NULL ) {
return false;
}
else {
return r->containable;
}
}
char isApocalypseTrigger( int inID ) {
ObjectRecord *r = getObject( inID );
if( r == NULL ) {
return false;
}
else {
return r->apocalypseTrigger;
}
}
int getMonumentStatus( int inID ) {
ObjectRecord *r = getObject( inID );
if( r == NULL ) {
return 0;
}
else {
if( r->monumentStep ) {
return 1;
}
if( r->monumentDone ) {
return 2;
}
if( r->monumentCall ) {
return 3;
}
return 0;
}
}
SimpleVector<int> *getMonumentCallObjects() {
return &monumentCallObjectIDs;
}
// return array destroyed by caller, NULL if none found
ObjectRecord **searchObjects( const char *inSearch,
int inNumToSkip,
int inNumToGet,
int *outNumResults, int *outNumRemaining ) {
if( strcmp( inSearch, "" ) == 0 ) {
// special case, show objects in reverse-id order, newest first
SimpleVector< ObjectRecord *> results;
int numSkipped = 0;
int id = mapSize - 1;
while( id > 0 && numSkipped < inNumToSkip ) {
if( idMap[id] != NULL ) {
numSkipped++;
}
id--;
}
int numGotten = 0;
while( id > 0 && numGotten < inNumToGet ) {
if( idMap[id] != NULL ) {
results.push_back( idMap[id] );
numGotten++;
}
id--;
}
// rough estimate
*outNumRemaining = id;
if( *outNumRemaining < 100 ) {
// close enough to end, actually compute it
*outNumRemaining = 0;
while( id > 0 ) {
if( idMap[id] != NULL ) {
*outNumRemaining = *outNumRemaining + 1;
}
id--;
}
}
*outNumResults = results.size();
return results.getElementArray();
}
char *lowerSearch = stringToLowerCase( inSearch );
int numTotalMatches = tree.countMatches( lowerSearch );
int numAfterSkip = numTotalMatches - inNumToSkip;
if( numAfterSkip < 0 ) {
numAfterSkip = 0;
}
int numToGet = inNumToGet;
if( numToGet > numAfterSkip ) {
numToGet = numAfterSkip;
}
*outNumRemaining = numAfterSkip - numToGet;
ObjectRecord **results = new ObjectRecord*[ numToGet ];
*outNumResults =
tree.getMatches( lowerSearch, inNumToSkip, numToGet, (void**)results );
delete [] lowerSearch;
return results;
}
int addObject( const char *inDescription,
char inContainable,
float inContainSize,
double inVertContainRotationOffset,
char inPermanent,
int inMinPickupAge,
char inHeldInHand,
char inRideable,
char inBlocksWalking,
int inLeftBlockingRadius, int inRightBlockingRadius,
char inDrawBehindPlayer,
char *inBiomes,
float inMapChance,
int inHeatValue,
float inRValue,
char inPerson,
char inPersonNoSpawn,
char inMale,
int inRace,
char inDeathMarker,
char inHomeMarker,
char inFloor,
char inFloorHugging,
int inFoodValue,
float inSpeedMult,
doublePair inHeldOffset,
char inClothing,
doublePair inClothingOffset,
int inDeadlyDistance,
int inUseDistance,
SoundUsage inCreationSound,
SoundUsage inUsingSound,
SoundUsage inEatingSound,
SoundUsage inDecaySound,
char inCreationSoundInitialOnly,
int inNumSlots, float inSlotSize, doublePair *inSlotPos,
char *inSlotVert,
int *inSlotParent,
float inSlotTimeStretch,
int inNumSprites, int *inSprites,
doublePair *inSpritePos,
double *inSpriteRot,
char *inSpriteHFlip,
FloatRGB *inSpriteColor,
double *inSpriteAgeStart,
double *inSpriteAgeEnd,
int *inSpriteParent,
char *inSpriteInvisibleWhenHolding,
int *inSpriteInvisibleWhenWorn,
char *inSpriteBehindSlots,
char *inSpriteIsHead,
char *inSpriteIsBody,
char *inSpriteIsBackFoot,
char *inSpriteIsFrontFoot,
int inNumUses,
float inUseChance,
char *inSpriteUseVanish,
char *inSpriteUseAppear,
char inNoWriteToFile,
int inReplaceID ) {
if( inSlotTimeStretch < 0.0001 ) {
inSlotTimeStretch = 0.0001;
}
int newID = inReplaceID;
int newHeight = recomputeObjectHeight( inNumSprites,
inSprites, inSpritePos );
// add it to file structure
File objectsDir( NULL, "objects" );
if( ! inNoWriteToFile && !objectsDir.exists() ) {
objectsDir.makeDirectory();
}
int nextObjectNumber = 1;
if( objectsDir.exists() && objectsDir.isDirectory() ) {
File *nextNumberFile =
objectsDir.getChildFile( "nextObjectNumber.txt" );
if( nextNumberFile->exists() ) {
char *nextNumberString =
nextNumberFile->readFileContents();
if( nextNumberString != NULL ) {
sscanf( nextNumberString, "%d", &nextObjectNumber );
delete [] nextNumberString;
}
}
if( newID == -1 ) {
newID = nextObjectNumber;
if( newID < maxID + 1 ) {
newID = maxID + 1;
}
}
delete nextNumberFile;
}
if( ! inNoWriteToFile &&
objectsDir.exists() && objectsDir.isDirectory() ) {
char *fileName = autoSprintf( "%d.txt", newID );
File *objectFile = objectsDir.getChildFile( fileName );
SimpleVector<char*> lines;
lines.push_back( autoSprintf( "id=%d", newID ) );
lines.push_back( stringDuplicate( inDescription ) );
lines.push_back( autoSprintf( "containable=%d", (int)inContainable ) );
lines.push_back( autoSprintf( "containSize=%f,vertSlotRot=%f",
inContainSize,
inVertContainRotationOffset ) );
lines.push_back( autoSprintf( "permanent=%d,minPickupAge=%d",
(int)inPermanent,
inMinPickupAge ) );
int heldInHandNumber = 0;
if( inHeldInHand ) {
heldInHandNumber = 1;
}
if( inRideable ) {
// override
heldInHandNumber = 2;
}
lines.push_back( autoSprintf( "heldInHand=%d", heldInHandNumber ) );
lines.push_back( autoSprintf(
"blocksWalking=%d,"
"leftBlockingRadius=%d,"
"rightBlockingRadius=%d,"
"drawBehindPlayer=%d",
(int)inBlocksWalking,
inLeftBlockingRadius,
inRightBlockingRadius,
(int)inDrawBehindPlayer ) );
lines.push_back( autoSprintf( "mapChance=%f#biomes_%s",
inMapChance, inBiomes ) );
lines.push_back( autoSprintf( "heatValue=%d", inHeatValue ) );
lines.push_back( autoSprintf( "rValue=%f", inRValue ) );
int personNumber = 0;
if( inPerson ) {
personNumber = inRace;
}
lines.push_back( autoSprintf( "person=%d,noSpawn=%d", personNumber,
(int)inPersonNoSpawn ) );
lines.push_back( autoSprintf( "male=%d", (int)inMale ) );
lines.push_back( autoSprintf( "deathMarker=%d", (int)inDeathMarker ) );
lines.push_back( autoSprintf( "homeMarker=%d", (int)inHomeMarker ) );
lines.push_back( autoSprintf( "floor=%d", (int)inFloor ) );
lines.push_back( autoSprintf( "floorHugging=%d",
(int)inFloorHugging ) );
lines.push_back( autoSprintf( "foodValue=%d", inFoodValue ) );
lines.push_back( autoSprintf( "speedMult=%f", inSpeedMult ) );
lines.push_back( autoSprintf( "heldOffset=%f,%f",
inHeldOffset.x, inHeldOffset.y ) );
lines.push_back( autoSprintf( "clothing=%c", inClothing ) );
lines.push_back( autoSprintf( "clothingOffset=%f,%f",
inClothingOffset.x,
inClothingOffset.y ) );
lines.push_back( autoSprintf( "deadlyDistance=%d",
inDeadlyDistance ) );
lines.push_back( autoSprintf( "useDistance=%d",
inUseDistance ) );
char *usageStrings[4] =
{ stringDuplicate( printSoundUsage( inCreationSound ) ),
stringDuplicate( printSoundUsage( inUsingSound ) ),
stringDuplicate( printSoundUsage( inEatingSound ) ),
stringDuplicate( printSoundUsage( inDecaySound ) ) };
lines.push_back( autoSprintf( "sounds=%s,%s,%s,%s",
usageStrings[0],
usageStrings[1],
usageStrings[2],
usageStrings[3] ) );
for( int i=0; i<4; i++ ) {
delete [] usageStrings[i];
}
lines.push_back( autoSprintf( "creationSoundInitialOnly=%d",
(int)inCreationSoundInitialOnly ) );
lines.push_back( autoSprintf( "numSlots=%d#timeStretch=%f",
inNumSlots, inSlotTimeStretch ) );
lines.push_back( autoSprintf( "slotSize=%f", inSlotSize ) );
for( int i=0; i<inNumSlots; i++ ) {
lines.push_back( autoSprintf( "slotPos=%f,%f,vert=%d,parent=%d",
inSlotPos[i].x,
inSlotPos[i].y,
(int)( inSlotVert[i] ),
inSlotParent[i] ) );
}
lines.push_back( autoSprintf( "numSprites=%d", inNumSprites ) );
for( int i=0; i<inNumSprites; i++ ) {
lines.push_back( autoSprintf( "spriteID=%d", inSprites[i] ) );
lines.push_back( autoSprintf( "pos=%f,%f",
inSpritePos[i].x,
inSpritePos[i].y ) );
lines.push_back( autoSprintf( "rot=%f",
inSpriteRot[i] ) );
lines.push_back( autoSprintf( "hFlip=%d",
inSpriteHFlip[i] ) );
lines.push_back( autoSprintf( "color=%f,%f,%f",
inSpriteColor[i].r,
inSpriteColor[i].g,
inSpriteColor[i].b ) );
lines.push_back( autoSprintf( "ageRange=%f,%f",
inSpriteAgeStart[i],
inSpriteAgeEnd[i] ) );
lines.push_back( autoSprintf( "parent=%d",
inSpriteParent[i] ) );
lines.push_back( autoSprintf( "invisHolding=%d,invisWorn=%d,"
"behindSlots=%d",
inSpriteInvisibleWhenHolding[i],
inSpriteInvisibleWhenWorn[i],
inSpriteBehindSlots[i] ) );
}
// FIXME
lines.push_back(
boolArrayToSparseCommaString( "headIndex",
inSpriteIsHead, inNumSprites ) );
lines.push_back(
boolArrayToSparseCommaString( "bodyIndex",
inSpriteIsBody, inNumSprites ) );
lines.push_back(
boolArrayToSparseCommaString( "backFootIndex",
inSpriteIsBackFoot, inNumSprites ) );
lines.push_back(
boolArrayToSparseCommaString( "frontFootIndex",
inSpriteIsFrontFoot,
inNumSprites ) );
lines.push_back( autoSprintf( "numUses=%d,%f",
inNumUses, inUseChance ) );
lines.push_back(
boolArrayToSparseCommaString( "useVanishIndex",
inSpriteUseVanish,
inNumSprites ) );
lines.push_back(
boolArrayToSparseCommaString( "useAppearIndex",
inSpriteUseAppear,
inNumSprites ) );
lines.push_back( autoSprintf( "pixHeight=%d",
newHeight ) );
char **linesArray = lines.getElementArray();
char *contents = join( linesArray, lines.size(), "\n" );
delete [] linesArray;
lines.deallocateStringElements();
File *cacheFile = objectsDir.getChildFile( "cache.fcz" );
cacheFile->remove();
delete cacheFile;
objectFile->writeToFile( contents );
delete [] contents;
delete [] fileName;
delete objectFile;
if( inReplaceID == -1 ) {
nextObjectNumber++;
}
char *nextNumberString = autoSprintf( "%d", nextObjectNumber );
File *nextNumberFile =
objectsDir.getChildFile( "nextObjectNumber.txt" );
nextNumberFile->writeToFile( nextNumberString );
delete [] nextNumberString;
delete nextNumberFile;
}
if( newID == -1 && ! inNoWriteToFile ) {
// failed to save it to disk
return -1;
}
if( newID == -1 ) {
newID = maxID + 1;
}
// now add it to live, in memory database
if( newID >= mapSize ) {
// expand map
int newMapSize = newID + 1;
ObjectRecord **newMap = new ObjectRecord*[newMapSize];
for( int i=mapSize; i<newMapSize; i++ ) {
newMap[i] = NULL;
}
memcpy( newMap, idMap, sizeof(ObjectRecord*) * mapSize );
delete [] idMap;
idMap = newMap;
mapSize = newMapSize;
}
if( newID > maxID ) {
maxID = newID;
}
ObjectRecord *r = new ObjectRecord;
r->id = newID;
r->description = stringDuplicate( inDescription );
r->containable = inContainable;
r->containSize = inContainSize;
r->vertContainRotationOffset = inVertContainRotationOffset;
r->permanent = inPermanent;
r->minPickupAge = inMinPickupAge;
r->heldInHand = inHeldInHand;
r->rideable = inRideable;
if( r->heldInHand && r->rideable ) {
r->heldInHand = false;
}
r->blocksWalking = inBlocksWalking;
r->leftBlockingRadius = inLeftBlockingRadius;
r->rightBlockingRadius = inRightBlockingRadius;
r->drawBehindPlayer = inDrawBehindPlayer;
r->wide = ( r->leftBlockingRadius > 0 || r->rightBlockingRadius > 0 );
if( r->wide ) {
r->drawBehindPlayer = true;
if( r->leftBlockingRadius > maxWideRadius ) {
maxWideRadius = r->leftBlockingRadius;
}
if( r->rightBlockingRadius > maxWideRadius ) {
maxWideRadius = r->rightBlockingRadius;
}
}
fillObjectBiomeFromString( r, inBiomes );
r->mapChance = inMapChance;
r->heatValue = inHeatValue;
r->rValue = inRValue;
r->person = inPerson;
r->personNoSpawn = inPersonNoSpawn;
r->race = inRace;
r->male = inMale;
r->deathMarker = inDeathMarker;
deathMarkerObjectIDs.deleteElementEqualTo( newID );
if( r->deathMarker ) {
deathMarkerObjectIDs.push_back( newID );
}
r->homeMarker = inHomeMarker;
r->floor = inFloor;
r->floorHugging = inFloorHugging;
r->foodValue = inFoodValue;
r->speedMult = inSpeedMult;
r->heldOffset = inHeldOffset;
r->clothing = inClothing;
r->clothingOffset = inClothingOffset;
r->deadlyDistance = inDeadlyDistance;
r->useDistance = inUseDistance;
r->creationSound = copyUsage( inCreationSound );
r->usingSound = copyUsage( inUsingSound );
r->eatingSound = copyUsage( inEatingSound );
r->decaySound = copyUsage( inDecaySound );
r->creationSoundInitialOnly = inCreationSoundInitialOnly;
r->numSlots = inNumSlots;
r->slotSize = inSlotSize;
r->slotPos = new doublePair[ inNumSlots ];
r->slotVert = new char[ inNumSlots ];
r->slotParent = new int[ inNumSlots ];
memcpy( r->slotPos, inSlotPos, inNumSlots * sizeof( doublePair ) );
memcpy( r->slotVert, inSlotVert, inNumSlots * sizeof( char ) );
memcpy( r->slotParent, inSlotParent, inNumSlots * sizeof( int ) );
r->slotTimeStretch = inSlotTimeStretch;
r->numSprites = inNumSprites;
r->sprites = new int[ inNumSprites ];
r->spritePos = new doublePair[ inNumSprites ];
r->spriteRot = new double[ inNumSprites ];
r->spriteHFlip = new char[ inNumSprites ];
r->spriteColor = new FloatRGB[ inNumSprites ];
r->spriteAgeStart = new double[ inNumSprites ];
r->spriteAgeEnd = new double[ inNumSprites ];
r->spriteParent = new int[ inNumSprites ];
r->spriteInvisibleWhenHolding = new char[ inNumSprites ];
r->spriteInvisibleWhenWorn = new int[ inNumSprites ];
r->spriteBehindSlots = new char[ inNumSprites ];
r->spriteIsHead = new char[ inNumSprites ];
r->spriteIsBody = new char[ inNumSprites ];
r->spriteIsBackFoot = new char[ inNumSprites ];
r->spriteIsFrontFoot = new char[ inNumSprites ];
r->numUses = inNumUses;
r->useChance = inUseChance;
r->spriteUseVanish = new char[ inNumSprites ];
r->spriteUseAppear = new char[ inNumSprites ];
r->useDummyIDs = NULL;
r->isUseDummy = false;
r->useDummyParent = 0;
r->cachedHeight = newHeight;
r->spriteSkipDrawing = new char[ inNumSprites ];
r->apocalypseTrigger = false;
if( r->description[0] == 'T' &&
r->description[1] == 'h' &&
strstr( r->description, "The Apocalypse" ) == r->description ) {
printf( "Object id %d (%s) seen as an apocalypse trigger\n",
r->id, r->description );
r->apocalypseTrigger = true;
}
r->monumentStep = false;
r->monumentDone = false;
r->monumentCall = false;
monumentCallObjectIDs.deleteElementEqualTo( newID );
if( strstr( r->description, "monument" ) != NULL ) {
// some kind of monument state
if( strstr( r->description, "monumentStep" ) != NULL ) {
r->monumentStep = true;
}
else if( strstr( r->description,
"monumentDone" ) != NULL ) {
r->monumentDone = true;
}
else if( strstr( r->description,
"monumentCall" ) != NULL ) {
r->monumentCall = true;
monumentCallObjectIDs.push_back( newID );
}
}
r->numVariableDummyIDs = 0;
r->variableDummyIDs = NULL;
r->isVariableDummy = false;
memset( r->spriteSkipDrawing, false, inNumSprites );
memcpy( r->sprites, inSprites, inNumSprites * sizeof( int ) );
memcpy( r->spritePos, inSpritePos, inNumSprites * sizeof( doublePair ) );
memcpy( r->spriteRot, inSpriteRot, inNumSprites * sizeof( double ) );
memcpy( r->spriteHFlip, inSpriteHFlip, inNumSprites * sizeof( char ) );
memcpy( r->spriteColor, inSpriteColor, inNumSprites * sizeof( FloatRGB ) );
memcpy( r->spriteAgeStart, inSpriteAgeStart,
inNumSprites * sizeof( double ) );
memcpy( r->spriteAgeEnd, inSpriteAgeEnd,
inNumSprites * sizeof( double ) );
memcpy( r->spriteParent, inSpriteParent,
inNumSprites * sizeof( int ) );
memcpy( r->spriteInvisibleWhenHolding, inSpriteInvisibleWhenHolding,
inNumSprites * sizeof( char ) );
memcpy( r->spriteInvisibleWhenWorn, inSpriteInvisibleWhenWorn,
inNumSprites * sizeof( int ) );
memcpy( r->spriteBehindSlots, inSpriteBehindSlots,
inNumSprites * sizeof( char ) );
memcpy( r->spriteIsHead, inSpriteIsHead,
inNumSprites * sizeof( char ) );
memcpy( r->spriteIsBody, inSpriteIsBody,
inNumSprites * sizeof( char ) );
memcpy( r->spriteIsBackFoot, inSpriteIsBackFoot,
inNumSprites * sizeof( char ) );
memcpy( r->spriteIsFrontFoot, inSpriteIsFrontFoot,
inNumSprites * sizeof( char ) );
memcpy( r->spriteUseVanish, inSpriteUseVanish,
inNumSprites * sizeof( char ) );
memcpy( r->spriteUseAppear, inSpriteUseAppear,
inNumSprites * sizeof( char ) );
// delete old
// grab this before freeing, in case inDescription is the same as
// idMap[newID].description
char *lower = stringToLowerCase( inDescription );
ObjectRecord *oldRecord = getObject( newID );
SimpleVector<int> oldSoundIDs;
if( oldRecord != NULL ) {
for( int i=0; i<oldRecord->creationSound.numSubSounds; i++ ) {
oldSoundIDs.push_back( oldRecord->creationSound.ids[i] );
}
for( int i=0; i<oldRecord->usingSound.numSubSounds; i++ ) {
oldSoundIDs.push_back( oldRecord->usingSound.ids[i] );
}
for( int i=0; i<oldRecord->eatingSound.numSubSounds; i++ ) {
oldSoundIDs.push_back( oldRecord->eatingSound.ids[i] );
}
for( int i=0; i<oldRecord->decaySound.numSubSounds; i++ ) {
oldSoundIDs.push_back( oldRecord->decaySound.ids[i] );
}
}
freeObjectRecord( newID );
idMap[newID] = r;
if( makeNewObjectsSearchable ) {
tree.insert( lower, idMap[newID] );
}
delete [] lower;
personObjectIDs.deleteElementEqualTo( newID );
femalePersonObjectIDs.deleteElementEqualTo( newID );
for( int i=0; i<=MAX_RACE; i++ ) {
racePersonObjectIDs[ i ].deleteElementEqualTo( newID );
}
if( r->person && ! r->personNoSpawn ) {
personObjectIDs.push_back( newID );
if( ! r->male ) {
femalePersonObjectIDs.push_back( newID );
}
if( r->race <= MAX_RACE ) {
racePersonObjectIDs[ r->race ].push_back( r->id );
}
else {
racePersonObjectIDs[ MAX_RACE ].push_back( r->id );
}
rebuildRaceList();
}
// check if sounds still used (prevent orphan sounds)
for( int i=0; i<oldSoundIDs.size(); i++ ) {
checkIfSoundStillNeeded( oldSoundIDs.getElementDirect( i ) );
}
return newID;
}
static char logicalXOR( char inA, char inB ) {
return !inA != !inB;
}
static int objectLayerCutoff = -1;
void setObjectDrawLayerCutoff( int inCutoff ) {
objectLayerCutoff = inCutoff;
}
HoldingPos drawObject( ObjectRecord *inObject, int inDrawBehindSlots,
doublePair inPos,
double inRot, char inWorn, char inFlipH, double inAge,
int inHideClosestArm,
char inHideAllLimbs,
char inHeldNotInPlaceYet,
ClothingSet inClothing,
double inScale ) {
HoldingPos returnHoldingPos = { false, {0, 0}, 0 };
SimpleVector <int> frontArmIndices;
getFrontArmIndices( inObject, inAge, &frontArmIndices );
SimpleVector <int> backArmIndices;
getBackArmIndices( inObject, inAge, &backArmIndices );
SimpleVector <int> legIndices;
getAllLegIndices( inObject, inAge, &legIndices );
int headIndex = getHeadIndex( inObject, inAge );
int bodyIndex = getBodyIndex( inObject, inAge );
int backFootIndex = getBackFootIndex( inObject, inAge );
int frontFootIndex = getFrontFootIndex( inObject, inAge );
int topBackArmIndex = -1;
if( backArmIndices.size() > 0 ) {
topBackArmIndex =
backArmIndices.getElementDirect( backArmIndices.size() - 1 );
}
int backHandIndex = getBackHandIndex( inObject, inAge );
doublePair headPos = inObject->spritePos[ headIndex ];
doublePair frontFootPos = inObject->spritePos[ frontFootIndex ];
doublePair bodyPos = inObject->spritePos[ bodyIndex ];
doublePair animHeadPos = headPos;
doublePair tunicPos = { 0, 0 };
double tunicRot = 0;
doublePair bottomPos = { 0, 0 };
double bottomRot = 0;
doublePair backpackPos = { 0, 0 };
double backpackRot = 0;
doublePair backShoePos = { 0, 0 };
double backShoeRot = 0;
doublePair frontShoePos = { 0, 0 };
double frontShoeRot = 0;
int limit = inObject->numSprites;
if( objectLayerCutoff > -1 && objectLayerCutoff < limit ) {
limit = objectLayerCutoff;
}
objectLayerCutoff = -1;
for( int i=0; i<limit; i++ ) {
if( inObject->spriteSkipDrawing != NULL &&
inObject->spriteSkipDrawing[i] ) {
continue;
}
if( inObject->person &&
! isSpriteVisibleAtAge( inObject, i, inAge ) ) {
// skip drawing this aging layer entirely
continue;
}
if( inObject->clothing != 'n' &&
inObject->spriteInvisibleWhenWorn[i] != 0 ) {
if( inWorn &&
inObject->spriteInvisibleWhenWorn[i] == 1 ) {
// skip invisible layer in worn clothing
continue;
}
else if( ! inWorn &&
inObject->spriteInvisibleWhenWorn[i] == 2 ) {
// skip invisible layer in unworn clothing
continue;
}
}
if( inDrawBehindSlots != 2 ) {
if( inDrawBehindSlots == 0 &&
! inObject->spriteBehindSlots[i] ) {
continue;
}
else if( inDrawBehindSlots == 1 &&
inObject->spriteBehindSlots[i] ) {
continue;
}
}
doublePair spritePos = inObject->spritePos[i];
if( inObject->person &&
( i == headIndex ||
checkSpriteAncestor( inObject, i,
headIndex ) ) ) {
spritePos = add( spritePos, getAgeHeadOffset( inAge, headPos,
bodyPos,
frontFootPos ) );
}
if( inObject->person &&
( i == headIndex ||
checkSpriteAncestor( inObject, i,
bodyIndex ) ) ) {
spritePos = add( spritePos, getAgeBodyOffset( inAge, bodyPos ) );
}
if( i == headIndex ) {
// this is the head
animHeadPos = spritePos;
}
if( inFlipH ) {
spritePos.x *= -1;
}
if( inRot != 0 ) {
spritePos = rotate( spritePos, -2 * M_PI * inRot );
}
spritePos = mult( spritePos, inScale );
doublePair pos = add( spritePos, inPos );
char skipSprite = false;
if( !inHeldNotInPlaceYet &&
inHideClosestArm == 1 &&
frontArmIndices.getElementIndex( i ) != -1 ) {
skipSprite = true;
}
else if( !inHeldNotInPlaceYet &&
inHideClosestArm == -1 &&
backArmIndices.getElementIndex( i ) != -1 ) {
skipSprite = true;
}
else if( !inHeldNotInPlaceYet &&
inHideAllLimbs ) {
if( frontArmIndices.getElementIndex( i ) != -1
||
backArmIndices.getElementIndex( i ) != -1
||
legIndices.getElementIndex( i ) != -1 ) {
skipSprite = true;
}
}
if( i == backFootIndex
&& inClothing.backShoe != NULL ) {
doublePair cPos = add( spritePos,
inClothing.backShoe->clothingOffset );
if( inFlipH ) {
cPos.x *= -1;
}
cPos = add( cPos, inPos );
backShoePos = cPos;
backShoeRot = inRot;
}
if( i == bodyIndex ) {
if( inClothing.tunic != NULL ) {
doublePair cPos = add( spritePos,
inClothing.tunic->clothingOffset );
if( inFlipH ) {
cPos.x *= -1;
}
cPos = add( cPos, inPos );
tunicPos = cPos;
tunicRot = inRot;
}
if( inClothing.bottom != NULL ) {
doublePair cPos = add( spritePos,
inClothing.bottom->clothingOffset );
if( inFlipH ) {
cPos.x *= -1;
}
cPos = add( cPos, inPos );
bottomPos = cPos;
bottomRot = inRot;
}
if( inClothing.backpack != NULL ) {
doublePair cPos = add( spritePos,
inClothing.backpack->clothingOffset );
if( inFlipH ) {
cPos.x *= -1;
}
cPos = add( cPos, inPos );
backpackPos = cPos;
backpackRot = inRot;
}
}
else if( i == topBackArmIndex ) {
// draw under top of back arm
if( inClothing.bottom != NULL ) {
drawObject( inClothing.bottom, 2,
bottomPos, bottomRot, true,
inFlipH, -1, 0, false, false, emptyClothing );
}
if( inClothing.tunic != NULL ) {
drawObject( inClothing.tunic, 2,
tunicPos, tunicRot, true,
inFlipH, -1, 0, false, false, emptyClothing );
}
if( inClothing.backpack != NULL ) {
drawObject( inClothing.backpack, 2,
backpackPos, backpackRot,
true,
inFlipH, -1, 0, false, false, emptyClothing );
}
}
if( i == frontFootIndex
&& inClothing.frontShoe != NULL ) {
doublePair cPos = add( spritePos,
inClothing.frontShoe->clothingOffset );
if( inFlipH ) {
cPos.x *= -1;
}
cPos = add( cPos, inPos );
frontShoePos = cPos;
frontShoeRot = inRot;
}
if( ! skipSprite ) {
setDrawColor( inObject->spriteColor[i] );
double rot = inObject->spriteRot[i];
if( inFlipH ) {
rot *= -1;
}
rot += inRot;
char multiplicative =
getUsesMultiplicativeBlending( inObject->sprites[i] );
if( multiplicative ) {
toggleMultiplicativeBlend( true );
if( getTotalGlobalFade() < 1 ) {
toggleAdditiveTextureColoring( true );
// alpha ignored for multiplicative blend
// but leave 0 there so that they won't add to stencil
setDrawColor( 0.0f, 0.0f, 0.0f, 0.0f );
}
else {
// set 0 so translucent layers never add to stencil
setDrawFade( 0.0f );
}
}
drawSprite( getSprite( inObject->sprites[i] ), pos, inScale,
rot,
logicalXOR( inFlipH, inObject->spriteHFlip[i] ) );
if( multiplicative ) {
toggleMultiplicativeBlend( false );
toggleAdditiveTextureColoring( false );
}
// this is the front-most drawn hand
// in unanimated, unflipped object
if( i == backHandIndex && ( inHideClosestArm == 0 )
&& !inHideAllLimbs ) {
returnHoldingPos.valid = true;
// return screen pos for hand, which may be flipped, etc.
returnHoldingPos.pos = pos;
returnHoldingPos.rot = rot;
}
else if( i == bodyIndex && inHideClosestArm != 0 ) {
returnHoldingPos.valid = true;
// return screen pos for body, which may be flipped, etc.
returnHoldingPos.pos = pos;
returnHoldingPos.rot = rot;
}
}
// shoes on top of feet
if( inClothing.backShoe != NULL && i == backFootIndex ) {
drawObject( inClothing.backShoe, 2,
backShoePos, backShoeRot, true,
inFlipH, -1, 0, false, false, emptyClothing );
}
else if( inClothing.frontShoe != NULL && i == frontFootIndex ) {
drawObject( inClothing.backShoe, 2,
frontShoePos, frontShoeRot, true,
inFlipH, -1, 0, false, false, emptyClothing );
}
}
if( inClothing.hat != NULL ) {
// hat on top of everything
// relative to head
doublePair cPos = add( animHeadPos,
inClothing.hat->clothingOffset );
if( inFlipH ) {
cPos.x *= -1;
}
cPos = add( cPos, inPos );
drawObject( inClothing.hat, 2, cPos, inRot, true,
inFlipH, -1, 0, false, false, emptyClothing );
}
return returnHoldingPos;
}
HoldingPos drawObject( ObjectRecord *inObject, doublePair inPos, double inRot,
char inWorn, char inFlipH, double inAge,
int inHideClosestArm,
char inHideAllLimbs,
char inHeldNotInPlaceYet,
ClothingSet inClothing,
int inNumContained, int *inContainedIDs,
SimpleVector<int> *inSubContained ) {
drawObject( inObject, 0, inPos, inRot, inWorn, inFlipH, inAge,
inHideClosestArm,
inHideAllLimbs,
inHeldNotInPlaceYet,
inClothing );
int numSlots = getNumContainerSlots( inObject->id );
if( inNumContained > numSlots ) {
inNumContained = numSlots;
}
for( int i=0; i<inNumContained; i++ ) {
ObjectRecord *contained = getObject( inContainedIDs[i] );
doublePair centerOffset = getObjectCenterOffset( contained );
double rot = inRot;
if( inObject->slotVert[i] ) {
double rotOffset = 0.25 + contained->vertContainRotationOffset;
if( inFlipH ) {
centerOffset = rotate( centerOffset, - rotOffset * 2 * M_PI );
rot -= rotOffset;
}
else {
centerOffset = rotate( centerOffset, - rotOffset * 2 * M_PI );
rot += rotOffset;
}
}
doublePair slotPos = sub( inObject->slotPos[i],
centerOffset );
if( inRot != 0 ) {
if( inFlipH ) {
slotPos = rotate( slotPos, 2 * M_PI * inRot );
}
else {
slotPos = rotate( slotPos, -2 * M_PI * inRot );
}
}
if( inFlipH ) {
slotPos.x *= -1;
}
doublePair pos = add( slotPos, inPos );
if( inSubContained != NULL &&
inSubContained[i].size() > 0 ) {
// behind sub-contained
drawObject( contained, 0, pos, rot, false, inFlipH, inAge,
0,
false,
false,
emptyClothing );
for( int s=0; s<contained->numSlots; s++ ) {
if( s < inSubContained[i].size() ) {
doublePair subPos = contained->slotPos[s];
ObjectRecord *subContained = getObject(
inSubContained[i].getElementDirect( s ) );
doublePair subCenterOffset =
getObjectCenterOffset( subContained );
double subRot = rot;
if( contained->slotVert[s] ) {
double rotOffset =
0.25 + subContained->vertContainRotationOffset;
if( inFlipH ) {
subCenterOffset =
rotate( subCenterOffset,
- rotOffset * 2 * M_PI );
subRot -= rotOffset;
}
else {
subCenterOffset =
rotate( subCenterOffset,
- rotOffset * 2 * M_PI );
subRot += rotOffset;
}
}
subPos = sub( subPos, subCenterOffset );
if( inFlipH ) {
subPos.x *= -1;
}
if( rot != 0 ) {
subPos = rotate( subPos, -2 * M_PI * rot );
}
subPos = add( subPos, pos );
drawObject( subContained, 2, subPos, subRot,
false, inFlipH,
inAge, 0, false, false, emptyClothing );
}
}
// in front of sub-contained
drawObject( contained, 1, pos, rot, false, inFlipH, inAge,
0,
false,
false,
emptyClothing );
}
else {
// no sub-contained
// draw contained all at once
drawObject( contained, 2, pos, rot, false, inFlipH, inAge,
0,
false,
false,
emptyClothing );
}
}
return drawObject( inObject, 1, inPos, inRot, inWorn, inFlipH, inAge,
inHideClosestArm,
inHideAllLimbs,
inHeldNotInPlaceYet,
inClothing );
}
void deleteObjectFromBank( int inID ) {
File objectsDir( NULL, "objects" );
if( objectsDir.exists() && objectsDir.isDirectory() ) {
File *cacheFile = objectsDir.getChildFile( "cache.fcz" );
cacheFile->remove();
delete cacheFile;
char *fileName = autoSprintf( "%d.txt", inID );
File *objectFile = objectsDir.getChildFile( fileName );
objectFile->remove();
delete [] fileName;
delete objectFile;
}
freeObjectRecord( inID );
}
char isSpriteUsed( int inSpriteID ) {
for( int i=0; i<mapSize; i++ ) {
if( idMap[i] != NULL ) {
for( int s=0; s<idMap[i]->numSprites; s++ ) {
if( idMap[i]->sprites[s] == inSpriteID ) {
return true;
}
}
}
}
return false;
}
char isSoundUsedByObject( int inSoundID ) {
for( int i=0; i<mapSize; i++ ) {
if( idMap[i] != NULL ) {
if( doesUseSound( idMap[i]->creationSound, inSoundID ) ||
doesUseSound( idMap[i]->usingSound, inSoundID ) ||
doesUseSound( idMap[i]->eatingSound, inSoundID ) ||
doesUseSound( idMap[i]->decaySound, inSoundID ) ) {
return true;
}
}
}
return false;
}
int getRandomPersonObject() {
if( personObjectIDs.size() == 0 ) {
return -1;
}
return personObjectIDs.getElementDirect(
randSource.getRandomBoundedInt( 0,
personObjectIDs.size() - 1 ) );
}
int getRandomFemalePersonObject() {
if( femalePersonObjectIDs.size() == 0 ) {
return -1;
}
return femalePersonObjectIDs.getElementDirect(
randSource.getRandomBoundedInt( 0,
femalePersonObjectIDs.size() - 1 ) );
}
int *getRaces( int *outNumRaces ) {
*outNumRaces = raceList.size();
return raceList.getElementArray();
}
int getRandomPersonObjectOfRace( int inRace ) {
if( inRace > MAX_RACE ) {
inRace = MAX_RACE;
}
if( racePersonObjectIDs[ inRace ].size() == 0 ) {
return -1;
}
return racePersonObjectIDs[ inRace ].getElementDirect(
randSource.getRandomBoundedInt(
0,
racePersonObjectIDs[ inRace ].size() - 1 ) );
}
int getRandomFamilyMember( int inRace, int inMotherID, int inFamilySpan ) {
if( inRace > MAX_RACE ) {
inRace = MAX_RACE;
}
if( racePersonObjectIDs[ inRace ].size() == 0 ) {
return -1;
}
int motherIndex =
racePersonObjectIDs[ inRace ].getElementIndex( inMotherID );
if( motherIndex == -1 ) {
return getRandomPersonObjectOfRace( inRace );
}
// never have offset 0, so we can't ever have ourself as a baby
int offset = randSource.getRandomBoundedInt( 1, inFamilySpan );
if( randSource.getRandomBoolean() ) {
offset = -offset;
}
int familyIndex = motherIndex + offset;
while( familyIndex >= racePersonObjectIDs[ inRace ].size() ) {
familyIndex -= racePersonObjectIDs[ inRace ].size();
}
while( familyIndex < 0 ) {
familyIndex += racePersonObjectIDs[ inRace ].size();
}
return racePersonObjectIDs[ inRace ].getElementDirect( familyIndex );
}
int getNextPersonObject( int inCurrentPersonObjectID ) {
if( personObjectIDs.size() == 0 ) {
return -1;
}
int numPeople = personObjectIDs.size();
for( int i=0; i<numPeople - 1; i++ ) {
if( personObjectIDs.getElementDirect( i ) ==
inCurrentPersonObjectID ) {
return personObjectIDs.getElementDirect( i + 1 );
}
}
return personObjectIDs.getElementDirect( 0 );
}
int getPrevPersonObject( int inCurrentPersonObjectID ) {
if( personObjectIDs.size() == 0 ) {
return -1;
}
int numPeople = personObjectIDs.size();
for( int i=1; i<numPeople; i++ ) {
if( personObjectIDs.getElementDirect( i ) ==
inCurrentPersonObjectID ) {
return personObjectIDs.getElementDirect( i - 1 );
}
}
return personObjectIDs.getElementDirect( numPeople - 1 );
}
int getRandomDeathMarker() {
if( deathMarkerObjectIDs.size() == 0 ) {
return -1;
}
return deathMarkerObjectIDs.getElementDirect(
randSource.getRandomBoundedInt( 0,
deathMarkerObjectIDs.size() - 1 ) );
}
ObjectRecord **getAllObjects( int *outNumResults ) {
SimpleVector<ObjectRecord *> records;
for( int i=0; i<mapSize; i++ ) {
if( idMap[i] != NULL ) {
records.push_back( idMap[i] );
}
}
*outNumResults = records.size();
return records.getElementArray();
}
ClothingSet getEmptyClothingSet() {
return emptyClothing;
}
static ObjectRecord **clothingPointerByIndex( ClothingSet *inSet,
int inIndex ) {
switch( inIndex ) {
case 0:
return &( inSet->hat );
case 1:
return &( inSet->tunic );
case 2:
return &( inSet->frontShoe );
case 3:
return &( inSet->backShoe );
case 4:
return &( inSet->bottom );
case 5:
return &( inSet->backpack );
}
return NULL;
}
ObjectRecord *clothingByIndex( ClothingSet inSet, int inIndex ) {
ObjectRecord **pointer = clothingPointerByIndex( &inSet, inIndex );
if( pointer != NULL ) {
return *( pointer );
}
return NULL;
}
void setClothingByIndex( ClothingSet *inSet, int inIndex,
ObjectRecord *inClothing ) {
ObjectRecord **pointer = clothingPointerByIndex( inSet, inIndex );
*pointer = inClothing;
}
ObjectRecord *getClothingAdded( ClothingSet *inOldSet,
ClothingSet *inNewSet ) {
for( int i=0; i<=5; i++ ) {
ObjectRecord *oldC =
clothingByIndex( *inOldSet, i );
ObjectRecord *newC =
clothingByIndex( *inNewSet, i );
if( newC != NULL &&
newC != oldC ) {
return newC;
}
}
return NULL;
}
char checkSpriteAncestor( ObjectRecord *inObject, int inChildIndex,
int inPossibleAncestorIndex ) {
int nextParent = inChildIndex;
while( nextParent != -1 && nextParent != inPossibleAncestorIndex ) {
nextParent = inObject->spriteParent[nextParent];
}
if( nextParent == inPossibleAncestorIndex ) {
return true;
}
return false;
}
int getMaxDiameter( ObjectRecord *inObject ) {
int maxD = 0;
for( int i=0; i<inObject->numSprites; i++ ) {
doublePair pos = inObject->spritePos[i];
int rad = getSpriteRecord( inObject->sprites[i] )->maxD / 2;
int xR = lrint( fabs( pos.x ) + rad );
int yR = lrint( fabs( pos.y ) + rad );
int xD = 2 * xR;
int yD = 2 * yR;
if( xD > maxD ) {
maxD = xD;
}
if( yD > maxD ) {
maxD = yD;
}
}
return maxD;
}
int getObjectHeight( int inObjectID ) {
ObjectRecord *o = getObject( inObjectID );
if( o == NULL ) {
return 0;
}
if( o->cachedHeight == -1 ) {
o->cachedHeight =
recomputeObjectHeight( o->numSprites, o->sprites, o->spritePos );
}
return o->cachedHeight;
}
int recomputeObjectHeight( int inNumSprites, int *inSprites,
doublePair *inSpritePos ) {
double maxH = 0;
for( int i=0; i<inNumSprites; i++ ) {
doublePair pos = inSpritePos[i];
SpriteRecord *spriteRec = getSpriteRecord( inSprites[i] );
int rad = 0;
// don't count transparent sprites as part of height
if( spriteRec != NULL && ! spriteRec->multiplicativeBlend ) {
char hit = false;
if( spriteRec->hitMap != NULL ) {
int h = spriteRec->h;
int w = spriteRec->w;
char *hitMap = spriteRec->hitMap;
for( int y=0; y<h; y++ ) {
for( int x=0; x<w; x++ ) {
int p = y * spriteRec->w + x;
if( hitMap[p] ) {
hit = true;
// can be negative if anchor above top
// pixel
rad =
( h/2 + spriteRec->centerAnchorYOffset )
- y;
break;
}
}
if( hit ) {
break;
}
}
}
else {
rad = spriteRec->h / 2;
}
}
double h = pos.y + rad;
if( h > maxH ) {
maxH = h;
}
}
int returnH = lrint( maxH );
return returnH;
}
double getClosestObjectPart( ObjectRecord *inObject,
ClothingSet *inClothing,
SimpleVector<int> *inContained,
SimpleVector<int> *inClothingContained,
char inWorn,
double inAge,
int inPickedLayer,
char inFlip,
float inXCenterOffset, float inYCenterOffset,
int *outSprite,
int *outClothing,
int *outSlot,
char inConsiderTransparent,
char inConsiderEmptySlots ) {
doublePair pos = { inXCenterOffset, inYCenterOffset };
*outSprite = -1;
*outClothing = -1;
*outSlot = -1;
doublePair headPos = {0,0};
int headIndex = getHeadIndex( inObject, inAge );
if( headIndex < inObject->numSprites ) {
headPos = inObject->spritePos[ headIndex ];
}
doublePair frontFootPos = {0,0};
int frontFootIndex = getFrontFootIndex( inObject, inAge );
if( frontFootIndex < inObject->numSprites ) {
frontFootPos =
inObject->spritePos[ frontFootIndex ];
}
doublePair backFootPos = {0,0};
int backFootIndex = getBackFootIndex( inObject, inAge );
if( backFootIndex < inObject->numSprites ) {
backFootPos =
inObject->spritePos[ backFootIndex ];
}
doublePair bodyPos = {0,0};
int bodyIndex = getBodyIndex( inObject, inAge );
if( bodyIndex < inObject->numSprites ) {
bodyPos = inObject->spritePos[ bodyIndex ];
}
int backArmTopIndex = getBackArmTopIndex( inObject, inAge );
char tunicChecked = false;
char hatChecked = false;
AnimationRecord *a = NULL;
if( inWorn ) {
a = getAnimation( inObject->id, held );
}
for( int i=inObject->numSprites-1; i>=0; i-- ) {
// first check for clothing that is above this part
// (array because 3 pieces of clothing attached to body)
ObjectRecord *cObj[3] = { NULL, NULL, NULL };
int cObjIndex[3] = { -1, -1, -1 };
doublePair cObjBodyPartPos[3];
if( inClothing != NULL ) {
if( i <= inObject->numSprites - 1 && !hatChecked ) {
// hat above everything
cObj[0] = inClothing->hat;
cObjIndex[0] = 0;
cObjBodyPartPos[0] = add( headPos,
getAgeHeadOffset( inAge, headPos,
bodyPos,
frontFootPos ) );
if( checkSpriteAncestor( inObject, headIndex, bodyIndex ) ) {
cObjBodyPartPos[0] = add( cObjBodyPartPos[0],
getAgeBodyOffset( inAge,
bodyPos ) );
}
hatChecked = true;
}
else if( i < backArmTopIndex && ! tunicChecked ) {
// bottom, tunic, and backpack behind back arm
cObj[0] = inClothing->backpack;
cObjIndex[0] = 5;
cObjBodyPartPos[0] = add( bodyPos,
getAgeBodyOffset( inAge, bodyPos ) );
cObj[1] = inClothing->tunic;
cObjIndex[1] = 1;
cObjBodyPartPos[1] = add( bodyPos,
getAgeBodyOffset( inAge, bodyPos ) );
cObj[2] = inClothing->bottom;
cObjIndex[2] = 4;
cObjBodyPartPos[2] = add( bodyPos,
getAgeBodyOffset( inAge, bodyPos ) );
tunicChecked = true;
}
else if( i == frontFootIndex ) {
cObj[0] = inClothing->frontShoe;
cObjIndex[0] = 2;
cObjBodyPartPos[0] = frontFootPos;
}
else if( i == backFootIndex ) {
cObj[0] = inClothing->backShoe;
cObjIndex[0] = 3;
cObjBodyPartPos[0] = backFootPos;
}
}
for( int c=0; c<3; c++ ) {
if( cObj[c] != NULL ) {
int sp, cl, sl;
doublePair clothingOffset = cObj[c]->clothingOffset;
if( inFlip ) {
clothingOffset.x *= -1;
cObjBodyPartPos[c].x *= -1;
}
doublePair cSpritePos = add( cObjBodyPartPos[c],
clothingOffset );
doublePair cOffset = sub( pos, cSpritePos );
SimpleVector<int> *clothingCont = NULL;
if( inClothingContained != NULL ) {
clothingCont = &( inClothingContained[ cObjIndex[c] ] );
}
double dist = getClosestObjectPart( cObj[c],
NULL,
clothingCont,
NULL,
// clothing is worn
// on body currently
true,
-1,
-1,
inFlip,
cOffset.x, cOffset.y,
&sp, &cl, &sl,
inConsiderTransparent );
if( sp != -1 ) {
*outClothing = cObjIndex[c];
break;
}
else if( sl != -1 && dist == 0 ) {
*outClothing = cObjIndex[c];
*outSlot = sl;
break;
}
}
}
if( *outClothing != -1 ) {
break;
}
// clothing not hit, check sprite layer
doublePair thisSpritePos = inObject->spritePos[i];
if( inObject->person ) {
if( ! isSpriteVisibleAtAge( inObject, i, inAge ) ) {
if( i != inPickedLayer ) {
// invisible, don't let them pick it
continue;
}
}
if( i == headIndex ||
checkSpriteAncestor( inObject, i,
headIndex ) ) {
thisSpritePos = add( thisSpritePos,
getAgeHeadOffset( inAge, headPos,
bodyPos,
frontFootPos ) );
}
if( i == bodyIndex ||
checkSpriteAncestor( inObject, i,
bodyIndex ) ) {
thisSpritePos = add( thisSpritePos,
getAgeBodyOffset( inAge, bodyPos ) );
}
}
if( inFlip ) {
thisSpritePos.x *= -1;
}
doublePair offset = sub( pos, thisSpritePos );
SpriteRecord *sr = getSpriteRecord( inObject->sprites[i] );
if( !inConsiderTransparent &&
sr->multiplicativeBlend ){
// skip this transparent sprite
continue;
}
if( inObject->clothing != 'n' ) {
if( inObject->spriteInvisibleWhenWorn[i] != 0 ) {
if( inWorn && inObject->spriteInvisibleWhenWorn[i] == 1 ) {
// this layer invisible when worn
continue;
}
else if( ! inWorn &&
inObject->spriteInvisibleWhenWorn[i] == 2 ) {
// this layer invisible when NOT worn
continue;
}
}
}
if( inFlip ) {
offset = rotate( offset, -2 * M_PI * inObject->spriteRot[i] );
}
else {
offset = rotate( offset, 2 * M_PI * inObject->spriteRot[i] );
}
if( a != NULL ) {
// apply simplified version of animation
// a still snapshot at t=0 (only look at phases)
// this also ignores parent relationships for now
// however, since this only applies for worn clothing, and trying
// to make worn clothing properly clickable when it has a held
// rotation, it will work most of the time, since most clothing
// has one sprite, and for multi-sprite clothing, this should
// at least capture the rotation of the largest sprite
if( a->numSprites > i && a->spriteAnim[i].rotPhase != 0 ) {
doublePair rotCenter = a->spriteAnim[i].rotationCenterOffset;
if( inFlip ) {
rotCenter.x *= -1;
}
if( inObject->spriteRot[i] != 0 ) {
if( inFlip ) {
rotCenter =
rotate( rotCenter,
-2 * M_PI * inObject->spriteRot[i] );
}
else {
rotCenter =
rotate( rotCenter,
2 * M_PI * inObject->spriteRot[i] );
}
}
doublePair tempOffset =
sub( offset, rotCenter );
if( inFlip ) {
tempOffset =
rotate( tempOffset,
- a->spriteAnim[i].rotPhase * 2 * M_PI );
}
else {
tempOffset =
rotate( tempOffset,
a->spriteAnim[i].rotPhase * 2 * M_PI );
}
offset = add( tempOffset, rotCenter );
}
}
if( inObject->spriteHFlip[i] ) {
offset.x *= -1;
}
if( inFlip ) {
offset.x *= -1;
}
offset.x += sr->centerAnchorXOffset;
offset.y -= sr->centerAnchorYOffset;
if( getSpriteHit( inObject->sprites[i],
lrint( offset.x ),
lrint( offset.y ) ) ) {
*outSprite = i;
break;
}
}
double smallestDist = 9999999;
char closestBehindSlots = false;
if( *outSprite != -1 && inObject->spriteBehindSlots[ *outSprite ] ) {
closestBehindSlots = true;
}
if( ( *outSprite == -1 || closestBehindSlots )
&& *outClothing == -1 && *outSlot == -1 ) {
// consider slots
if( closestBehindSlots ) {
// consider only direct contianed
// object hits or slot placeholder hits
smallestDist = 16;
}
for( int i=inObject->numSlots-1; i>=0; i-- ) {
doublePair slotPos = inObject->slotPos[i];
if( inFlip ) {
slotPos.x *= -1;
}
if( inContained != NULL && i <inContained->size() ) {
ObjectRecord *contained =
getObject( inContained->getElementDirect( i ) );
doublePair centOffset = getObjectCenterOffset( contained );
if( inObject->slotVert[i] ) {
double rotOffset =
0.25 + contained->vertContainRotationOffset;
if( inFlip ) {
centOffset = rotate( centOffset,
- rotOffset * 2 * M_PI );
centOffset.x *= -1;
}
else {
centOffset = rotate( centOffset,
- rotOffset * 2 * M_PI );
}
}
else if( inFlip ) {
centOffset.x *= -1;
}
slotPos = sub( slotPos, centOffset );
doublePair slotOffset = sub( pos, slotPos );
if( inObject->slotVert[i] ) {
double rotOffset =
0.25 + contained->vertContainRotationOffset;
if( inFlip ) {
slotOffset = rotate( slotOffset,
- rotOffset * 2 * M_PI );
}
else {
slotOffset = rotate( slotOffset,
rotOffset * 2 * M_PI );
}
}
int sp, cl, sl;
getClosestObjectPart( contained,
NULL,
NULL,
NULL,
false,
-1,
-1,
inFlip,
slotOffset.x, slotOffset.y,
&sp, &cl, &sl,
inConsiderTransparent );
if( sp != -1 ) {
*outSlot = i;
smallestDist = 0;
break;
}
}
else if( inConsiderEmptySlots ) {
double dist = distance( pos, inObject->slotPos[i] );
if( dist < smallestDist ) {
*outSprite = -1;
*outSlot = i;
smallestDist = dist;
}
}
}
if( closestBehindSlots && smallestDist == 16 ) {
// hit no slot, stick with sprite behind
smallestDist = 0;
}
}
else{
smallestDist = 0;
}
return smallestDist;
}
// gets index of hands in no order by finding lowest two holders
static void getHandIndices( ObjectRecord *inObject, double inAge,
int *outHandOneIndex, int *outHandTwoIndex ) {
*outHandOneIndex = -1;
*outHandTwoIndex = -1;
double handOneY = 9999999;
double handTwoY = 9999999;
for( int i=0; i< inObject->numSprites; i++ ) {
if( inObject->spriteInvisibleWhenHolding[i] ) {
if( inObject->spriteAgeStart[i] != -1 ||
inObject->spriteAgeEnd[i] != -1 ) {
if( inAge < inObject->spriteAgeStart[i] ||
inAge >= inObject->spriteAgeEnd[i] ) {
// skip this layer
continue;
}
}
if( inObject->spritePos[i].y < handOneY ) {
*outHandTwoIndex = *outHandOneIndex;
handTwoY = handOneY;
*outHandOneIndex = i;
handOneY = inObject->spritePos[i].y;
}
else if( inObject->spritePos[i].y < handTwoY ) {
*outHandTwoIndex = i;
handTwoY = inObject->spritePos[i].y;
}
}
}
}
int getBackHandIndex( ObjectRecord *inObject,
double inAge ) {
int handOneIndex;
int handTwoIndex;
getHandIndices( inObject, inAge, &handOneIndex, &handTwoIndex );
if( handOneIndex != -1 ) {
if( handTwoIndex != -1 ) {
if( inObject->spritePos[handOneIndex].x <
inObject->spritePos[handTwoIndex].x ) {
return handOneIndex;
}
else {
return handTwoIndex;
}
}
else {
return handTwoIndex;
}
}
else {
return -1;
}
}
int getFrontHandIndex( ObjectRecord *inObject,
double inAge ) {
int handOneIndex;
int handTwoIndex;
getHandIndices( inObject, inAge, &handOneIndex, &handTwoIndex );
if( handOneIndex != -1 ) {
if( handTwoIndex != -1 ) {
if( inObject->spritePos[handOneIndex].x >
inObject->spritePos[handTwoIndex].x ) {
return handOneIndex;
}
else {
return handTwoIndex;
}
}
else {
return handTwoIndex;
}
}
else {
return -1;
}
}
static void getLimbIndices( ObjectRecord *inObject,
double inAge, SimpleVector<int> *outList,
int inHandOrFootIndex ) {
if( inHandOrFootIndex == -1 ) {
return;
}
int nextLimbPart = inHandOrFootIndex;
while( nextLimbPart != -1 && ! inObject->spriteIsBody[ nextLimbPart ] ) {
outList->push_back( nextLimbPart );
nextLimbPart = inObject->spriteParent[ nextLimbPart ];
}
}
void getFrontArmIndices( ObjectRecord *inObject,
double inAge, SimpleVector<int> *outList ) {
getLimbIndices( inObject, inAge, outList,
getFrontHandIndex( inObject, inAge ) );
}
void getBackArmIndices( ObjectRecord *inObject,
double inAge, SimpleVector<int> *outList ) {
getLimbIndices( inObject, inAge, outList,
getBackHandIndex( inObject, inAge ) );
}
int getBackArmTopIndex( ObjectRecord *inObject, double inAge ) {
SimpleVector<int> list;
getBackArmIndices( inObject, inAge, &list );
if( list.size() > 0 ) {
return list.getElementDirect( list.size() - 1 );
}
else {
return -1;
}
}
void getAllLegIndices( ObjectRecord *inObject,
double inAge, SimpleVector<int> *outList ) {
getLimbIndices( inObject, inAge, outList,
getBackFootIndex( inObject, inAge ) );
getLimbIndices( inObject, inAge, outList,
getFrontFootIndex( inObject, inAge ) );
if( outList->size() >= 2 ) {
int bodyIndex = getBodyIndex( inObject, inAge );
// add shadows to list, which we can find based on
// being lower than body and having no parent
doublePair bodyPos = inObject->spritePos[ bodyIndex ];
for( int i=0; i<inObject->numSprites; i++ ) {
if( outList->getElementIndex( i ) == -1 ) {
if( bodyPos.y > inObject->spritePos[i].y &&
inObject->spriteParent[i] == -1 ) {
outList->push_back( i );
}
}
}
}
}
char isSpriteVisibleAtAge( ObjectRecord *inObject,
int inSpriteIndex,
double inAge ) {
if( inObject->spriteAgeStart[inSpriteIndex] != -1 ||
inObject->spriteAgeEnd[inSpriteIndex] != -1 ) {
if( inAge < inObject->spriteAgeStart[inSpriteIndex] ||
inAge >= inObject->spriteAgeEnd[inSpriteIndex] ) {
return false;
}
}
return true;
}
static int getBodyPartIndex( ObjectRecord *inObject,
char *inBodyPartFlagArray,
double inAge ) {
for( int i=0; i< inObject->numSprites; i++ ) {
if( inBodyPartFlagArray[i] ) {
if( ! isSpriteVisibleAtAge( inObject, i, inAge ) ) {
// skip this layer
continue;
}
return i;
}
}
// default
// don't return -1 here, so it can be blindly used as an index
return 0;
}
int getHeadIndex( ObjectRecord *inObject,
double inAge ) {
return getBodyPartIndex( inObject, inObject->spriteIsHead, inAge );
}
int getBodyIndex( ObjectRecord *inObject,
double inAge ) {
return getBodyPartIndex( inObject, inObject->spriteIsBody, inAge );
}
int getBackFootIndex( ObjectRecord *inObject,
double inAge ) {
return getBodyPartIndex( inObject, inObject->spriteIsBackFoot, inAge );
}
int getFrontFootIndex( ObjectRecord *inObject,
double inAge ) {
return getBodyPartIndex( inObject, inObject->spriteIsFrontFoot, inAge );
}
char *getBiomesString( ObjectRecord *inObject ) {
SimpleVector <char>stringBuffer;
for( int i=0; i<inObject->numBiomes; i++ ) {
if( i != 0 ) {
stringBuffer.push_back( ',' );
}
char *intString = autoSprintf( "%d", inObject->biomes[i] );
stringBuffer.appendElementString( intString );
delete [] intString;
}
return stringBuffer.getElementString();
}
int compareBiomeInt( const void *inA, const void *inB ) {
int *a = (int*)inA;
int *b = (int*)inB;
if( *a > *b ) {
return 1;
}
if( *a < *b ) {
return -1;
}
return 0;
}
static SimpleVector<int> biomeCache;
void getAllBiomes( SimpleVector<int> *inVectorToFill ) {
if( biomeCache.size() == 0 ) {
for( int i=0; i<mapSize; i++ ) {
if( idMap[i] != NULL ) {
for( int j=0; j< idMap[i]->numBiomes; j++ ) {
int b = idMap[i]->biomes[j];
if( biomeCache.getElementIndex( b ) == -1 ) {
biomeCache.push_back( b );
}
}
}
}
// now sort it
int *a = biomeCache.getElementArray();
int num = biomeCache.size();
qsort( a, num, sizeof(int), compareBiomeInt );
biomeCache.deleteAll();
biomeCache.appendArray( a, num );
delete [] a;
}
for( int i=0; i<biomeCache.size(); i++ ) {
inVectorToFill->push_back( biomeCache.getElementDirect( i ) );
}
}
doublePair getObjectCenterOffset( ObjectRecord *inObject ) {
// find center of widest sprite
SpriteRecord *widestRecord = NULL;
int widestIndex = -1;
int widestWidth = 0;
double widestYPos = 0;
for( int i=0; i<inObject->numSprites; i++ ) {
SpriteRecord *sprite = getSpriteRecord( inObject->sprites[i] );
if( sprite->multiplicativeBlend ) {
// don't consider translucent sprites when computing wideness
continue;
}
int w = sprite->visibleW;
double rot = inObject->spriteRot[i];
if( rot != 0 ) {
double rotAbs = fabs( rot );
// just the fractional part
rotAbs -= floor( rotAbs );
if( rotAbs == 0.25 || rotAbs == 0.75 ) {
w = sprite->visibleH;
}
}
if( widestRecord == NULL ||
// wider than what we've seen so far
w > widestWidth ||
// or tied for wideness, and lower
( w == widestWidth &&
inObject->spritePos[i].y < widestYPos ) ) {
widestRecord = sprite;
widestIndex = i;
widestWidth = w;
widestYPos = inObject->spritePos[i].y;
}
}
if( widestRecord == NULL ) {
doublePair result = { 0, 0 };
return result;
}
doublePair centerOffset = { (double)widestRecord->centerXOffset,
(double)widestRecord->centerYOffset };
centerOffset = rotate( centerOffset,
2 * M_PI * inObject->spriteRot[widestIndex] );
doublePair spriteCenter = add( inObject->spritePos[widestIndex],
centerOffset );
return spriteCenter;
}
int getMaxWideRadius() {
return maxWideRadius;
}
char isSpriteSubset( int inSuperObjectID, int inSubObjectID ) {
ObjectRecord *superO = getObject( inSuperObjectID );
ObjectRecord *subO = getObject( inSubObjectID );
if( superO == NULL || subO == NULL ) {
return false;
}
if( subO->numSprites == 0 ) {
return true;
}
// allow global position adjustments, as long as all sub-sprites in same
// relative position to each other
int spriteSubSeroID = subO->sprites[0];
doublePair spriteSubZeroPos = subO->spritePos[0];
doublePair spriteSuperZeroPos;
// find zero sprite in super
char found = false;
for( int ss=0; ss<superO->numSprites; ss++ ) {
if( superO->sprites[ ss ] == spriteSubSeroID ) {
found = true;
spriteSuperZeroPos = superO->spritePos[ ss ];
break;
}
}
if( !found ) {
return false;
}
for( int s=0; s<subO->numSprites; s++ ) {
int spriteID = subO->sprites[s];
doublePair spritePosRel = sub( subO->spritePos[s],
spriteSubZeroPos );
double spriteRot = subO->spriteRot[s];
char spriteHFlip = subO->spriteHFlip[s];
// ignore sprite color for now
//FloatRGB spriteColor = subO->spriteColor[s];
char found = false;
for( int ss=0; ss<superO->numSprites; ss++ ) {
if( superO->sprites[ ss ] == spriteID &&
equal( sub( superO->spritePos[ ss ],
spriteSuperZeroPos ), spritePosRel ) &&
superO->spriteRot[ ss ] == spriteRot &&
superO->spriteHFlip[ ss ] == spriteHFlip
/* &&
equal( superO->spriteColor[ ss ], spriteColor ) */ ) {
found = true;
break;
}
}
if( !found ) {
return false;
}
}
return true;
}
char equal( FloatRGB inA, FloatRGB inB ) {
return
inA.r == inB.r &&
inA.g == inB.g &&
inA.b == inB.b;
}
void getArmHoldingParameters( ObjectRecord *inHeldObject,
int *outHideClosestArm,
char *outHideAllLimbs ) {
*outHideClosestArm = 0;
*outHideAllLimbs = false;
if( inHeldObject != NULL ) {
if( inHeldObject->heldInHand ) {
*outHideClosestArm = 0;
}
else if( inHeldObject->rideable ) {
*outHideClosestArm = 0;
*outHideAllLimbs = true;
}
else {
// try hiding no arms, but freezing them instead
// -2 means body position still returned as held pos
// instead of hand pos
*outHideClosestArm = -2;
*outHideAllLimbs = false;
}
}
}
void computeHeldDrawPos( HoldingPos inHoldingPos, doublePair inPos,
ObjectRecord *inHeldObject,
char inFlipH,
doublePair *outHeldDrawPos, double *outHeldDrawRot ) {
doublePair holdPos;
double holdRot = 0;
if( inHoldingPos.valid ) {
holdPos = inHoldingPos.pos;
}
else {
holdPos = inPos;
}
if( inHeldObject != NULL ) {
doublePair heldOffset = inHeldObject->heldOffset;
if( !inHeldObject->person ) {
heldOffset = sub( heldOffset,
getObjectCenterOffset( inHeldObject ) );
}
if( inFlipH ) {
heldOffset.x *= -1;
}
if( inHoldingPos.valid && inHoldingPos.rot != 0 &&
! inHeldObject->rideable ) {
if( inFlipH ) {
heldOffset =
rotate( heldOffset,
2 * M_PI * inHoldingPos.rot );
}
else {
heldOffset =
rotate( heldOffset,
-2 * M_PI * inHoldingPos.rot );
}
if( inFlipH ) {
holdRot = -inHoldingPos.rot;
}
else {
holdRot = inHoldingPos.rot;
}
if( holdRot > 1 ) {
while( holdRot > 1 ) {
holdRot -= 1;
}
}
else if( holdRot < -1 ) {
while( holdRot < -1 ) {
holdRot += 1;
}
}
}
holdPos.x += heldOffset.x;
holdPos.y += heldOffset.y;
}
*outHeldDrawPos = holdPos;
*outHeldDrawRot = holdRot;
}
char bothSameUseParent( int inAObjectID, int inBObjectID ) {
ObjectRecord *a = getObject( inAObjectID );
ObjectRecord *b = getObject( inBObjectID );
if( a != NULL && b != NULL ) {
if( a->isUseDummy && b->isUseDummy ) {
if( a->useDummyParent == b->useDummyParent ) {
return true;
}
}
if( ! a->isUseDummy && b->isUseDummy ) {
return ( b->useDummyParent == inAObjectID );
}
if( a->isUseDummy && ! b->isUseDummy ) {
return ( a->useDummyParent == inBObjectID );
}
}
return false;
}
| [
"jasonrohrer@fastmail.fm"
] | jasonrohrer@fastmail.fm |
f1f0e55ebb1b4fd83b140cb9218ff57d9b5597b6 | 49dd898e87ca407e35a80c7b3e6a613d87296928 | /stepsequencer.ino | ac6d3d9f5c308848e075b31448c215a7627af2d0 | [] | no_license | mdsohn9/stepsequencer | 6af811daf2f9409367684fa690d21a56b43cfa2b | 31046e99f7d9fe24b2831bb86dbe5e724cc2b125 | refs/heads/master | 2020-03-07T01:45:11.731448 | 2018-03-28T20:07:05 | 2018-03-28T20:07:05 | 127,192,124 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,009 | ino | int buttonPin[5] = {8, 9, 10, 33, 34};
int ledPins[4] = {2, 3, 4, 5};
boolean lastButtonState[6] = {LOW, LOW, LOW, LOW, LOW, LOW};
boolean buttonState[6] = {LOW, LOW, LOW, LOW, LOW, LOW};
boolean stepState[3][4] = {
{false, false, false, false},
{false, false, false, false},
{false, false, false, false}
};
int tempo = 0;
int currentStep = 0;
unsigned long lastStepTime = 0;
int midiNote[3] = {35, 57, 63};
int currentChannel = 0;
void setup() {
Serial.begin(9600);
for (int i = 0; i <= 3; i++) {
pinMode(ledPins[i], OUTPUT);
}
for (int i = 0; i <= 5; i++) {
pinMode(buttonPin[i], INPUT);
}
}
void loop() {
Serial.println(currentChannel);
updateChannel();
sequence();
checkButtons();
setLeds();
}
void sequence() {
int mappedTempo;
tempo = analogRead(A5);
mappedTempo = map(tempo, 0, 1023, 10, 300);
if (millis() > lastStepTime + mappedTempo) { //if its time to go to the next step...
// digitalWrite(ledPins[currentStep], LOW); //turn off the current led
for (int i = 0; i < 3; i++) {
if (stepState[i][currentStep] == HIGH) {
usbMIDI.sendNoteOn(midiNote[i], 127, 1);
} else {
usbMIDI.sendNoteOff(midiNote[i], 0, 1);
}
}
currentStep = currentStep + 1; //increment to the next step
if (currentStep > 3) {
currentStep = 0;
}
// digitalWrite(ledPins[currentStep], HIGH); //turn on the new led
lastStepTime = millis(); //set lastStepTime to the current time
} while (usbMIDI.read()) {
}
}
void updateChannel() {
for (int i = 4; i <= 5; i++) {
lastButtonState[i] = buttonState[i];
buttonState[i] = digitalRead(buttonPin[i]);
if (buttonState[i] == HIGH && lastButtonState[i] == LOW) {
// up button code
if (i == 4) {
currentChannel++;
if (currentChannel > 2) {
currentChannel = 0;
}
}
// down button code
if (i == 5) {
currentChannel--;
if (currentChannel < 0) {
currentChannel = 2;
}
}
}
}
}
void checkButtons() {
for (int i = 0; i <= 3; i++) {
lastButtonState[i] = buttonState[i];
buttonState[i] = digitalRead(buttonPin[i]);
if (buttonState[i] == HIGH && lastButtonState[i] == LOW) {
if (stepState[currentChannel][i] == false) {
stepState[currentChannel][i] = true;
} else if (stepState[currentChannel][i] == true) {
stepState[currentChannel][i] = false;
}
}
}
}
/*
void setLeds() {
for (int i = 0; i <= 3; i++) {
if (stepState[i] == true) {
// digitalWrite(ledPins[i], HIGH);
} else if (stepState[i] == false) {
// digitalWrite(ledPins[i], LOW);
}
}
*/
void setLeds() {
for (int i = 0; i <= 3; i++) {
if (currentStep == i) {
analogWrite(ledPins[i], 255);
}
else if (stepState[currentChannel][i] == true) {
analogWrite(ledPins[i], 50);
}
else {
analogWrite(ledPins[i], 0);
}
}
}
| [
"ms9558@nyu.edu"
] | ms9558@nyu.edu |
d2ce075b4026bbe288c08342cd913b2f8d065fcd | 09ea1901af1caa0cd7a6977209c384e08278a371 | /code/Ardupilot/libraries/AP_HAL_AVR/Scheduler_Timer.cpp | e1f026e77d8ee7205c27520785fd1d91bd94ff89 | [] | no_license | sid1980/JAGUAR | e038e048a0542d7f3b67c480d27881f91ef42e4e | 2dc262fdc10a600335f71878e092265bc9da77c2 | refs/heads/master | 2021-12-03T05:19:44.367320 | 2014-05-01T23:21:27 | 2014-05-01T23:21:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,808 | cpp | #include <AP_HAL.h>
#if (CONFIG_HAL_BOARD == HAL_BOARD_APM1 || CONFIG_HAL_BOARD == HAL_BOARD_APM2)
#include <avr/io.h>
#include <avr/interrupt.h>
#include "Scheduler.h"
using namespace AP_HAL_AVR;
#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))
#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))
static volatile uint32_t timer0_overflow_count = 0;
static volatile uint32_t timer0_millis = 0;
static uint8_t timer0_fract = 0;
void AVRTimer::init() {
// this needs to be called before setup() or some functions won't
// work there
sei();
// set timer 0 prescale factor to 64
// this combination is for the standard 168/328/1280/2560
sbi(TCCR0B, CS01);
sbi(TCCR0B, CS00);
// enable timer 0 overflow interrupt
sbi(TIMSK0, TOIE0);
// timers 1 and 2 are used for phase-correct hardware pwm
// this is better for motors as it ensures an even waveform
// note, however, that fast pwm mode can achieve a frequency of up
// 8 MHz (with a 16 MHz clock) at 50% duty cycle
TCCR1B = 0;
// set timer 1 prescale factor to 64
sbi(TCCR1B, CS11);
sbi(TCCR1B, CS10);
// put timer 1 in 8-bit phase correct pwm mode
sbi(TCCR1A, WGM10);
sbi(TCCR3B, CS31); // set timer 3 prescale factor to 64
sbi(TCCR3B, CS30);
sbi(TCCR3A, WGM30); // put timer 3 in 8-bit phase correct pwm mode
sbi(TCCR4B, CS41); // set timer 4 prescale factor to 64
sbi(TCCR4B, CS40);
sbi(TCCR4A, WGM40); // put timer 4 in 8-bit phase correct pwm mode
sbi(TCCR5B, CS51); // set timer 5 prescale factor to 64
sbi(TCCR5B, CS50);
sbi(TCCR5A, WGM50); // put timer 5 in 8-bit phase correct pwm mode
// set a2d prescale factor to 128
// 16 MHz / 128 = 125 KHz, inside the desired 50-200 KHz range.
// XXX: this will not work properly for other clock speeds, and
// this code should use F_CPU to determine the prescale factor.
sbi(ADCSRA, ADPS2);
sbi(ADCSRA, ADPS1);
sbi(ADCSRA, ADPS0);
// enable a2d conversions
sbi(ADCSRA, ADEN);
// the bootloader connects pins 0 and 1 to the USART; disconnect them
// here so they can be used as normal digital i/o; they will be
// reconnected in Serial.begin()
UCSR0B = 0;
}
#define clockCyclesPerMicrosecond() ( F_CPU / 1000000L )
#define clockCyclesToMicroseconds(a) ( ((a) * 1000L) / (F_CPU / 1000L) )
// the prescaler is set so that timer0 ticks every 64 clock cycles, and the
// the overflow handler is called every 256 ticks.
#define MICROSECONDS_PER_TIMER0_OVERFLOW (clockCyclesToMicroseconds(64 * 256))
// the whole number of milliseconds per timer0 overflow
#define MILLIS_INC (MICROSECONDS_PER_TIMER0_OVERFLOW / 1000)
// the fractional number of milliseconds per timer0 overflow. we shift right
// by three to fit these numbers into a byte. (for the clock speeds we care
// about - 8 and 16 MHz - this doesn't lose precision.)
#define FRACT_INC ((MICROSECONDS_PER_TIMER0_OVERFLOW % 1000) >> 3)
#define FRACT_MAX (1000 >> 3)
SIGNAL(TIMER0_OVF_vect)
{
// copy these to local variables so they can be stored in registers
// (volatile variables must be read from memory on every access)
uint32_t m = timer0_millis;
uint8_t f = timer0_fract;
m += MILLIS_INC;
f += FRACT_INC;
if (f >= FRACT_MAX) {
f -= FRACT_MAX;
m += 1;
}
timer0_fract = f;
timer0_millis = m;
timer0_overflow_count++;
}
uint32_t AVRTimer::millis()
{
uint32_t m;
uint8_t oldSREG = SREG;
// disable interrupts while we read timer0_millis or we might get an
// inconsistent value (e.g. in the middle of a write to timer0_millis)
cli();
m = timer0_millis;
SREG = oldSREG;
return m;
}
uint32_t AVRTimer::micros() {
uint32_t m;
uint8_t t;
uint8_t oldSREG = SREG;
cli();
m = timer0_overflow_count;
t = TCNT0;
if ((TIFR0 & _BV(TOV0)) && (t < 255))
m++;
SREG = oldSREG;
return ((m << 8) + t) * (64 / clockCyclesPerMicrosecond());
}
/* Delay for the given number of microseconds. Assumes a 16 MHz clock. */
void AVRTimer::delay_microseconds(uint16_t us)
{
// for the 16 MHz clock on most Arduino boards
// for a one-microsecond delay, simply return. the overhead
// of the function call yields a delay of approximately 1 1/8 us.
if (--us == 0)
return;
// the following loop takes a quarter of a microsecond (4 cycles)
// per iteration, so execute it four times for each microsecond of
// delay requested.
us <<= 2;
// account for the time taken in the preceeding commands.
us -= 2;
// busy wait
__asm__ __volatile__ (
"1: sbiw %0,1" "\n\t" // 2 cycles
"brne 1b" : "=w" (us) : "0" (us) // 2 cycles
);
}
#endif
| [
"jonathan2@Jonathans-MacBook-Pro.local"
] | jonathan2@Jonathans-MacBook-Pro.local |
2f793363625870c7a26a00e2c36c1220f5a4ed80 | 3e629dc99de100aed68331b54e314dd8b0af8c85 | /NodeManager.h | 174e1ae6c22ce07ea32fb6f17b5c788610bef7fb | [] | no_license | AidanFok/MiniSQL | f868f4adc34b4deeeea370004c4c285b2572ea7f | ee68b80ad03a0996c1be832f302e13da8d2fe73c | refs/heads/master | 2021-01-20T20:57:38.091211 | 2016-08-02T15:40:48 | 2016-08-02T15:40:48 | 64,769,509 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,347 | h | #pragma once
#include "macros.h"
enum operationName
{
EMPTY,
OP_CREATE_TABLE,
OP_CREATE_INDEX,
OP_DROP_TABLE,
OP_DROP_INDEX,
OP_SELECT,
OP_INSERT,
OP_DELECT,
OP_SHOWTABLES,
OP_AND,
OP_OR,
CMP_EQ,
CMP_NEQ,
CMP_LT,
CMP_GT,
CMP_LE,
CMP_GE,
VAL_CHAR,
VAL_NUMBER,
VAL_NAME,
VAL_INT,
VAL_FLOAT,
DEF_UNIQUE,
DEF_PRIMARY,
DEF_SINGLE_PRIMARY
};
typedef struct node
{
node *leftSon;
node *rightSon;
// simultaneous
int operation;
// data, in val_list of creating,
// numval stores the len of char.
// (1 <= n <=255)
char *strval;
double numval;
} Node;
class NodeManager
{
private:
// Do not use unique ptr
// For a single line, multiple queries
// may generate more than one AST.
//
std::vector<Node*> m_manageRoot;
// Storing ALL of the node, simplifies
// the management of memory.
std::vector<Node*> m_manageArray;
public:
NodeManager();
~NodeManager();
Node* newEmptyNode();
Node* newCopyDataNode(Node* data);
void setRootNode(Node* root);
Node* getRootNode(size_t pos) const;
// v: delete the last unfinished node,
// v: for error processing in yyparse
void delLastRootNode();
const std::vector<Node*>& getRootTree() const;
size_t getRootTreeSize() const;
void clean();
};
| [
"394069071@qq.com"
] | 394069071@qq.com |
d48df35388ff83128c9881119ef6b7f62274d8b8 | 12c47aa3209534787ae0d5532e16a7e9a17cbccd | /trunk/3rd/dbgme/include/xmlConfKit/xmlParserHelper.h | de4bb7c86b0a58e163a4d28232466c87de62909b | [
"BSD-2-Clause"
] | permissive | scofieldzhu/blackconfigurator | 25c4d644e70223582909d21c2fcb69576ad38913 | a035d8fe242860da9ae98b09d331a13633e6aa1a | refs/heads/master | 2021-01-10T04:07:30.451868 | 2015-12-16T13:35:03 | 2015-12-16T13:35:03 | 46,601,185 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 447 | h | #ifndef __XML_PARSER_HELPER_H__
#define __XML_PARSER_HELPER_H__
#include "xmlClsNodeParserLodge.h"
DGR2_NP_BEGIN
namespace LotsOfKeyNodes
{
extern DGR2_API const xCharT* ROOT;
extern DGR2_API const xCharT* LOGGER;
extern DGR2_API const xCharT* FILTER;
extern DGR2_API const xCharT* APPENDER;
extern DGR2_API const xCharT* FORMATTER;
}
namespace LotsOfKeyAttrs
{
extern DGR2_API const xCharT* CLS_ATTR;
}
NP_END
#endif | [
"scofieldzhu@ymail.com"
] | scofieldzhu@ymail.com |
040c12a344f5e317aeae37cf85e094a701138e1b | 0a1be59f55b359866370c2815671af22bd96ff51 | /dependencies/skse64/src/skse64/CommonLibSSE/include/RE/ExtraRoom.h | e495e37739c8e466013c7a2bbf71129bcb70ca36 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | joelday/papyrus-debug-server | ba18b18d313a414daefdf0d3472b60a12ca21385 | f5c3878cd485ba68aaadf39bb830ca88bf53bfff | refs/heads/master | 2023-01-12T14:34:52.919190 | 2019-12-06T18:41:39 | 2019-12-06T18:41:39 | 189,772,905 | 15 | 10 | MIT | 2022-12-27T11:31:04 | 2019-06-01T20:02:31 | C++ | UTF-8 | C++ | false | false | 636 | h | #pragma once
#include "skse64/GameRTTI.h" // RTTI_ExtraRoom
#include "RE/BSExtraData.h" // BSExtraData
#include "RE/ExtraDataTypes.h" // ExtraDataType
#include "RE/NiSmartPointer.h" // NiPointer
namespace RE
{
class NiRefObject;
class ExtraRoom : public BSExtraData
{
public:
inline static const void* RTTI = RTTI_ExtraRoom;
enum { kExtraTypeID = ExtraDataType::kRoom };
virtual ~ExtraRoom(); // 00
// override (BSExtraData)
virtual ExtraDataType GetType() const override; // 01 - { return kRoom; }
// members
NiPointer<NiRefObject> unk10; // 10
};
STATIC_ASSERT(sizeof(ExtraRoom) == 0x18);
}
| [
"joelday@gmail.com"
] | joelday@gmail.com |
6e11d46cfe54a8c622c02339307fb7652b176822 | 229116ff4296a824f50c40f222d953c4148c8024 | /PCViewer/Elaboration/filters_downsampling.cpp | 52ac14220cd6e7957f90fc01ace2a6bfe2034d52 | [] | no_license | xijunke/VisualInertialKinectFusion | 51e22f234963b7343bdd8cfb98fe88ed3c39599b | 610910dca00e9ffe6b0844411f9479d2a15a4b1b | refs/heads/master | 2021-10-09T10:35:13.905499 | 2018-12-26T11:10:30 | 2018-12-26T11:10:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,381 | cpp | #include "filters_downsampling.h"
#include "ui_filters_downsampling.h"
Filters_Downsampling::Filters_Downsampling(QWidget *parent) :
QWidget(parent), ui(new Ui::Filters_Downsampling)
{
ui->setupUi(this);
// myCorrespondenceEstimation.reset(new pcl::registration::CorrespondenceEstimation<PointT, PointT>);
}
Filters_Downsampling::~Filters_Downsampling()
{
delete ui;
}
using namespace std;
//TODO : ADD NORMALSPACE / COVARIANCE / ISS3D
PointCloudT::Ptr Filters_Downsampling::downsample(PointCloudT::Ptr Input)
{
PointCloudT::Ptr Output(new PointCloudT);
if ( ui->DownSampling_RandomSampling->isChecked() )
{
float decimate_percent = ui->DownSampling_Random_Percent->value()/100.0;
pcl::RandomSample<PointT> random_sampler;
random_sampler.setInputCloud(Input);
random_sampler.setSample((int) (decimate_percent*Input->points.size()));
random_sampler.setKeepOrganized(false);
random_sampler.filter(*Output);
}
else if ( ui->DownSampling_VoxelGrid->isChecked() )
{
pcl::VoxelGrid<PointT> sor;
sor.setLeafSize (ui->DownSampling_VoxelGrid_Leaf->value(), ui->DownSampling_VoxelGrid_Leaf->value(), ui->DownSampling_VoxelGrid_Leaf->value());
sor.setInputCloud (Input);
sor.filter (*Output);
}
else if ( ui->Keypoint_SIFT3D->isChecked() )
{
DetectSIFT(Input,Output);
}
else if ( ui->Keypoint_AGAST->isChecked() )
{
DetectAGAST(Input, Output, ui->Keypoint_AGAST_Threshold->value());
}
else if ( ui->Keypoint_BRISK->isChecked() )
{
DetectBRISK(Input, Output, ui->Keypoint_BRISK_Threshold->value(), ui->Keypoint_BRISK_Octave->value());
}
else if ( ui->Keypoint_BRISKQuad->isChecked() )
{
DetectBRISKQuad(Input, Output, ui->Keypoint_BRISK_Threshold->value(), ui->Keypoint_BRISK_Octave->value());
}
else
{
pcl::copyPointCloud( *Input, *Output );
std::vector<int> ind;
pcl::removeNaNFromPointCloud(*Output, *Output,ind);
}
Output->sensor_orientation_ = Input->sensor_orientation_;
Output->sensor_origin_ = Input->sensor_origin_;
return Output;
}
//*******************//
//*** DETECTORS ***//
//*******************//
void Filters_Downsampling::DetectBRISK(PointCloudT::Ptr input, PointCloudT::Ptr output, int paramThreshold, int octave)
{
std::cout << "BRISK Detector...";
QTime t;
t.start();
// constructor
pcl::BriskKeypoint2D<PointT> brisk_keypoint_estimation;
//output
pcl::PointCloud<pcl::PointWithScale> brisk_keypoints_2D;
//parameters
brisk_keypoint_estimation.setThreshold(paramThreshold);
brisk_keypoint_estimation.setOctaves(octave);
brisk_keypoint_estimation.setInputCloud (input);
//compute
brisk_keypoint_estimation.compute (brisk_keypoints_2D);
//convert pointwithscale to 3D
output->resize(brisk_keypoints_2D.size());
int k = brisk_keypoints_2D.size();
for(int i = 0, j = 0; i < k; ++i)
{
/// TO DO: improve accuracy
int u = floor(brisk_keypoints_2D.points[i].x + 0.5);
int v = floor(brisk_keypoints_2D.points[i].y + 0.5);
j = u + v * input->width;
if(isnan(input->points[j].x))
{
--k;
}
else
{
output->points[i]=input->points[j];
/* output->points[i].b=input->points[j].b;
output->points[i].g=input->points[j].g;
output->points[i].r=input->points[j].r;
output->points[i].x=input->points[j].x;
output->points[i].y=input->points[j].y;
output->points[i].z=input->points[j].z;*/
}
}
std::vector<PointT,Eigen::aligned_allocator<PointT> >::iterator keypointIt=output->begin();
for(size_t i=k; k<brisk_keypoints_2D.size(); ++k)
output->erase(keypointIt+i);
pcl::PointIndices::Ptr indices (new pcl::PointIndices);
// Remove NAN from keypoints cloud
pcl::removeNaNFromPointCloud(*output, *output,indices->indices);
pcl::removeNaNNormalsFromPointCloud(*output, *output,indices->indices);
/* // remove 0 points
pcl::ConditionAnd<PointT>::Ptr range_cond (new pcl::ConditionAnd<PointT> ());
range_cond->addComparison (pcl::FieldComparison<PointT>::ConstPtr (new pcl::FieldComparison<PointT> ("z", pcl::ComparisonOps::GT, 0.1)));
// build the filter
pcl::ConditionalRemoval<PointT> condrem(true);
condrem.setCondition(range_cond);
condrem.setInputCloud (output);
condrem.setKeepOrganized(output->isOrganized());
condrem.filter (*output);
*/
std::cout << "DONE " << output->size() << " in " << t.elapsed() << std::endl;
}
void Filters_Downsampling::DetectBRISKQuad(PointCloudT::Ptr input, PointCloudT::Ptr output, int paramThreshold, int octave)
{
std::cout << "BRISK Detector...";
QTime t;
t.start();
// constructor
pcl::BriskKeypoint2D<PointT> brisk_keypoint_estimation;
//output
pcl::PointCloud<pcl::PointWithScale> brisk_keypoints_2D;
//parameters
brisk_keypoint_estimation.setThreshold(paramThreshold);
brisk_keypoint_estimation.setOctaves(octave);
brisk_keypoint_estimation.setInputCloud (input);
//compute
brisk_keypoint_estimation.compute (brisk_keypoints_2D);
//convert pointwithscale to 3D
output->resize(brisk_keypoints_2D.size());
int k = brisk_keypoints_2D.size();
for(int i = 0, j = 0; i < k; ++i)
{
int umin = floor(brisk_keypoints_2D.points[i].x);
int vmin = floor(brisk_keypoints_2D.points[i].y);
int umax = ceil(brisk_keypoints_2D.points[i].x);
int vmax = ceil(brisk_keypoints_2D.points[i].y);
double ures = brisk_keypoints_2D.points[i].x - floor(brisk_keypoints_2D.points[i].x);
double vres = brisk_keypoints_2D.points[i].y - floor(brisk_keypoints_2D.points[i].y);
PointT TL = input->points[umin + vmax * input->width];
PointT TR = input->points[umax + vmax * input->width];
PointT BL = input->points[umin + vmin * input->width];
PointT BR = input->points[umax + vmin * input->width];
double wTL = ures +(1-vres);
double wTR = (1-ures)+(1-vres);
double wBL = ures + vres;
double wBR = (1-ures)+ vres;
if(isnan(TL.x) || isnan(TR.x) || isnan(BL.x) || isnan(BR.x))
{
--k;
}
else
{
output->points[i].b = (wTL*TL.b + wTR*TR.b + wBL*BL.b + wBR*BR.b) / (wTL+wTR+wBL+wBR);
output->points[i].g = (wTL*TL.g + wTR*TR.g + wBL*BL.g + wBR*BR.g) / (wTL+wTR+wBL+wBR);
output->points[i].r = (wTL*TL.r + wTR*TR.r + wBL*BL.r + wBR*BR.r) / (wTL+wTR+wBL+wBR);
output->points[i].x = (wTL*TL.x + wTR*TR.x + wBL*BL.x + wBR*BR.x) / (wTL+wTR+wBL+wBR);
output->points[i].y = (wTL*TL.y + wTR*TR.y + wBL*BL.y + wBR*BR.y) / (wTL+wTR+wBL+wBR);
output->points[i].z = (wTL*TL.z + wTR*TR.z + wBL*BL.z + wBR*BR.z) / (wTL+wTR+wBL+wBR);
}
}
std::vector<PointT,Eigen::aligned_allocator<PointT> >::iterator keypointIt=output->begin();
for(size_t i=k; k<brisk_keypoints_2D.size(); ++k)
output->erase(keypointIt+i);
pcl::PointIndices::Ptr indices (new pcl::PointIndices);
// Remove NAN from keypoints cloud
pcl::removeNaNFromPointCloud(*output, *output,indices->indices);
pcl::removeNaNNormalsFromPointCloud(*output, *output,indices->indices);
// remove 0 points
pcl::ConditionAnd<PointT>::Ptr range_cond (new pcl::ConditionAnd<PointT> ());
range_cond->addComparison (pcl::FieldComparison<PointT>::ConstPtr (new pcl::FieldComparison<PointT> ("z", pcl::ComparisonOps::GT, 0.1)));
// build the filter
pcl::ConditionalRemoval<PointT> condrem(true);
condrem.setCondition(range_cond);
condrem.setInputCloud (output);
condrem.setKeepOrganized(output->isOrganized());
condrem.filter (*output);
std::cout << "DONE " << output->size() << " in " << t.elapsed() << std::endl;
}
void Filters_Downsampling::DetectAGAST(PointCloudT::Ptr input, PointCloudT::Ptr output, int paramThreshold)
{
std::cout << "AGAST Detector...";
// constructor
pcl::AgastKeypoint2D<PointT> agast_keypoint_estimation;
//output
pcl::PointCloud<pcl::PointUV> agast_keypoints_2D;
//parameters
agast_keypoint_estimation.setThreshold (paramThreshold);
agast_keypoint_estimation.setInputCloud (input);
//compute
agast_keypoint_estimation.compute (agast_keypoints_2D);
//convert UV to 3D
output->resize(agast_keypoints_2D.size());
int k = agast_keypoints_2D.size();
for(int i = 0, j = 0; i < k; ++i)
{
j = agast_keypoints_2D.points[i].u + agast_keypoints_2D.points[i].v * input->width;
if(isnan(input->points[j].x))
{
--k;
}
else
{
output->points[i].b=input->points[j].b;
output->points[i].g=input->points[j].g;
output->points[i].r=input->points[j].r;
output->points[i].x=input->points[j].x;
output->points[i].y=input->points[j].y;
output->points[i].z=input->points[j].z;
}
}
std::vector<PointT,Eigen::aligned_allocator<PointT> >::iterator keypointIt=output->begin();
for(int i=k; k<agast_keypoints_2D.size(); ++k)
output->erase(keypointIt+i);
pcl::PointIndices::Ptr indices (new pcl::PointIndices);
// Remove NAN from keypoints cloud
pcl::removeNaNFromPointCloud(*output, *output,indices->indices);
pcl::removeNaNNormalsFromPointCloud(*output, *output,indices->indices);
// remove 0 points
pcl::ConditionAnd<PointT>::Ptr range_cond (new pcl::ConditionAnd<PointT> ());
range_cond->addComparison (pcl::FieldComparison<PointT>::ConstPtr (new pcl::FieldComparison<PointT> ("z", pcl::ComparisonOps::GT, 0.1)));
// build the filter
pcl::ConditionalRemoval<PointT> condrem(true);
condrem.setCondition(range_cond);
condrem.setInputCloud (output);
condrem.setKeepOrganized(output->isOrganized());
condrem.filter (*output);
std::cout << "DONE " << output->size() << std::endl;
}
void Filters_Downsampling::DetectSIFT(PointCloudT::Ptr input, PointCloudT::Ptr output)
{
std::cout << "SIFT Detector...";
pcl::SIFTKeypoint<pcl::PointXYZRGB, pcl::PointXYZI> sift_detect;
const float min_scale = 0.005f;
const int nr_octaves = 6;
const int nr_scales_per_octave = 4;
const float min_contrast = 0.005f;
sift_detect.setSearchMethod(pcl::search::KdTree<pcl::PointXYZRGB>::Ptr (new pcl::search::KdTree<pcl::PointXYZRGB>));
sift_detect.setScales (min_scale, nr_octaves, nr_scales_per_octave);
sift_detect.setMinimumContrast (min_contrast);
pcl::PointCloud<pcl::PointXYZRGB>::Ptr inputXYZRGB(new pcl::PointCloud<pcl::PointXYZRGB>);
pcl::copyPointCloud(*input, *inputXYZRGB);
sift_detect.setInputCloud (inputXYZRGB);
pcl::PointCloud<pcl::PointXYZI> keypoints_temp;
sift_detect.compute (keypoints_temp);
//OPT1
// pcl::PointIndices::Ptr ind (new pcl::PointIndices ());
//OPT2
// std::vector<int> ind2;
// ind2 = sift_detect.getKeypointsIndices();
//
// pcl::ExtractIndices<PointT> extract;
//extract.setInputCloud (input);
// extract.setIndices (ind);
// extract.setNegative (false);
// extract.filter (*output);
output->resize(keypoints_temp.size());
pcl::copyPointCloud (keypoints_temp, *output);
pcl::PointIndices::Ptr indices (new pcl::PointIndices);
// Remove NAN from keypoints cloud
pcl::removeNaNFromPointCloud(*output, *output,indices->indices);
pcl::removeNaNNormalsFromPointCloud(*output, *output,indices->indices);
// remove 0 points
pcl::ConditionAnd<PointT>::Ptr range_cond (new pcl::ConditionAnd<PointT> ());
range_cond->addComparison (pcl::FieldComparison<PointT>::ConstPtr (new pcl::FieldComparison<PointT> ("z", pcl::ComparisonOps::GT, 0.1)));
// build the filter
pcl::ConditionalRemoval<PointT> condrem(true);
condrem.setCondition(range_cond);
condrem.setInputCloud (output);
condrem.setKeepOrganized(output->isOrganized());
condrem.filter (*output);
std::cout << "DONE " << output->size() << std::endl;
return ;
}
| [
"silvio.giancola@gmail.com"
] | silvio.giancola@gmail.com |
d93cbf7f772eb00775a8f46cc6ab0027c70bd906 | f8976de87d3be3fbcff061b4b981756924a05c42 | /c++/codeblocks/RB_tree/main.cpp | e87b12a3967cabc5b966af1dc6e78d3dfbcbac3d | [] | no_license | blasdch18/AED | 90610bee2d12dd2fceddfeded445acc93303ef17 | a785f1aa7572bfcbe2f75ee1b302cd4961d4d057 | refs/heads/master | 2021-05-20T10:29:35.783024 | 2020-04-01T18:18:57 | 2020-04-01T18:18:57 | 252,247,723 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 5,142 | cpp | #include <iostream>
#include <stack>
#include <queue>
#include <string>
using namespace std;
enum Color{black,red};
// ************************************ Function Object
template<class T>
struct Greater
{
bool operator () (T a , T b)
{
return a>b;
}
};
template<class T>
struct Less
{
bool operator () (T a , T b)
{
return a<b;
}
};
template<class T>
struct TraitLess
{
typedef T type;
typedef Less<type> cmp;
};
//************************************ Nodo RB
template <class T>
struct nodo
{
Color color;
T data;
nodo (T n);
nodo<T>* leaf[2];
//Others Functions
T GetData();
Color GetColor();
};
template <class T>
nodo<T>::nodo(T n)
{
data=n;
leaf[0]=0;
leaf[1]=0;
color=red;
}
template<class T>
T nodo<T>::GetData()
{
return data;
}
template<class T>
Color nodo<T>::GetColor()
{
return color;
}
// ******************************************** arbol_RB
template <class Tr>
class arbol_RB{
public:
typedef typename Tr::type T;
typedef typename Tr::cmp C;
typedef nodo<T> Node;
Node* root_;
C cmp_;
arbol_RB();
void RotationDir(bool d, Node** u);
bool GetColor(Node * p);
void UpdateColor(Node **p, Node ** u);
void SimpleRotation(Node** p,bool dir);
void DoubleRotation(Node** p,bool dir);
bool Find(T n, Node ** &p, stack<Node **> &stack);
bool Insert(T n);
void DestroyTree(Node *&p);
void RPrint(Node *p);
void PrintTree();
void amplitud();
void printRoot();
};
template<class Tr>
arbol_RB<Tr>::arbol_RB(){
root_=0;
}
template<class Tr>
bool arbol_RB<Tr>::GetColor(Node *p){
if(p){
return p->GetColor();
}
return 0;
}
template<class Tr>
void arbol_RB<Tr>::DestroyTree(Node *&p){
if (!!p) {
DestroyTree(p->leaf[0]);
DestroyTree(p->leaf[1]);
delete p;
}
}
template<class Tr>
void arbol_RB<Tr>::RotationDir(bool d, Node **u){
bool d_r=GetColor((*u)->leaf[d]->leaf[!d])>GetColor((*u)->leaf[d]->leaf[d]);
if (d_r) {
DoubleRotation(u, d);
}
else{
SimpleRotation(u, d);
}
}
template<class Tr>
void arbol_RB<Tr>::UpdateColor(Node **p, Node **u){
int dir=GetColor((*u)->leaf[0])-GetColor((*u)->leaf[1]);
if (dir==0) {
if ((*u)->leaf[0]== *p) {
dir=1;
}
else{
dir=-1;
}
}
bool v=GetColor((*p)->leaf[0])||GetColor((*p)->leaf[1]);
if (dir==1 && v) {
RotationDir(0, u);
}
if(dir==-1 && v){
RotationDir(1, u);
}
if (root_->color) {
root_->color = black;
}
return;
}
template<class Tr>
void arbol_RB<Tr>::SimpleRotation(Node **p, bool dir){
Node * tmp = *p;
*p=(*p)->leaf[dir];
tmp->leaf[dir]=(*p)->leaf[!dir];
(*p)->leaf[!dir]=tmp;
if (!!(*p)->leaf[dir]) {
(*p)->leaf[dir]->color = black;
}
else if (!!(*p)->leaf[!dir]) {
(*p)->leaf[!dir]->color=black;
}
}
template<class Tr>
void arbol_RB<Tr>::DoubleRotation(Node **p, bool dir){
SimpleRotation(&(*p)->leaf[dir], !dir);
SimpleRotation(p,dir);
}
template<class Tr>
bool arbol_RB<Tr>::Find(T n, Node **&p, stack<Node **> &stack){
p=&root_;
while( *p && n!=(*p)->data ){
stack.push(p);
p=&(*p)->leaf[cmp_((*p)->data,n)];
}
return (*p) && n==(*p)->data;
}
template<class Tr>
bool arbol_RB<Tr>::Insert(T n){
Node **p;
stack <Node**> stack;
if (Find(n,p,stack)) {
return 0;
}
*p=new Node(n);
if ((root_)->color) {
root_->color=black;
}
while (!stack.empty()) {
if ((* stack.top())->color == red) {
Node **tmp = stack.top();
stack.pop();
UpdateColor(tmp, stack.top());
}
else{
stack.pop();
}
}
return 1;
}
template<class Tr>
void arbol_RB<Tr>::RPrint(Node *p){
if(!p) return;
RPrint(p->leaf[0]);
cout<<p->data<<"°"<<p->color<<"->";
RPrint(p->leaf[1]);
}
template<class Tr>
void arbol_RB<Tr>::PrintTree(){
RPrint(root_);
}
template<class Tr>
void arbol_RB<Tr>:: amplitud (){
queue<Node*>cola;
Node *p=root_;
cola.push(p);
while (!cola.empty()) {
p=cola.front();
cola.pop();
cout<<p->data<<"°"<<p->color<<"->";
if (p->leaf[0]!=0) cola.push(p->leaf[0]);
if (p->leaf[1]!=0) cola.push(p->leaf[1]);
}
}
template <class Tr>
void arbol_RB<Tr>:: printRoot(){
Node*p=root_;
cout<<p->data;
}
int main()
{
cout << "Hello world!" << endl;
arbol_RB< TraitLess<int> >a;
for(int i=1;i<11;i++){
a.Insert(i);
}
a.PrintTree();cout<<endl;
cout<<"pruebas para el arbol"<<endl;
// nodo<int>b;
// b=a.root_;
a.amplitud();
cout<<endl;
a.printRoot();
return 0;
return 0;
}
| [
"blas.cruz@ucsp.edu.pe"
] | blas.cruz@ucsp.edu.pe |
a3a2f9382393f83ae399c4bc651fce6e6b8b3f02 | 1cc631c61d85076c192a6946acb35d804f0620e4 | /Source/third_party/cegui-0.6.1/RendererModules/OpenGLGUIRenderer/opengltexture.h | c6aa0fe9121a66bb099efeccb5a512932c1670b8 | [
"Zlib",
"LicenseRef-scancode-pcre",
"MIT"
] | permissive | reven86/dreamfarmgdk | f9746e1c0e701f243c7dd2f14394970cc47346d9 | 4d5c26701bf05e89eef56ddd4553814aa6b0e770 | refs/heads/master | 2021-01-19T00:58:04.259208 | 2016-10-04T21:29:28 | 2016-10-04T21:33:10 | 906,953 | 2 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 6,502 | h | /***********************************************************************
filename: opengltexture.h
created: 9/4/2004
author: Mark Strom
mwstrom@gmail.com
purpose: Interface to Texture implemented via Opengl
*************************************************************************/
/***************************************************************************
* Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team
*
* 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 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.
***************************************************************************/
#ifndef _opengltexture_h_
#define _opengltexture_h_
#include "CEGUIBase.h"
#include "CEGUIRenderer.h"
#include "CEGUITexture.h"
#include "openglrenderer.h"
#include <list>
// Start of CEGUI namespace section
namespace CEGUI
{
/*!
\brief
Texture class that is created by OpenGLRenderer objects
*/
class OPENGL_GUIRENDERER_API OpenGLTexture : public Texture
{
private:
/*************************************************************************
Friends (to allow construction and destruction)
*************************************************************************/
friend Texture* OpenGLRenderer::createTexture(void);
friend Texture* OpenGLRenderer::createTexture(const String& filename, const String& resourceGroup);
friend Texture* OpenGLRenderer::createTexture(float size);
friend void OpenGLRenderer::destroyTexture(Texture* texture);
/*************************************************************************
Construction & Destruction (by Renderer object only)
*************************************************************************/
OpenGLTexture(Renderer* owner);
virtual ~OpenGLTexture(void);
public:
/*!
\brief
Returns the current pixel width of the texture
\return
ushort value that is the current width of the texture in pixels
*/
virtual ushort getWidth(void) const {return d_width;}
/*!
\brief
Returns the current pixel height of the texture
\return
ushort value that is the current height of the texture in pixels
*/
virtual ushort getHeight(void) const {return d_height;}
virtual ushort getOriginalWidth(void) const { return d_orgWidth; }
virtual ushort getOriginalHeight(void) const { return d_orgHeight; }
virtual float getXScale(void) const { return d_xScale; }
virtual float getYScale(void) const { return d_yScale; }
/*!
\brief
Loads the specified image file into the texture. The texture is resized as required to hold the image.
\param filename
The filename of the image file that is to be loaded into the texture
\param resourceGroup
Resource group identifier passed to the resource provider.
\return
Nothing.
*/
virtual void loadFromFile(const String& filename, const String& resourceGroup);
/*!
\brief
Loads (copies) an image in memory into the texture. The texture is resized as required to hold the image.
\param buffPtr
Pointer to the buffer containing the image data
\param buffWidth
Width of the buffer (in pixels as specified by \a pixelFormat )
\param buffHeight
Height of the buffer (in pixels as specified by \a pixelFormat )
\param pixelFormat
PixelFormat value describing the format contained in \a buffPtr
\return
Nothing.
*/
virtual void loadFromMemory(const void* buffPtr, uint buffWidth, uint buffHeight, PixelFormat pixelFormat);
/*!
\brief
Return a pointer to the internal texture id
\return
Texture id that is loaded
*/
GLuint getOGLTexid(void) const {return d_ogltexture;}
/*!
\brief
set the size of the internal texture.
\param size
pixel size of the new internal texture. This will be rounded up to a power of 2.
\return
Nothing.
*/
void setOGLTextureSize(uint size);
/************************************************************************
Grab/restore
*************************************************************************/
/*!
\brief
Grab the texture to a local buffer.
This will destroy the OpenGL texture, and restoreTexture must be called before using it again.
*/
void grabTexture(void);
/*!
\brief
Restore the texture from the locally buffered copy previously create by a call to grabTexture.
*/
void restoreTexture(void);
private:
//! updates cached scale value used to map pixels to texture co-ords.
void updateCachedScaleValues();
//! returns next power of 2 size if \a size is not power of 2
uint getSizeNextPOT(uint size) const;
/*************************************************************************
Implementation Data
*************************************************************************/
GLuint d_ogltexture; //!< The 'real' texture.
ushort d_width; //!< cached width of the texture
ushort d_height; //!< cached height of the texture
uint8* d_grabBuffer; //!< cached image data for restoring the texture
//! original pixel width of data loaded into texture
ushort d_orgWidth;
//! original pixel height of data loaded into texture
ushort d_orgHeight;
//! cached value for x scale
float d_xScale;
//! cahced value foy y scale
float d_yScale;
};
} // End of CEGUI namespace section
#endif // end of guard _opengltexture_h_
| [
"reven86@gmail.com"
] | reven86@gmail.com |
137c07019da2a9b7ed7b54de2508be994e7060a8 | 1b37a068a73fadb65dfc2f7f1c01c6f4285f868d | /PyNGL/src/PyQuaternion.cpp | fcbfec1e88cb1a7552b3f38687df0e01fef903de | [] | no_license | NCCA/NGL | 06906150a8444c6ec9be5a1674f736962eb91756 | e22cb142e879399835de53feadb8a06aded2e48c | refs/heads/main | 2023-06-19T10:27:06.802876 | 2023-06-14T08:07:57 | 2023-06-14T08:07:57 | 24,201,375 | 104 | 40 | null | 2022-10-31T18:20:15 | 2014-09-18T19:11:22 | C++ | UTF-8 | C++ | false | false | 2,339 | cpp | #include "PyBindIncludes.h"
#include "Quaternion.h"
namespace py = pybind11;
namespace ngl
{
void pyInitQuaternion(py::module & m)
{
py::class_<Quaternion>(m, "Quaternion")
.def(py::init<>())
.def(py::init<Real,Real,Real,Real>())
.def(py::init<const Mat4 &>())
.def(py::init<const Vec3 &>())
.def(py::init<const Quaternion &>())
.def("set",&Quaternion::set)
.def("getS",&Quaternion::getS)
.def("getX",&Quaternion::getX)
.def("getY",&Quaternion::getY)
.def("getZ",&Quaternion::getZ)
.def("getVector",&Quaternion::getVector)
.def("setVector",&Quaternion::setVector)
.def("setS",&Quaternion::setS)
.def("setX",&Quaternion::setX)
.def("setY",&Quaternion::setY)
.def("setZ",&Quaternion::setZ)
.def("normalise",&Quaternion::normalise)
.def("magnitude",&Quaternion::magnitude)
.def("conjugate",&Quaternion::conjugate)
.def("inverse",&Quaternion::inverse)
.def("slerp",&Quaternion::slerp)
.def("rotateX",&Quaternion::rotateX)
.def("rotateY",&Quaternion::rotateY)
.def("rotateZ",&Quaternion::rotateZ)
.def("fromAxisAngle",&Quaternion::fromAxisAngle)
.def("fromEulerAngles",&Quaternion::fromEulerAngles)
.def("rotatePoint",&Quaternion::rotatePoint)
.def("toAxisAngle",&Quaternion::toAxisAngle)
.def("toMat4",&Quaternion::toMat4)
.def("toMat4Transpose",&Quaternion::toMat4Transpose)
.def(py::self + py::self)
.def(py::self * py::self)
.def(py::self *= py::self)
.def(py::self * Real())
.def(py::self * Vec4())
.def(py::self *= Real())
.def(py::self - py::self)
.def(py::self += py::self)
.def(py::self -= py::self)
.def(py::self == py::self)
.def("__neg__",py::overload_cast<> (&Quaternion::operator-))
.def("__neg__",py::overload_cast<> (&Quaternion::operator- ,py::const_))
.def("__repr__",
[](const Quaternion &v) {
return std::to_string(v.getS())+"["+
std::to_string(v.getX())+","+
std::to_string(v.getY())+","+
std::to_string(v.getZ())
+"]";})
;
}
}
| [
"jmacey@bournemouth.ac.uk"
] | jmacey@bournemouth.ac.uk |
79ea9df1d819c93e1413d32c9c9ae36071e9f7f3 | f0119e5464ea44c56c01e6f86f32475fa7c58510 | /src/qt/addressbookpage.cpp | c8cf23f10614516f915dd91a322784379e38a3f9 | [
"MIT"
] | permissive | bedri/CryptoFlowCoin | 5e0bed3f2459ff6420c5f3f87af2b2ecae5de04f | d3f21f5fdb8d5ac15308c9dadc2e0078ac36a009 | refs/heads/master | 2023-03-16T06:58:49.958281 | 2021-02-13T20:13:44 | 2021-02-13T20:13:44 | 342,163,094 | 0 | 0 | MIT | 2021-02-25T07:48:00 | 2021-02-25T07:45:28 | null | UTF-8 | C++ | false | false | 10,238 | cpp | // Copyright (c) 2011-2014 The Bitcoin developers
// Copyright (c) 2014-2015 The Dash developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2018 LightPayCoin developers
// Copyright (c) 2018 The CryptoFlow developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "config/cryptoflow-config.h"
#endif
#include "addressbookpage.h"
#include "ui_addressbookpage.h"
#include "addresstablemodel.h"
#include "bitcoingui.h"
#include "csvmodelwriter.h"
#include "editaddressdialog.h"
#include "guiutil.h"
#include <QIcon>
#include <QMenu>
#include <QMessageBox>
#include <QSortFilterProxyModel>
AddressBookPage::AddressBookPage(Mode mode, Tabs tab, QWidget* parent) : QDialog(parent),
ui(new Ui::AddressBookPage),
model(0),
mode(mode),
tab(tab)
{
ui->setupUi(this);
#ifdef Q_OS_MAC // Icons on push buttons are very uncommon on Mac
ui->newAddress->setIcon(QIcon());
ui->copyAddress->setIcon(QIcon());
ui->deleteAddress->setIcon(QIcon());
ui->exportButton->setIcon(QIcon());
#endif
switch (mode) {
case ForSelection:
switch (tab) {
case SendingTab:
setWindowTitle(tr("Choose the address to send coins to"));
break;
case ReceivingTab:
setWindowTitle(tr("Choose the address to receive coins with"));
break;
}
connect(ui->tableView, SIGNAL(doubleClicked(QModelIndex)), this, SLOT(accept()));
ui->tableView->setEditTriggers(QAbstractItemView::NoEditTriggers);
ui->tableView->setFocus();
ui->closeButton->setText(tr("C&hoose"));
ui->exportButton->hide();
break;
case ForEditing:
switch (tab) {
case SendingTab:
setWindowTitle(tr("Sending addresses"));
break;
case ReceivingTab:
setWindowTitle(tr("Receiving addresses"));
break;
}
break;
}
switch (tab) {
case SendingTab:
ui->labelExplanation->setText(tr("These are your CryptoFlow addresses for sending payments. Always check the amount and the receiving address before sending coins."));
ui->deleteAddress->setVisible(true);
break;
case ReceivingTab:
ui->labelExplanation->setText(tr("These are your CryptoFlow addresses for receiving payments. It is recommended to use a new receiving address for each transaction."));
ui->deleteAddress->setVisible(false);
break;
}
// Context menu actions
QAction* copyAddressAction = new QAction(tr("&Copy Address"), this);
QAction* copyLabelAction = new QAction(tr("Copy &Label"), this);
QAction* editAction = new QAction(tr("&Edit"), this);
deleteAction = new QAction(ui->deleteAddress->text(), this);
// Build context menu
contextMenu = new QMenu();
contextMenu->addAction(copyAddressAction);
contextMenu->addAction(copyLabelAction);
contextMenu->addAction(editAction);
if (tab == SendingTab)
contextMenu->addAction(deleteAction);
contextMenu->addSeparator();
// Connect signals for context menu actions
connect(copyAddressAction, SIGNAL(triggered()), this, SLOT(on_copyAddress_clicked()));
connect(copyLabelAction, SIGNAL(triggered()), this, SLOT(onCopyLabelAction()));
connect(editAction, SIGNAL(triggered()), this, SLOT(onEditAction()));
connect(deleteAction, SIGNAL(triggered()), this, SLOT(on_deleteAddress_clicked()));
connect(ui->tableView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(contextualMenu(QPoint)));
connect(ui->closeButton, SIGNAL(clicked()), this, SLOT(accept()));
}
AddressBookPage::~AddressBookPage()
{
delete ui;
}
void AddressBookPage::setModel(AddressTableModel* model)
{
this->model = model;
if (!model)
return;
proxyModel = new QSortFilterProxyModel(this);
proxyModel->setSourceModel(model);
proxyModel->setDynamicSortFilter(true);
proxyModel->setSortCaseSensitivity(Qt::CaseInsensitive);
proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
switch (tab) {
case ReceivingTab:
// Receive filter
proxyModel->setFilterRole(AddressTableModel::TypeRole);
proxyModel->setFilterFixedString(AddressTableModel::Receive);
break;
case SendingTab:
// Send filter
proxyModel->setFilterRole(AddressTableModel::TypeRole);
proxyModel->setFilterFixedString(AddressTableModel::Send);
break;
}
ui->tableView->setModel(proxyModel);
ui->tableView->sortByColumn(0, Qt::AscendingOrder);
// Set column widths
#if QT_VERSION < 0x050000
ui->tableView->horizontalHeader()->setResizeMode(AddressTableModel::Label, QHeaderView::Stretch);
ui->tableView->horizontalHeader()->setResizeMode(AddressTableModel::Address, QHeaderView::ResizeToContents);
#else
ui->tableView->horizontalHeader()->setSectionResizeMode(AddressTableModel::Label, QHeaderView::Stretch);
ui->tableView->horizontalHeader()->setSectionResizeMode(AddressTableModel::Address, QHeaderView::ResizeToContents);
#endif
connect(ui->tableView->selectionModel(), SIGNAL(selectionChanged(QItemSelection, QItemSelection)),
this, SLOT(selectionChanged()));
// Select row for newly created address
connect(model, SIGNAL(rowsInserted(QModelIndex, int, int)), this, SLOT(selectNewAddress(QModelIndex, int, int)));
selectionChanged();
}
void AddressBookPage::on_copyAddress_clicked()
{
GUIUtil::copyEntryData(ui->tableView, AddressTableModel::Address);
}
void AddressBookPage::onCopyLabelAction()
{
GUIUtil::copyEntryData(ui->tableView, AddressTableModel::Label);
}
void AddressBookPage::onEditAction()
{
if (!model)
return;
if (!ui->tableView->selectionModel())
return;
QModelIndexList indexes = ui->tableView->selectionModel()->selectedRows();
if (indexes.isEmpty())
return;
EditAddressDialog dlg(
tab == SendingTab ?
EditAddressDialog::EditSendingAddress :
EditAddressDialog::EditReceivingAddress,
this);
dlg.setModel(model);
QModelIndex origIndex = proxyModel->mapToSource(indexes.at(0));
dlg.loadRow(origIndex.row());
dlg.exec();
}
void AddressBookPage::on_newAddress_clicked()
{
if (!model)
return;
EditAddressDialog dlg(
tab == SendingTab ?
EditAddressDialog::NewSendingAddress :
EditAddressDialog::NewReceivingAddress,
this);
dlg.setModel(model);
if (dlg.exec()) {
newAddressToSelect = dlg.getAddress();
}
}
void AddressBookPage::on_deleteAddress_clicked()
{
QTableView* table = ui->tableView;
if (!table->selectionModel())
return;
QModelIndexList indexes = table->selectionModel()->selectedRows();
if (!indexes.isEmpty()) {
table->model()->removeRow(indexes.at(0).row());
}
}
void AddressBookPage::selectionChanged()
{
// Set button states based on selected tab and selection
QTableView* table = ui->tableView;
if (!table->selectionModel())
return;
if (table->selectionModel()->hasSelection()) {
switch (tab) {
case SendingTab:
// In sending tab, allow deletion of selection
ui->deleteAddress->setEnabled(true);
ui->deleteAddress->setVisible(true);
deleteAction->setEnabled(true);
break;
case ReceivingTab:
// Deleting receiving addresses, however, is not allowed
ui->deleteAddress->setEnabled(false);
ui->deleteAddress->setVisible(false);
deleteAction->setEnabled(false);
break;
}
ui->copyAddress->setEnabled(true);
} else {
ui->deleteAddress->setEnabled(false);
ui->copyAddress->setEnabled(false);
}
}
void AddressBookPage::done(int retval)
{
QTableView* table = ui->tableView;
if (!table->selectionModel() || !table->model())
return;
// Figure out which address was selected, and return it
QModelIndexList indexes = table->selectionModel()->selectedRows(AddressTableModel::Address);
foreach (QModelIndex index, indexes) {
QVariant address = table->model()->data(index);
returnValue = address.toString();
}
if (returnValue.isEmpty()) {
// If no address entry selected, return rejected
retval = Rejected;
}
QDialog::done(retval);
}
void AddressBookPage::on_exportButton_clicked()
{
// CSV is currently the only supported format
QString filename = GUIUtil::getSaveFileName(this,
tr("Export Address List"), QString(),
tr("Comma separated file (*.csv)"), NULL);
if (filename.isNull())
return;
CSVModelWriter writer(filename);
// name, column, role
writer.setModel(proxyModel);
writer.addColumn("Label", AddressTableModel::Label, Qt::EditRole);
writer.addColumn("Address", AddressTableModel::Address, Qt::EditRole);
if (!writer.write()) {
QMessageBox::critical(this, tr("Exporting Failed"),
tr("There was an error trying to save the address list to %1. Please try again.").arg(filename));
}
}
void AddressBookPage::contextualMenu(const QPoint& point)
{
QModelIndex index = ui->tableView->indexAt(point);
if (index.isValid()) {
contextMenu->exec(QCursor::pos());
}
}
void AddressBookPage::selectNewAddress(const QModelIndex& parent, int begin, int /*end*/)
{
QModelIndex idx = proxyModel->mapFromSource(model->index(begin, AddressTableModel::Address, parent));
if (idx.isValid() && (idx.data(Qt::EditRole).toString() == newAddressToSelect)) {
// Select row of newly created address, once
ui->tableView->setFocus();
ui->tableView->selectRow(idx.row());
newAddressToSelect.clear();
}
}
| [
"root@localhost"
] | root@localhost |
eb98c155e9377dd5bd2931dd0eabe5ecb3755afe | b9593d1a32fb132de18a9ffe36c826b1b26eaffb | /win32/boost/boost/mpl/aux_/msvc_is_class.hpp | 21cccc0cfe925f98046c33fb75c1227ef6829df9 | [
"BSL-1.0"
] | permissive | autofax/sfftobmp_copy | 8f8b3b0d9bec2cff6d81bb6855e34f4d54f9d7eb | 6058b7c0df917af19b4b27003a189cf71bade801 | refs/heads/master | 2020-12-02T16:36:16.956519 | 2017-07-07T17:10:57 | 2017-07-07T17:10:57 | 96,559,550 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,573 | hpp |
#ifndef BOOST_MPL_AUX_MSVC_IS_CLASS_HPP_INCLUDED
#define BOOST_MPL_AUX_MSVC_IS_CLASS_HPP_INCLUDED
// Copyright Aleksey Gurtovoy 2002-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: msvc_is_class.hpp,v 1.1 2009/08/23 12:39:08 pschaefer Exp $
// $Date: 2009/08/23 12:39:08 $
// $Revision: 1.1 $
#include <boost/mpl/if.hpp>
#include <boost/mpl/bool.hpp>
#include <boost/mpl/aux_/type_wrapper.hpp>
#include <boost/mpl/aux_/yes_no.hpp>
#include <boost/type_traits/is_reference.hpp>
namespace boost { namespace mpl { namespace aux {
template< typename T > struct is_class_helper
{
typedef int (T::* type)();
};
// MSVC 6.x-specific lightweight 'is_class' implementation;
// Distinguishing feature: does not instantiate the type being tested.
template< typename T >
struct msvc_is_class_impl
{
template< typename U>
static yes_tag test(type_wrapper<U>*, /*typename*/ is_class_helper<U>::type = 0);
static no_tag test(void const volatile*, ...);
enum { value = sizeof(test((type_wrapper<T>*)0)) == sizeof(yes_tag) };
typedef bool_<value> type;
};
// agurt, 17/sep/04: have to check for 'is_reference' upfront to avoid ICEs in
// complex metaprograms
template< typename T >
struct msvc_is_class
: if_<
is_reference<T>
, false_
, msvc_is_class_impl<T>
>::type
{
};
}}}
#endif // BOOST_MPL_AUX_MSVC_IS_CLASS_HPP_INCLUDED
| [
"gerald.schade@gmx.de"
] | gerald.schade@gmx.de |
942e8c3ef7d199d9b31ca0dfee2c1ce5f6d25eca | 1eacb6124e13c8c9527ad6c2457dc458f3ccc161 | /algorithms/quick_sort.cpp | 516f96cea1971ab1377ef04ba01a642b07e5216f | [] | no_license | zhaogaowei/algorithms | b195142197f26bc1bc5db304cf2e4fe716499eab | 2ba709dbaa63b18bf2571a965374d5725f536bb2 | refs/heads/master | 2021-08-30T18:33:04.614909 | 2017-12-19T01:27:33 | 2017-12-19T01:27:33 | 108,709,789 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 753 | cpp | #include<iostream>
#include<iomanip>
using namespace std;
size_t partition(int *, int, int);
void quickSort(int *, int, int);
//int main() {
// int a[] = { -65536,2,8,7,1,3,5,6,4 };
// quickSort(a,1,8);
// for (int i = 1; i < 9; ++i)
// cout << left << setw(3) << a[i];
// cout << endl;
// cin.get();
// return 0;
//}
size_t partition(int *arr, int l, int h) {
int x = arr[h];
int i = l - 1;
for (int j = l; j < h; ++j) {
if (arr[j] < x) {
i++;
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
int temp = arr[i + 1];
arr[i + 1] = arr[h];
arr[h] = temp;
return i + 1;
}
void quickSort(int *arr, int l, int h) {
if (l < h) {
int q = partition(arr, l, h);
quickSort(arr, l, q - 1);
quickSort(arr, q + 1, h);
}
}
| [
"489524001@qq.com"
] | 489524001@qq.com |
2f3840ad566b4cd94510cd16bb2637b8831cec86 | 3fd0b68895e76bc91b7cbf69287d92808fc9e07e | /Project/Camera.cpp | 9a252d19b97719dd23f93239642ce40d9022b49b | [] | no_license | ionutGMcatelina/3DScene | 11963008745d60008c4efb0ab34d4442dffce4a5 | c583a85b9efcf6f67682415b5971dad9da6ceef0 | refs/heads/master | 2021-02-16T15:38:24.143358 | 2020-03-04T23:13:13 | 2020-03-04T23:13:13 | 245,020,563 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,497 | cpp | //
// Camera.cpp
// Lab5
//
// Created by CGIS on 28/10/2016.
// Copyright © 2016 CGIS. All rights reserved.
//
#include "Camera.hpp"
namespace gps {
Camera::Camera(glm::vec3 cameraPosition, glm::vec3 cameraTarget)
{
this->cameraPosition = cameraPosition;
this->cameraTarget = cameraTarget;
this->cameraDirection = glm::normalize(cameraTarget - cameraPosition);
this->cameraRightDirection = glm::normalize(glm::cross(this->cameraDirection, glm::vec3(0.0f, 1.0f, 0.0f)));
}
glm::vec3 Camera::getPosition() {
return this->cameraPosition;
}
glm::vec3 Camera::getTarget() {
return this->cameraTarget;
}
glm::vec3 Camera::getDirection() {
return this->cameraDirection;
}
glm::mat4 Camera::getViewMatrix()
{
return glm::lookAt(cameraPosition, cameraPosition + cameraDirection , glm::vec3(0.0f, 1.0f, 0.0f));
}
glm::vec3 Camera::getCameraTarget()
{
return cameraTarget;
}
void Camera::move(MOVE_DIRECTION direction, float speed)
{
switch (direction) {
case MOVE_FORWARD:
cameraPosition += cameraDirection * speed;
break;
case MOVE_BACKWARD:
cameraPosition -= cameraDirection * speed;
break;
case MOVE_RIGHT:
cameraPosition += cameraRightDirection * speed;
break;
case MOVE_LEFT:
cameraPosition -= cameraRightDirection * speed;
break;
}
}
void Camera::ascend(float up) {
this->cameraPosition.y = up;
}
void Camera::changeX(float newX) {
this->cameraPosition.x = newX;
}
void Camera::changeZ(float newZ) {
this->cameraPosition.z = newZ;
}
void Camera::setDirection(glm::vec3 dir) {
this->cameraDirection = dir;
this->cameraRightDirection = glm::normalize(glm::cross(this->cameraDirection, glm::vec3(0.0f, 1.0f, 0.0f)));
}
void Camera::rotate(float pitch, float yaw)
{
if (pitch > 89.0f)
pitch = 89.0f;
if (pitch < -89.0f)
pitch = -89.0f;
glm::vec3 front;
front.x = cos(glm::radians(pitch)) * cos(glm::radians(yaw));
front.y = sin(glm::radians(pitch));
front.z = cos(glm::radians(pitch)) * sin(glm::radians(yaw));
this -> cameraDirection = glm::normalize(front);
this -> cameraRightDirection = glm::normalize(glm::cross(this->cameraDirection, glm::vec3(0.0f, 1.0f, 0.0f)));
}
}
| [
"ionut_catelina@yahoo.com"
] | ionut_catelina@yahoo.com |
66689235d1bf3fdb30aa9fd054e6432b208f35b0 | e3337d3395ec69eaa85898f64514557da279d124 | /freq_vis_rx.ino | cec042978f621e7d3d7ed767fbb58b60ebd2ec65 | [] | no_license | gsalaman/freq_vis_rx | 4ce3a9c891a1d074acd3803e959cab276d0aa78a | 1e244f03f38efdc15e4b3db6d6184f2c913c03bc | refs/heads/master | 2020-04-23T23:11:20.934656 | 2019-02-20T18:16:18 | 2019-02-20T18:16:18 | 171,527,010 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,300 | ino | // This is the receive module for the frequency visualizer.
// Brute force iteration: display on 64x32, use mega. Use Serial1 (pins 18 and 19) for com with tx side.
// Go to 21 bins for the cool rectangle effect.
#include "SoftwareSerial.h"
// These two defines are for the RGB Matrix
#include <Adafruit_GFX.h> // Core graphics library
#include <RGBmatrixPanel.h> // Hardware-specific library
// Pin defines for the 32x32 RGB matrix.
#define CLK 11
#define LAT 10
#define OE 9
#define A A0
#define B A1
#define C A2
#define D A3
/* Other Pin Mappings...hidden in the RGB library:
* Sig Uno Mega
* R0 2 24
* G0 3 25
* B0 4 26
* R1 5 27
* G1 6 28
* B1 7 29
*/
// Note "false" for double-buffering to consume less memory, or "true" for double-buffered.
// Double-buffered makes updates look smoother.
RGBmatrixPanel matrix(A, B, C, D, CLK, LAT, OE, true, 64);
// Must match the TX side!
#define FREQ_BINS 21
int freq[FREQ_BINS];
int freq_hist[FREQ_BINS]={0};
#define START_CHAR 's'
// Color pallete for spectrum...cooler than just single green.
uint16_t spectrum_colors[] =
{
matrix.Color444(7,0,0), // index 0
matrix.Color444(6,1,0), // index 1
matrix.Color444(5,2,0), // index 2
matrix.Color444(4,3,0), // index 3
matrix.Color444(3,4,0), // index 4
matrix.Color444(2,5,0), // index 5
matrix.Color444(1,6,0), // index 6
matrix.Color444(0,7,0), // index 7
matrix.Color444(0,6,1), // index 8
matrix.Color444(0,5,2), // index 9
matrix.Color444(0,4,3), // index 10
matrix.Color444(0,3,4), // index 11
matrix.Color444(0,2,5), // index 12
matrix.Color444(0,1,6), // index 13
matrix.Color444(0,0,7), // index 14
matrix.Color444(1,0,6), // index 15
matrix.Color444(2,0,5), // index 16
matrix.Color444(3,0,4), // index 17
matrix.Color444(4,0,3), // index 18
matrix.Color444(5,0,2), // index 19
matrix.Color444(6,0,1), // index 20
matrix.Color444(7,0,0), // index 21
};
void setup()
{
matrix.begin();
Serial.begin(9600);
Serial1.begin(38400);
Serial.println("Freq RX initialized");
}
typedef enum
{
WAIT_FOR_BUFFER,
PROCESS_BUFFER
} state_type;
state_type current_state=WAIT_FOR_BUFFER;
void print_freq_results( void )
{
int i;
for (i = 0; i < FREQ_BINS; i++)
{
Serial.print( freq[i] );
Serial.print(" ");
}
Serial.println();
Serial.println("====================");
}
void display_freq_raw( void )
{
int i;
int mag;
int x;
matrix.fillScreen(0);
// we have 32 freq bins, but I want to each bin to be 3 wide.
// This means I'm going from bins 1 to 21 (which gets us to 63)
for (i = 0; i < FREQ_BINS; i++)
{
mag = freq[i];
x = i*3;
matrix.drawRect(x,32,3,0-mag, spectrum_colors[i]);
}
matrix.swapBuffers(true);
}
void display_freq_decay( void )
{
int i;
int mag;
int x;
matrix.fillScreen(0);
// we have 32 freq bins, but I want to each bin to be 3 wide.
// This means I'm going from bins 1 to 21 (which gets us to 63)
for (i = 0; i < FREQ_BINS; i++)
{
mag = freq[i];
// check if current magnitude is smaller than our recent history.
if (mag < freq_hist[i])
{
// decay by 1...but only if we're not going negative
if (freq_hist[i])
{
mag = freq_hist[i] - 1;
}
}
// store new value...this will either be the new max or the new "decayed" value.
freq_hist[i] = mag;
x = i*3;
matrix.drawRect(x,32,3,0-mag, spectrum_colors[i]);
}
matrix.swapBuffers(true);
}
void loop()
{
char c;
int buff_index;
while (Serial1.available())
{
c = Serial1.read();
switch (current_state)
{
case WAIT_FOR_BUFFER:
if (c == START_CHAR)
{
buff_index = 0;
current_state = PROCESS_BUFFER;
}
break;
case PROCESS_BUFFER:
freq[buff_index] = c;
buff_index++;
if (buff_index == FREQ_BINS)
{
//print_freq_results();
display_freq_raw();
current_state = WAIT_FOR_BUFFER;
}
break;
} // end switch on state
} // end while xbee available.
} // end of loop
| [
"43499190+gsalaman@users.noreply.github.com"
] | 43499190+gsalaman@users.noreply.github.com |
26d6861ed4f91f0393dfd4c27db3b7e416c8bdfe | 5c12b628558371d486a6e1eb04b07e6918f54bef | /Object Oriented Programming/Laboratories/Lab14/main.cpp | e5938cbd59d020b4b7c0d7a1383067edbe7ff403 | [] | no_license | adelinmihoc/University | b8b488e73d826aa3a73adba33c384e6cb70a3f4b | aa64ef81a542f67d3a76925b1ee3cf7d3f002d61 | refs/heads/main | 2023-06-07T07:47:03.072025 | 2021-07-10T13:33:05 | 2021-07-10T13:33:05 | 356,818,055 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,473 | cpp | #include "mainwindow.h"
#include <QApplication>
#include <QLineEdit>
#include <QInputDialog>
#include <QMessageBox>
#include "Backend/controller.h"
Controller* load_settings();
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
Controller* ctrl = load_settings();
if (ctrl != nullptr) {
MainWindow w{ctrl};
w.test_backend();
w.show();
return a.exec();
}
}
Controller* load_settings() {
bool ok;
QString text = QInputDialog::getText(NULL, ("Configure settings"),
("Config file path:"), QLineEdit::Normal,
"config.txt", &ok);
std::ifstream f{text.toStdString()};
if (!ok || !f.is_open() || f.peek() == std::istream::traits_type::eof()) {
QMessageBox::critical(NULL, ("Error"), ("Unable to load settings"));
return nullptr;
}
std::string admin_repository_type;
std::string user_repository_type;
getline(f, admin_repository_type);
getline(f, user_repository_type);
std::string filename;
if (admin_repository_type == "memory") {
Repository* admin_repo = new Repository{};
if (user_repository_type == "memory") {
Repository* user_repo = new Repository{};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else if (user_repository_type == "csv_file") {
Repository* user_repo = new Csv_file{filename};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else if (user_repository_type == "html_file") {
Repository* user_repo = new Html_file{filename};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else {
return nullptr;
}
} else if (admin_repository_type == "csv_file") {
Repository* admin_repo = new Csv_file{filename};
if (user_repository_type == "memory") {
Repository* user_repo = new Repository{};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else if (user_repository_type == "csv_file") {
Repository* user_repo = new Csv_file{filename};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else if (user_repository_type == "html_file") {
Repository* user_repo = new Html_file{filename};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else {
return nullptr;
}
} else if (admin_repository_type == "html_file") {
Repository* admin_repo = new Html_file{filename};
if (user_repository_type == "memory") {
Repository* user_repo = new Repository{};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else if (user_repository_type == "csv_file") {
Repository* user_repo = new Csv_file{filename};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else if (user_repository_type == "html_file") {
Repository* user_repo = new Html_file{filename};
Controller* ctrl = new Controller{admin_repo, user_repo};
return ctrl;
} else {
return nullptr;
}
}
return nullptr;
}
| [
"adelinmihoc@gmail.com"
] | adelinmihoc@gmail.com |
559997dad1f18bcb0fd790760fae0b793d9d8b35 | e773d41ff293c1c0b7f1968a26cc5764e00667bb | /libcef_dll_wrapper/ctocpp/test/translator_test_ref_ptr_library_ctocpp.cc | 88e893ebc00588ace7db23d1b9482fe01852058a | [] | no_license | yufanghu/fec | 43794ac187d3c1aa84bd4e660f5272c8addf830a | 87be1c1238ff638ed4c5488cf5f0701b78e4b82f | refs/heads/master | 2021-03-27T12:33:52.573027 | 2017-12-01T10:18:38 | 2017-12-01T10:18:38 | 108,273,897 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,462 | cc | // Copyright (c) 2017 The Chromium Embedded Framework Authors. All rights
// reserved. Use of this source code is governed by a BSD-style license that
// can be found in the LICENSE file.
//
// ---------------------------------------------------------------------------
//
// This file was generated by the CEF translator tool. If making changes by
// hand only do so within the body of existing method and function
// implementations. See the translator.README.txt file in the tools directory
// for more information.
//
// $hash=adb8d1b6439ca458cb11aef7abda5c962988ca29$
//
#include "ctocpp/test/translator_test_ref_ptr_library_ctocpp.h"
#include "ctocpp/test/translator_test_ref_ptr_library_child_child_ctocpp.h"
#include "ctocpp/test/translator_test_ref_ptr_library_child_ctocpp.h"
// STATIC METHODS - Body may be edited by hand.
CefRefPtr<CefTranslatorTestRefPtrLibrary>
CefTranslatorTestRefPtrLibrary::Create(int value) {
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
cef_translator_test_ref_ptr_library_t* _retval =
cef_translator_test_ref_ptr_library_create(value);
// Return type: refptr_same
return CefTranslatorTestRefPtrLibraryCToCpp::Wrap(_retval);
}
// VIRTUAL METHODS - Body may be edited by hand.
int CefTranslatorTestRefPtrLibraryCToCpp::GetValue() {
cef_translator_test_ref_ptr_library_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, get_value))
return 0;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
int _retval = _struct->get_value(_struct);
// Return type: simple
return _retval;
}
void CefTranslatorTestRefPtrLibraryCToCpp::SetValue(int value) {
cef_translator_test_ref_ptr_library_t* _struct = GetStruct();
if (CEF_MEMBER_MISSING(_struct, set_value))
return;
// AUTO-GENERATED CONTENT - DELETE THIS COMMENT BEFORE MODIFYING
// Execute
_struct->set_value(_struct, value);
}
// CONSTRUCTOR - Do not edit by hand.
CefTranslatorTestRefPtrLibraryCToCpp::CefTranslatorTestRefPtrLibraryCToCpp() {}
template <>
cef_translator_test_ref_ptr_library_t*
CefCToCppRefCounted<CefTranslatorTestRefPtrLibraryCToCpp,
CefTranslatorTestRefPtrLibrary,
cef_translator_test_ref_ptr_library_t>::
UnwrapDerived(CefWrapperType type, CefTranslatorTestRefPtrLibrary* c) {
if (type == WT_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD) {
return reinterpret_cast<cef_translator_test_ref_ptr_library_t*>(
CefTranslatorTestRefPtrLibraryChildCToCpp::Unwrap(
reinterpret_cast<CefTranslatorTestRefPtrLibraryChild*>(c)));
}
if (type == WT_TRANSLATOR_TEST_REF_PTR_LIBRARY_CHILD_CHILD) {
return reinterpret_cast<cef_translator_test_ref_ptr_library_t*>(
CefTranslatorTestRefPtrLibraryChildChildCToCpp::Unwrap(
reinterpret_cast<CefTranslatorTestRefPtrLibraryChildChild*>(c)));
}
NOTREACHED() << "Unexpected class type: " << type;
return NULL;
}
#if DCHECK_IS_ON()
template <>
base::AtomicRefCount CefCToCppRefCounted<
CefTranslatorTestRefPtrLibraryCToCpp,
CefTranslatorTestRefPtrLibrary,
cef_translator_test_ref_ptr_library_t>::DebugObjCt ATOMIC_DECLARATION;
#endif
template <>
CefWrapperType
CefCToCppRefCounted<CefTranslatorTestRefPtrLibraryCToCpp,
CefTranslatorTestRefPtrLibrary,
cef_translator_test_ref_ptr_library_t>::kWrapperType =
WT_TRANSLATOR_TEST_REF_PTR_LIBRARY;
| [
"fibonacci2016@126.com"
] | fibonacci2016@126.com |
4a3e9160c6484ef8fcb34f22c34c830a4b9b1d82 | e014040a3bd59b9178c4f11a42b0abcfc1fc9abb | /Source/DirectWrite/Sample.cpp | 6f27fa7e7d42db7b98ed5d01adf193a045ea4270 | [] | no_license | tonnac/D3D11 | c68ee5d92f08da26f960905baee7d5546da59a61 | 4a8275b057444646fe6bffc076400db02f5c1acc | refs/heads/master | 2021-07-18T14:34:22.956587 | 2019-01-22T16:52:15 | 2019-01-22T16:52:15 | 147,910,342 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 846 | cpp | #include "Sample.h"
Sample::Sample()
{
}
bool Sample::Init()
{
m_DirectWrite.Init();
IDXGISwapChain * pSwapChain = getSwapChain();
IDXGISurface* pSurface = nullptr;
pSwapChain->GetBuffer(0, __uuidof(IDXGISurface), (LPVOID*)&pSurface);
m_DirectWrite.Set(pSurface);
pSurface->Release();
return true;
}
bool Sample::Frame()
{
return true;
}
bool Sample::Render()
{
m_DirectWrite.Begin();
D2D1_RECT_F pe = D2D1::RectF(0, 0, static_cast<FLOAT>(g_rtClient.right), static_cast<FLOAT>(g_rtClient.bottom));
m_DirectWrite.DrawText(pe,L"HelloWorld",D2D1::ColorF::Tan);
m_DirectWrite.End();
return true;
}
bool Sample::Release()
{
return true;
}
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE prevInst, LPWSTR szCmdLine, int nCmdShow)
{
Sample wd;
wd.InitWindow(hInstance, 800, 600, nCmdShow, L"FullScreen");
wd.Run();
return 0;
} | [
"tonnac35@gmail.com"
] | tonnac35@gmail.com |
e5486cbf9785cec83856b6c604f161301934e90b | 58f46a28fc1b58f9cd4904c591b415c29ab2842f | /chromium-32.0.1700.107/ui/views/controls/menu/menu_controller.cc | fb6d47ed75938e70dfbe9a492721a2d3b0973b36 | [
"BSD-3-Clause"
] | permissive | bbmjja8123/chromium-1 | e739ef69d176c636d461e44d54ec66d11ed48f96 | 2a46d8855c48acd51dafc475be7a56420a716477 | refs/heads/master | 2021-01-16T17:50:45.184775 | 2015-03-20T18:38:11 | 2015-03-20T18:42:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 83,971 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/views/controls/menu/menu_controller.h"
#if defined(OS_WIN)
#include <windowsx.h>
#endif
#include "base/i18n/case_conversion.h"
#include "base/i18n/rtl.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/time/time.h"
#include "ui/base/dragdrop/drag_utils.h"
#include "ui/base/dragdrop/os_exchange_data.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/events/event_constants.h"
#include "ui/events/event_utils.h"
#include "ui/events/keycodes/keyboard_codes.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/gfx/screen.h"
#include "ui/gfx/vector2d.h"
#include "ui/native_theme/native_theme.h"
#include "ui/views/controls/button/menu_button.h"
#include "ui/views/controls/menu/menu_config.h"
#include "ui/views/controls/menu/menu_controller_delegate.h"
#include "ui/views/controls/menu/menu_host_root_view.h"
#include "ui/views/controls/menu/menu_scroll_view_container.h"
#include "ui/views/controls/menu/submenu_view.h"
#include "ui/views/drag_utils.h"
#include "ui/views/event_utils.h"
#include "ui/views/focus/view_storage.h"
#include "ui/views/mouse_constants.h"
#include "ui/views/view_constants.h"
#include "ui/views/views_delegate.h"
#include "ui/views/widget/root_view.h"
#include "ui/views/widget/tooltip_manager.h"
#include "ui/views/widget/widget.h"
#if defined(USE_AURA)
#include "ui/aura/env.h"
#include "ui/aura/root_window.h"
#endif
#if defined(OS_WIN)
#include "ui/views/win/hwnd_message_handler.h"
#include "ui/views/win/hwnd_util.h"
#endif
#if defined(USE_X11)
#include <X11/Xlib.h>
#endif
using base::Time;
using base::TimeDelta;
using ui::OSExchangeData;
// Period of the scroll timer (in milliseconds).
static const int kScrollTimerMS = 30;
// Amount of time from when the drop exits the menu and the menu is hidden.
static const int kCloseOnExitTime = 1200;
// If a context menu is invoked by touch, we shift the menu by this offset so
// that the finger does not obscure the menu.
static const int kCenteredContextMenuYOffset = -15;
namespace views {
namespace {
// When showing context menu on mouse down, the user might accidentally select
// the menu item on the subsequent mouse up. To prevent this, we add the
// following delay before the user is able to select an item.
static int menu_selection_hold_time_ms = kMinimumMsPressedToActivate;
// The spacing offset for the bubble tip.
const int kBubbleTipSizeLeftRight = 12;
const int kBubbleTipSizeTopBottom = 11;
// The maximum distance (in DIPS) that the mouse can be moved before it should
// trigger a mouse menu item activation (regardless of how long the menu has
// been showing).
const float kMaximumLengthMovedToActivate = 4.0f;
// Returns true if the mnemonic of |menu| matches key.
bool MatchesMnemonic(MenuItemView* menu, char16 key) {
return menu->GetMnemonic() == key;
}
// Returns true if |menu| doesn't have a mnemonic and first character of the its
// title is |key|.
bool TitleMatchesMnemonic(MenuItemView* menu, char16 key) {
if (menu->GetMnemonic())
return false;
string16 lower_title = base::i18n::ToLower(menu->title());
return !lower_title.empty() && lower_title[0] == key;
}
} // namespace
// Returns the first descendant of |view| that is hot tracked.
static View* GetFirstHotTrackedView(View* view) {
if (!view)
return NULL;
if (!strcmp(view->GetClassName(), CustomButton::kViewClassName)) {
CustomButton* button = static_cast<CustomButton*>(view);
if (button->IsHotTracked())
return button;
}
for (int i = 0; i < view->child_count(); ++i) {
View* hot_view = GetFirstHotTrackedView(view->child_at(i));
if (hot_view)
return hot_view;
}
return NULL;
}
// Recurses through the child views of |view| returning the first view starting
// at |start| that is focusable. A value of -1 for |start| indicates to start at
// the first view (if |forward| is false, iterating starts at the last view). If
// |forward| is true the children are considered first to last, otherwise last
// to first.
static View* GetFirstFocusableView(View* view, int start, bool forward) {
if (forward) {
for (int i = start == -1 ? 0 : start; i < view->child_count(); ++i) {
View* deepest = GetFirstFocusableView(view->child_at(i), -1, forward);
if (deepest)
return deepest;
}
} else {
for (int i = start == -1 ? view->child_count() - 1 : start; i >= 0; --i) {
View* deepest = GetFirstFocusableView(view->child_at(i), -1, forward);
if (deepest)
return deepest;
}
}
return view->IsFocusable() ? view : NULL;
}
// Returns the first child of |start| that is focusable.
static View* GetInitialFocusableView(View* start, bool forward) {
return GetFirstFocusableView(start, -1, forward);
}
// Returns the next view after |start_at| that is focusable. Returns NULL if
// there are no focusable children of |ancestor| after |start_at|.
static View* GetNextFocusableView(View* ancestor,
View* start_at,
bool forward) {
DCHECK(ancestor->Contains(start_at));
View* parent = start_at;
do {
View* new_parent = parent->parent();
int index = new_parent->GetIndexOf(parent);
index += forward ? 1 : -1;
if (forward || index != -1) {
View* next = GetFirstFocusableView(new_parent, index, forward);
if (next)
return next;
}
parent = new_parent;
} while (parent != ancestor);
return NULL;
}
// MenuScrollTask --------------------------------------------------------------
// MenuScrollTask is used when the SubmenuView does not all fit on screen and
// the mouse is over the scroll up/down buttons. MenuScrollTask schedules
// itself with a RepeatingTimer. When Run is invoked MenuScrollTask scrolls
// appropriately.
class MenuController::MenuScrollTask {
public:
MenuScrollTask() : submenu_(NULL), is_scrolling_up_(false), start_y_(0) {
pixels_per_second_ = MenuItemView::pref_menu_height() * 20;
}
void Update(const MenuController::MenuPart& part) {
if (!part.is_scroll()) {
StopScrolling();
return;
}
DCHECK(part.submenu);
SubmenuView* new_menu = part.submenu;
bool new_is_up = (part.type == MenuController::MenuPart::SCROLL_UP);
if (new_menu == submenu_ && is_scrolling_up_ == new_is_up)
return;
start_scroll_time_ = base::Time::Now();
start_y_ = part.submenu->GetVisibleBounds().y();
submenu_ = new_menu;
is_scrolling_up_ = new_is_up;
if (!scrolling_timer_.IsRunning()) {
scrolling_timer_.Start(FROM_HERE,
TimeDelta::FromMilliseconds(kScrollTimerMS),
this, &MenuScrollTask::Run);
}
}
void StopScrolling() {
if (scrolling_timer_.IsRunning()) {
scrolling_timer_.Stop();
submenu_ = NULL;
}
}
// The menu being scrolled. Returns null if not scrolling.
SubmenuView* submenu() const { return submenu_; }
private:
void Run() {
DCHECK(submenu_);
gfx::Rect vis_rect = submenu_->GetVisibleBounds();
const int delta_y = static_cast<int>(
(base::Time::Now() - start_scroll_time_).InMilliseconds() *
pixels_per_second_ / 1000);
vis_rect.set_y(is_scrolling_up_ ?
std::max(0, start_y_ - delta_y) :
std::min(submenu_->height() - vis_rect.height(), start_y_ + delta_y));
submenu_->ScrollRectToVisible(vis_rect);
}
// SubmenuView being scrolled.
SubmenuView* submenu_;
// Direction scrolling.
bool is_scrolling_up_;
// Timer to periodically scroll.
base::RepeatingTimer<MenuScrollTask> scrolling_timer_;
// Time we started scrolling at.
base::Time start_scroll_time_;
// How many pixels to scroll per second.
int pixels_per_second_;
// Y-coordinate of submenu_view_ when scrolling started.
int start_y_;
DISALLOW_COPY_AND_ASSIGN(MenuScrollTask);
};
// MenuController:SelectByCharDetails ----------------------------------------
struct MenuController::SelectByCharDetails {
SelectByCharDetails()
: first_match(-1),
has_multiple(false),
index_of_item(-1),
next_match(-1) {
}
// Index of the first menu with the specified mnemonic.
int first_match;
// If true there are multiple menu items with the same mnemonic.
bool has_multiple;
// Index of the selected item; may remain -1.
int index_of_item;
// If there are multiple matches this is the index of the item after the
// currently selected item whose mnemonic matches. This may remain -1 even
// though there are matches.
int next_match;
};
// MenuController:State ------------------------------------------------------
MenuController::State::State()
: item(NULL),
submenu_open(false),
anchor(MenuItemView::TOPLEFT),
context_menu(false) {}
MenuController::State::~State() {}
// MenuController ------------------------------------------------------------
// static
MenuController* MenuController::active_instance_ = NULL;
// static
MenuController* MenuController::GetActiveInstance() {
return active_instance_;
}
MenuItemView* MenuController::Run(Widget* parent,
MenuButton* button,
MenuItemView* root,
const gfx::Rect& bounds,
MenuItemView::AnchorPosition position,
bool context_menu,
int* result_event_flags) {
exit_type_ = EXIT_NONE;
possible_drag_ = false;
drag_in_progress_ = false;
closing_event_time_ = base::TimeDelta();
menu_start_time_ = base::TimeTicks::Now();
menu_start_mouse_press_loc_ = gfx::Point();
// If we are shown on mouse press, we will eat the subsequent mouse down and
// the parent widget will not be able to reset its state (it might have mouse
// capture from the mouse down). So we clear its state here.
if (parent) {
View* root_view = parent->GetRootView();
if (root_view) {
root_view->SetMouseHandler(NULL);
const ui::Event* event =
static_cast<internal::RootView*>(root_view)->current_event();
if (event && event->type() == ui::ET_MOUSE_PRESSED) {
gfx::Point screen_loc(
static_cast<const ui::MouseEvent*>(event)->location());
View::ConvertPointToScreen(
static_cast<View*>(event->target()), &screen_loc);
menu_start_mouse_press_loc_ = screen_loc;
}
}
}
bool nested_menu = showing_;
if (showing_) {
// Only support nesting of blocking_run menus, nesting of
// blocking/non-blocking shouldn't be needed.
DCHECK(blocking_run_);
// We're already showing, push the current state.
menu_stack_.push_back(state_);
// The context menu should be owned by the same parent.
DCHECK_EQ(owner_, parent);
} else {
showing_ = true;
}
// Reset current state.
pending_state_ = State();
state_ = State();
UpdateInitialLocation(bounds, position, context_menu);
if (owner_)
owner_->RemoveObserver(this);
owner_ = parent;
if (owner_)
owner_->AddObserver(this);
// Set the selection, which opens the initial menu.
SetSelection(root, SELECTION_OPEN_SUBMENU | SELECTION_UPDATE_IMMEDIATELY);
if (!blocking_run_) {
// Start the timer to hide the menu. This is needed as we get no
// notification when the drag has finished.
StartCancelAllTimer();
return NULL;
}
if (button)
menu_button_ = button;
// Make sure Chrome doesn't attempt to shut down while the menu is showing.
if (ViewsDelegate::views_delegate)
ViewsDelegate::views_delegate->AddRef();
// We need to turn on nestable tasks as in some situations (pressing alt-f for
// one) the menus are run from a task. If we don't do this and are invoked
// from a task none of the tasks we schedule are processed and the menu
// appears totally broken.
message_loop_depth_++;
DCHECK_LE(message_loop_depth_, 2);
RunMessageLoop(nested_menu);
message_loop_depth_--;
if (ViewsDelegate::views_delegate)
ViewsDelegate::views_delegate->ReleaseRef();
// Close any open menus.
SetSelection(NULL, SELECTION_UPDATE_IMMEDIATELY | SELECTION_EXIT);
#if defined(OS_WIN) && defined(USE_AURA)
// On Windows, if we select the menu item by touch and if the window at the
// location is another window on the same thread, that window gets a
// WM_MOUSEACTIVATE message and ends up activating itself, which is not
// correct. We workaround this by setting a property on the window at the
// current cursor location. We check for this property in our
// WM_MOUSEACTIVATE handler and don't activate the window if the property is
// set.
if (item_selected_by_touch_) {
item_selected_by_touch_ = false;
POINT cursor_pos;
::GetCursorPos(&cursor_pos);
HWND window = ::WindowFromPoint(cursor_pos);
if (::GetWindowThreadProcessId(window, NULL) ==
::GetCurrentThreadId()) {
::SetProp(window, views::kIgnoreTouchMouseActivateForWindow,
reinterpret_cast<HANDLE>(true));
}
}
#endif
if (nested_menu) {
DCHECK(!menu_stack_.empty());
// We're running from within a menu, restore the previous state.
// The menus are already showing, so we don't have to show them.
state_ = menu_stack_.back();
pending_state_ = menu_stack_.back();
menu_stack_.pop_back();
} else {
showing_ = false;
did_capture_ = false;
}
MenuItemView* result = result_;
// In case we're nested, reset result_.
result_ = NULL;
if (result_event_flags)
*result_event_flags = accept_event_flags_;
if (exit_type_ == EXIT_OUTERMOST) {
SetExitType(EXIT_NONE);
} else {
if (nested_menu && result) {
// We're nested and about to return a value. The caller might enter
// another blocking loop. We need to make sure all menus are hidden
// before that happens otherwise the menus will stay on screen.
CloseAllNestedMenus();
SetSelection(NULL, SELECTION_UPDATE_IMMEDIATELY | SELECTION_EXIT);
// Set exit_all_, which makes sure all nested loops exit immediately.
if (exit_type_ != EXIT_DESTROYED)
SetExitType(EXIT_ALL);
}
}
// If we stopped running because one of the menus was destroyed chances are
// the button was also destroyed.
if (exit_type_ != EXIT_DESTROYED && menu_button_) {
menu_button_->SetState(CustomButton::STATE_NORMAL);
menu_button_->SchedulePaint();
}
return result;
}
void MenuController::Cancel(ExitType type) {
// If the menu has already been destroyed, no further cancellation is
// needed. We especially don't want to set the |exit_type_| to a lesser
// value.
if (exit_type_ == EXIT_DESTROYED || exit_type_ == type)
return;
if (!showing_) {
// This occurs if we're in the process of notifying the delegate for a drop
// and the delegate cancels us.
return;
}
MenuItemView* selected = state_.item;
SetExitType(type);
SendMouseCaptureLostToActiveView();
// Hide windows immediately.
SetSelection(NULL, SELECTION_UPDATE_IMMEDIATELY | SELECTION_EXIT);
if (!blocking_run_) {
// If we didn't block the caller we need to notify the menu, which
// triggers deleting us.
DCHECK(selected);
showing_ = false;
delegate_->DropMenuClosed(
internal::MenuControllerDelegate::NOTIFY_DELEGATE,
selected->GetRootMenuItem());
// WARNING: the call to MenuClosed deletes us.
return;
}
}
void MenuController::OnMousePressed(SubmenuView* source,
const ui::MouseEvent& event) {
SetSelectionOnPointerDown(source, event);
}
void MenuController::OnMouseDragged(SubmenuView* source,
const ui::MouseEvent& event) {
MenuPart part = GetMenuPart(source, event.location());
UpdateScrolling(part);
if (!blocking_run_)
return;
if (possible_drag_) {
if (View::ExceededDragThreshold(event.location() - press_pt_))
StartDrag(source, press_pt_);
return;
}
MenuItemView* mouse_menu = NULL;
if (part.type == MenuPart::MENU_ITEM) {
if (!part.menu)
part.menu = source->GetMenuItem();
else
mouse_menu = part.menu;
SetSelection(part.menu ? part.menu : state_.item, SELECTION_OPEN_SUBMENU);
} else if (part.type == MenuPart::NONE) {
ShowSiblingMenu(source, event.location());
}
UpdateActiveMouseView(source, event, mouse_menu);
}
void MenuController::OnMouseReleased(SubmenuView* source,
const ui::MouseEvent& event) {
if (!blocking_run_)
return;
DCHECK(state_.item);
possible_drag_ = false;
DCHECK(blocking_run_);
MenuPart part = GetMenuPart(source, event.location());
if (event.IsRightMouseButton() && part.type == MenuPart::MENU_ITEM) {
MenuItemView* menu = part.menu;
// |menu| is NULL means this event is from an empty menu or a separator.
// If it is from an empty menu, use parent context menu instead of that.
if (menu == NULL &&
part.submenu->child_count() == 1 &&
part.submenu->child_at(0)->id() == MenuItemView::kEmptyMenuItemViewID) {
menu = part.parent;
}
if (menu != NULL && ShowContextMenu(menu, source, event,
ui::MENU_SOURCE_MOUSE))
return;
}
// We can use Ctrl+click or the middle mouse button to recursively open urls
// for selected folder menu items. If it's only a left click, show the
// contents of the folder.
if (!part.is_scroll() && part.menu &&
!(part.menu->HasSubmenu() &&
(event.flags() & ui::EF_LEFT_MOUSE_BUTTON))) {
if (GetActiveMouseView()) {
SendMouseReleaseToActiveView(source, event);
return;
}
// If a mouse release was received quickly after showing.
base::TimeDelta time_shown = base::TimeTicks::Now() - menu_start_time_;
if (time_shown.InMilliseconds() < menu_selection_hold_time_ms) {
// And it wasn't far from the mouse press location.
gfx::Point screen_loc(event.location());
View::ConvertPointToScreen(source->GetScrollViewContainer(), &screen_loc);
gfx::Vector2d moved = screen_loc - menu_start_mouse_press_loc_;
if (moved.Length() < kMaximumLengthMovedToActivate) {
// Ignore the mouse release as it was likely this menu was shown under
// the mouse and the action was just a normal click.
return;
}
}
if (part.menu->GetDelegate()->ShouldExecuteCommandWithoutClosingMenu(
part.menu->GetCommand(), event)) {
part.menu->GetDelegate()->ExecuteCommand(part.menu->GetCommand(),
event.flags());
return;
}
if (!part.menu->NonIconChildViewsCount() &&
part.menu->GetDelegate()->IsTriggerableEvent(part.menu, event)) {
base::TimeDelta shown_time = base::TimeTicks::Now() - menu_start_time_;
if (!state_.context_menu || !View::ShouldShowContextMenuOnMousePress() ||
shown_time.InMilliseconds() > menu_selection_hold_time_ms) {
Accept(part.menu, event.flags());
}
return;
}
} else if (part.type == MenuPart::MENU_ITEM) {
// User either clicked on empty space, or a menu that has children.
SetSelection(part.menu ? part.menu : state_.item,
SELECTION_OPEN_SUBMENU | SELECTION_UPDATE_IMMEDIATELY);
}
SendMouseCaptureLostToActiveView();
}
void MenuController::OnMouseMoved(SubmenuView* source,
const ui::MouseEvent& event) {
HandleMouseLocation(source, event.location());
}
void MenuController::OnMouseEntered(SubmenuView* source,
const ui::MouseEvent& event) {
// MouseEntered is always followed by a mouse moved, so don't need to
// do anything here.
}
#if defined(USE_AURA)
bool MenuController::OnMouseWheel(SubmenuView* source,
const ui::MouseWheelEvent& event) {
MenuPart part = GetMenuPart(source, event.location());
return part.submenu && part.submenu->OnMouseWheel(event);
}
#endif
void MenuController::OnGestureEvent(SubmenuView* source,
ui::GestureEvent* event) {
MenuPart part = GetMenuPart(source, event->location());
if (event->type() == ui::ET_GESTURE_TAP_DOWN) {
SetSelectionOnPointerDown(source, *event);
event->StopPropagation();
} else if (event->type() == ui::ET_GESTURE_LONG_PRESS) {
if (part.type == MenuPart::MENU_ITEM && part.menu) {
if (ShowContextMenu(part.menu, source, *event, ui::MENU_SOURCE_TOUCH))
event->StopPropagation();
}
} else if (event->type() == ui::ET_GESTURE_TAP) {
if (!part.is_scroll() && part.menu &&
!(part.menu->HasSubmenu())) {
if (part.menu->GetDelegate()->IsTriggerableEvent(
part.menu, *event)) {
Accept(part.menu, event->flags());
item_selected_by_touch_ = true;
}
event->StopPropagation();
} else if (part.type == MenuPart::MENU_ITEM) {
// User either tapped on empty space, or a menu that has children.
SetSelection(part.menu ? part.menu : state_.item,
SELECTION_OPEN_SUBMENU | SELECTION_UPDATE_IMMEDIATELY);
event->StopPropagation();
}
} else if (event->type() == ui::ET_GESTURE_TAP_CANCEL &&
part.menu &&
part.type == MenuPart::MENU_ITEM) {
// Move the selection to the parent menu so that the selection in the
// current menu is unset. Make sure the submenu remains open by sending the
// appropriate SetSelectionTypes flags.
SetSelection(part.menu->GetParentMenuItem(),
SELECTION_OPEN_SUBMENU | SELECTION_UPDATE_IMMEDIATELY);
event->StopPropagation();
}
if (event->stopped_propagation())
return;
if (!part.submenu)
return;
part.submenu->OnGestureEvent(event);
}
bool MenuController::GetDropFormats(
SubmenuView* source,
int* formats,
std::set<OSExchangeData::CustomFormat>* custom_formats) {
return source->GetMenuItem()->GetDelegate()->GetDropFormats(
source->GetMenuItem(), formats, custom_formats);
}
bool MenuController::AreDropTypesRequired(SubmenuView* source) {
return source->GetMenuItem()->GetDelegate()->AreDropTypesRequired(
source->GetMenuItem());
}
bool MenuController::CanDrop(SubmenuView* source, const OSExchangeData& data) {
return source->GetMenuItem()->GetDelegate()->CanDrop(source->GetMenuItem(),
data);
}
void MenuController::OnDragEntered(SubmenuView* source,
const ui::DropTargetEvent& event) {
valid_drop_coordinates_ = false;
}
int MenuController::OnDragUpdated(SubmenuView* source,
const ui::DropTargetEvent& event) {
StopCancelAllTimer();
gfx::Point screen_loc(event.location());
View::ConvertPointToScreen(source, &screen_loc);
if (valid_drop_coordinates_ && screen_loc == drop_pt_)
return last_drop_operation_;
drop_pt_ = screen_loc;
valid_drop_coordinates_ = true;
MenuItemView* menu_item = GetMenuItemAt(source, event.x(), event.y());
bool over_empty_menu = false;
if (!menu_item) {
// See if we're over an empty menu.
menu_item = GetEmptyMenuItemAt(source, event.x(), event.y());
if (menu_item)
over_empty_menu = true;
}
MenuDelegate::DropPosition drop_position = MenuDelegate::DROP_NONE;
int drop_operation = ui::DragDropTypes::DRAG_NONE;
if (menu_item) {
gfx::Point menu_item_loc(event.location());
View::ConvertPointToTarget(source, menu_item, &menu_item_loc);
MenuItemView* query_menu_item;
if (!over_empty_menu) {
int menu_item_height = menu_item->height();
if (menu_item->HasSubmenu() &&
(menu_item_loc.y() > kDropBetweenPixels &&
menu_item_loc.y() < (menu_item_height - kDropBetweenPixels))) {
drop_position = MenuDelegate::DROP_ON;
} else {
drop_position = (menu_item_loc.y() < menu_item_height / 2) ?
MenuDelegate::DROP_BEFORE : MenuDelegate::DROP_AFTER;
}
query_menu_item = menu_item;
} else {
query_menu_item = menu_item->GetParentMenuItem();
drop_position = MenuDelegate::DROP_ON;
}
drop_operation = menu_item->GetDelegate()->GetDropOperation(
query_menu_item, event, &drop_position);
// If the menu has a submenu, schedule the submenu to open.
SetSelection(menu_item, menu_item->HasSubmenu() ? SELECTION_OPEN_SUBMENU :
SELECTION_DEFAULT);
if (drop_position == MenuDelegate::DROP_NONE ||
drop_operation == ui::DragDropTypes::DRAG_NONE)
menu_item = NULL;
} else {
SetSelection(source->GetMenuItem(), SELECTION_OPEN_SUBMENU);
}
SetDropMenuItem(menu_item, drop_position);
last_drop_operation_ = drop_operation;
return drop_operation;
}
void MenuController::OnDragExited(SubmenuView* source) {
StartCancelAllTimer();
if (drop_target_) {
StopShowTimer();
SetDropMenuItem(NULL, MenuDelegate::DROP_NONE);
}
}
int MenuController::OnPerformDrop(SubmenuView* source,
const ui::DropTargetEvent& event) {
DCHECK(drop_target_);
// NOTE: the delegate may delete us after invoking OnPerformDrop, as such
// we don't call cancel here.
MenuItemView* item = state_.item;
DCHECK(item);
MenuItemView* drop_target = drop_target_;
MenuDelegate::DropPosition drop_position = drop_position_;
// Close all menus, including any nested menus.
SetSelection(NULL, SELECTION_UPDATE_IMMEDIATELY | SELECTION_EXIT);
CloseAllNestedMenus();
// Set state such that we exit.
showing_ = false;
SetExitType(EXIT_ALL);
// If over an empty menu item, drop occurs on the parent.
if (drop_target->id() == MenuItemView::kEmptyMenuItemViewID)
drop_target = drop_target->GetParentMenuItem();
if (!IsBlockingRun()) {
delegate_->DropMenuClosed(
internal::MenuControllerDelegate::DONT_NOTIFY_DELEGATE,
item->GetRootMenuItem());
}
// WARNING: the call to MenuClosed deletes us.
return drop_target->GetDelegate()->OnPerformDrop(
drop_target, drop_position, event);
}
void MenuController::OnDragEnteredScrollButton(SubmenuView* source,
bool is_up) {
MenuPart part;
part.type = is_up ? MenuPart::SCROLL_UP : MenuPart::SCROLL_DOWN;
part.submenu = source;
UpdateScrolling(part);
// Do this to force the selection to hide.
SetDropMenuItem(source->GetMenuItemAt(0), MenuDelegate::DROP_NONE);
StopCancelAllTimer();
}
void MenuController::OnDragExitedScrollButton(SubmenuView* source) {
StartCancelAllTimer();
SetDropMenuItem(NULL, MenuDelegate::DROP_NONE);
StopScrolling();
}
void MenuController::UpdateSubmenuSelection(SubmenuView* submenu) {
if (submenu->IsShowing()) {
gfx::Point point = GetScreen()->GetCursorScreenPoint();
const SubmenuView* root_submenu =
submenu->GetMenuItem()->GetRootMenuItem()->GetSubmenu();
View::ConvertPointFromScreen(
root_submenu->GetWidget()->GetRootView(), &point);
HandleMouseLocation(submenu, point);
}
}
void MenuController::OnWidgetDestroying(Widget* widget) {
DCHECK_EQ(owner_, widget);
owner_->RemoveObserver(this);
owner_ = NULL;
}
// static
void MenuController::TurnOffMenuSelectionHoldForTest() {
menu_selection_hold_time_ms = -1;
}
void MenuController::SetSelection(MenuItemView* menu_item,
int selection_types) {
size_t paths_differ_at = 0;
std::vector<MenuItemView*> current_path;
std::vector<MenuItemView*> new_path;
BuildPathsAndCalculateDiff(pending_state_.item, menu_item, ¤t_path,
&new_path, &paths_differ_at);
size_t current_size = current_path.size();
size_t new_size = new_path.size();
bool pending_item_changed = pending_state_.item != menu_item;
if (pending_item_changed && pending_state_.item) {
View* current_hot_view = GetFirstHotTrackedView(pending_state_.item);
if (current_hot_view && !strcmp(current_hot_view->GetClassName(),
CustomButton::kViewClassName)) {
CustomButton* button = static_cast<CustomButton*>(current_hot_view);
button->SetHotTracked(false);
}
}
// Notify the old path it isn't selected.
MenuDelegate* current_delegate =
current_path.empty() ? NULL : current_path.front()->GetDelegate();
for (size_t i = paths_differ_at; i < current_size; ++i) {
if (current_delegate &&
current_path[i]->GetType() == MenuItemView::SUBMENU) {
current_delegate->WillHideMenu(current_path[i]);
}
current_path[i]->SetSelected(false);
}
// Notify the new path it is selected.
for (size_t i = paths_differ_at; i < new_size; ++i) {
new_path[i]->ScrollRectToVisible(new_path[i]->GetLocalBounds());
new_path[i]->SetSelected(true);
}
if (menu_item && menu_item->GetDelegate())
menu_item->GetDelegate()->SelectionChanged(menu_item);
DCHECK(menu_item || (selection_types & SELECTION_EXIT) != 0);
pending_state_.item = menu_item;
pending_state_.submenu_open = (selection_types & SELECTION_OPEN_SUBMENU) != 0;
// Stop timers.
StopCancelAllTimer();
// Resets show timer only when pending menu item is changed.
if (pending_item_changed)
StopShowTimer();
if (selection_types & SELECTION_UPDATE_IMMEDIATELY)
CommitPendingSelection();
else if (pending_item_changed)
StartShowTimer();
// Notify an accessibility focus event on all menu items except for the root.
if (menu_item &&
(MenuDepth(menu_item) != 1 ||
menu_item->GetType() != MenuItemView::SUBMENU)) {
menu_item->NotifyAccessibilityEvent(
ui::AccessibilityTypes::EVENT_FOCUS, true);
}
}
void MenuController::SetSelectionOnPointerDown(SubmenuView* source,
const ui::LocatedEvent& event) {
if (!blocking_run_)
return;
DCHECK(!GetActiveMouseView());
MenuPart part = GetMenuPart(source, event.location());
if (part.is_scroll())
return; // Ignore presses on scroll buttons.
// When this menu is opened through a touch event, a simulated right-click
// is sent before the menu appears. Ignore it.
if ((event.flags() & ui::EF_RIGHT_MOUSE_BUTTON) &&
(event.flags() & ui::EF_FROM_TOUCH))
return;
if (part.type == MenuPart::NONE ||
(part.type == MenuPart::MENU_ITEM && part.menu &&
part.menu->GetRootMenuItem() != state_.item->GetRootMenuItem())) {
// Remember the time when we repost the event. The owner can then use this
// to figure out if this menu was finished with the same click which is
// sent to it thereafter. Note that the time stamp front he event cannot be
// used since the reposting will set a new timestamp when the event gets
// processed. As such it is better to take the current time which will be
// closer to the time when it arrives again in the menu handler.
closing_event_time_ = ui::EventTimeForNow();
// Mouse wasn't pressed over any menu, or the active menu, cancel.
#if defined(OS_WIN)
// We're going to close and we own the mouse capture. We need to repost the
// mouse down, otherwise the window the user clicked on won't get the event.
if (!state_.item) {
// We some times get an event after closing all the menus. Ignore it. Make
// sure the menu is in fact not visible. If the menu is visible, then
// we're in a bad state where we think the menu isn't visibile but it is.
DCHECK(!source->GetWidget()->IsVisible());
} else {
RepostEvent(source, event);
}
#endif
// And close.
ExitType exit_type = EXIT_ALL;
if (!menu_stack_.empty()) {
// We're running nested menus. Only exit all if the mouse wasn't over one
// of the menus from the last run.
gfx::Point screen_loc(event.location());
View::ConvertPointToScreen(source->GetScrollViewContainer(), &screen_loc);
MenuPart last_part = GetMenuPartByScreenCoordinateUsingMenu(
menu_stack_.back().item, screen_loc);
if (last_part.type != MenuPart::NONE)
exit_type = EXIT_OUTERMOST;
}
Cancel(exit_type);
#if defined(USE_AURA) && !defined(OS_WIN)
// We're going to exit the menu and want to repost the event so that is
// is handled normally after the context menu has exited. We call
// RepostEvent after Cancel so that mouse capture has been released so
// that finding the event target is unaffected by the current capture.
RepostEvent(source, event);
#endif
return;
}
// On a press we immediately commit the selection, that way a submenu
// pops up immediately rather than after a delay.
int selection_types = SELECTION_UPDATE_IMMEDIATELY;
if (!part.menu) {
part.menu = part.parent;
selection_types |= SELECTION_OPEN_SUBMENU;
} else {
if (part.menu->GetDelegate()->CanDrag(part.menu)) {
possible_drag_ = true;
press_pt_ = event.location();
}
if (part.menu->HasSubmenu())
selection_types |= SELECTION_OPEN_SUBMENU;
}
SetSelection(part.menu, selection_types);
}
void MenuController::StartDrag(SubmenuView* source,
const gfx::Point& location) {
MenuItemView* item = state_.item;
DCHECK(item);
// Points are in the coordinates of the submenu, need to map to that of
// the selected item. Additionally source may not be the parent of
// the selected item, so need to map to screen first then to item.
gfx::Point press_loc(location);
View::ConvertPointToScreen(source->GetScrollViewContainer(), &press_loc);
View::ConvertPointToTarget(NULL, item, &press_loc);
gfx::Point widget_loc(press_loc);
View::ConvertPointToWidget(item, &widget_loc);
scoped_ptr<gfx::Canvas> canvas(GetCanvasForDragImage(
source->GetWidget(), gfx::Size(item->width(), item->height())));
item->PaintButton(canvas.get(), MenuItemView::PB_FOR_DRAG);
OSExchangeData data;
item->GetDelegate()->WriteDragData(item, &data);
drag_utils::SetDragImageOnDataObject(*canvas, item->size(),
press_loc.OffsetFromOrigin(),
&data);
StopScrolling();
int drag_ops = item->GetDelegate()->GetDragOperations(item);
drag_in_progress_ = true;
// TODO(varunjain): Properly determine and send DRAG_EVENT_SOURCE below.
item->GetWidget()->RunShellDrag(NULL, data, widget_loc, drag_ops,
ui::DragDropTypes::DRAG_EVENT_SOURCE_MOUSE);
drag_in_progress_ = false;
if (GetActiveInstance() == this) {
if (showing_) {
// We're still showing, close all menus.
CloseAllNestedMenus();
Cancel(EXIT_ALL);
} // else case, drop was on us.
} // else case, someone canceled us, don't do anything
}
#if defined(OS_WIN)
bool MenuController::Dispatch(const MSG& msg) {
DCHECK(blocking_run_);
if (exit_type_ == EXIT_ALL || exit_type_ == EXIT_DESTROYED) {
// We must translate/dispatch the message here, otherwise we would drop
// the message on the floor.
TranslateMessage(&msg);
DispatchMessage(&msg);
return false;
}
// NOTE: we don't get WM_ACTIVATE or anything else interesting in here.
switch (msg.message) {
case WM_CONTEXTMENU: {
MenuItemView* item = pending_state_.item;
if (item && item->GetRootMenuItem() != item) {
gfx::Point screen_loc(0, item->height());
View::ConvertPointToScreen(item, &screen_loc);
ui::MenuSourceType source_type = ui::MENU_SOURCE_MOUSE;
if (GET_X_LPARAM(msg.lParam) == -1 && GET_Y_LPARAM(msg.lParam) == -1)
source_type = ui::MENU_SOURCE_KEYBOARD;
item->GetDelegate()->ShowContextMenu(item, item->GetCommand(),
screen_loc, source_type);
}
return true;
}
// NOTE: focus wasn't changed when the menu was shown. As such, don't
// dispatch key events otherwise the focused window will get the events.
case WM_KEYDOWN: {
bool result = OnKeyDown(ui::KeyboardCodeFromNative(msg));
TranslateMessage(&msg);
return result;
}
case WM_CHAR:
return !SelectByChar(static_cast<char16>(msg.wParam));
case WM_KEYUP:
return true;
case WM_SYSKEYUP:
// We may have been shown on a system key, as such don't do anything
// here. If another system key is pushed we'll get a WM_SYSKEYDOWN and
// close the menu.
return true;
case WM_CANCELMODE:
case WM_SYSKEYDOWN:
// Exit immediately on system keys.
Cancel(EXIT_ALL);
return false;
default:
break;
}
TranslateMessage(&msg);
DispatchMessage(&msg);
return exit_type_ == EXIT_NONE;
}
#elif defined(USE_AURA)
bool MenuController::Dispatch(const base::NativeEvent& event) {
if (exit_type_ == EXIT_ALL || exit_type_ == EXIT_DESTROYED) {
aura::Env::GetInstance()->GetDispatcher()->Dispatch(event);
return false;
}
// Activates mnemonics only when it it pressed without modifiers except for
// caps and shift.
int flags = ui::EventFlagsFromNative(event) &
~ui::EF_CAPS_LOCK_DOWN & ~ui::EF_SHIFT_DOWN;
if (flags == ui::EF_NONE) {
switch (ui::EventTypeFromNative(event)) {
case ui::ET_KEY_PRESSED:
if (!OnKeyDown(ui::KeyboardCodeFromNative(event)))
return false;
return !SelectByChar(ui::KeyboardCodeFromNative(event));
case ui::ET_KEY_RELEASED:
return true;
default:
break;
}
}
aura::Env::GetInstance()->GetDispatcher()->Dispatch(event);
return exit_type_ == EXIT_NONE;
}
#endif
bool MenuController::OnKeyDown(ui::KeyboardCode key_code) {
DCHECK(blocking_run_);
switch (key_code) {
case ui::VKEY_UP:
IncrementSelection(-1);
break;
case ui::VKEY_DOWN:
IncrementSelection(1);
break;
// Handling of VK_RIGHT and VK_LEFT is different depending on the UI
// layout.
case ui::VKEY_RIGHT:
if (base::i18n::IsRTL())
CloseSubmenu();
else
OpenSubmenuChangeSelectionIfCan();
break;
case ui::VKEY_LEFT:
if (base::i18n::IsRTL())
OpenSubmenuChangeSelectionIfCan();
else
CloseSubmenu();
break;
case ui::VKEY_SPACE:
if (SendAcceleratorToHotTrackedView() == ACCELERATOR_PROCESSED_EXIT)
return false;
break;
case ui::VKEY_F4:
if (!accept_on_f4_)
break;
// Fallthrough to accept on F4, so combobox menus match Windows behavior.
case ui::VKEY_RETURN:
if (pending_state_.item) {
if (pending_state_.item->HasSubmenu()) {
OpenSubmenuChangeSelectionIfCan();
} else {
SendAcceleratorResultType result = SendAcceleratorToHotTrackedView();
if (result == ACCELERATOR_NOT_PROCESSED &&
pending_state_.item->enabled()) {
Accept(pending_state_.item, 0);
return false;
} else if (result == ACCELERATOR_PROCESSED_EXIT) {
return false;
}
}
}
break;
case ui::VKEY_ESCAPE:
if (!state_.item->GetParentMenuItem() ||
(!state_.item->GetParentMenuItem()->GetParentMenuItem() &&
(!state_.item->HasSubmenu() ||
!state_.item->GetSubmenu()->IsShowing()))) {
// User pressed escape and only one menu is shown, cancel it.
Cancel(EXIT_OUTERMOST);
return false;
}
CloseSubmenu();
break;
#if defined(OS_WIN)
case VK_APPS:
break;
#endif
default:
break;
}
return true;
}
MenuController::MenuController(ui::NativeTheme* theme,
bool blocking,
internal::MenuControllerDelegate* delegate)
: blocking_run_(blocking),
showing_(false),
exit_type_(EXIT_NONE),
did_capture_(false),
result_(NULL),
accept_event_flags_(0),
drop_target_(NULL),
drop_position_(MenuDelegate::DROP_UNKNOWN),
owner_(NULL),
possible_drag_(false),
drag_in_progress_(false),
valid_drop_coordinates_(false),
last_drop_operation_(MenuDelegate::DROP_UNKNOWN),
showing_submenu_(false),
menu_button_(NULL),
active_mouse_view_id_(ViewStorage::GetInstance()->CreateStorageID()),
delegate_(delegate),
message_loop_depth_(0),
menu_config_(theme),
closing_event_time_(base::TimeDelta()),
menu_start_time_(base::TimeTicks()),
accept_on_f4_(false),
item_selected_by_touch_(false) {
active_instance_ = this;
}
MenuController::~MenuController() {
DCHECK(!showing_);
if (owner_)
owner_->RemoveObserver(this);
if (active_instance_ == this)
active_instance_ = NULL;
StopShowTimer();
StopCancelAllTimer();
}
MenuController::SendAcceleratorResultType
MenuController::SendAcceleratorToHotTrackedView() {
View* hot_view = GetFirstHotTrackedView(pending_state_.item);
if (!hot_view)
return ACCELERATOR_NOT_PROCESSED;
ui::Accelerator accelerator(ui::VKEY_RETURN, ui::EF_NONE);
hot_view->AcceleratorPressed(accelerator);
if (!strcmp(hot_view->GetClassName(), CustomButton::kViewClassName)) {
CustomButton* button = static_cast<CustomButton*>(hot_view);
button->SetHotTracked(true);
}
return (exit_type_ == EXIT_NONE) ?
ACCELERATOR_PROCESSED : ACCELERATOR_PROCESSED_EXIT;
}
void MenuController::UpdateInitialLocation(
const gfx::Rect& bounds,
MenuItemView::AnchorPosition position,
bool context_menu) {
pending_state_.context_menu = context_menu;
pending_state_.initial_bounds = bounds;
if (bounds.height() > 1) {
// Inset the bounds slightly, otherwise drag coordinates don't line up
// nicely and menus close prematurely.
pending_state_.initial_bounds.Inset(0, 1);
}
// Reverse anchor position for RTL languages.
if (base::i18n::IsRTL() &&
(position == MenuItemView::TOPRIGHT ||
position == MenuItemView::TOPLEFT)) {
pending_state_.anchor = position == MenuItemView::TOPRIGHT ?
MenuItemView::TOPLEFT : MenuItemView::TOPRIGHT;
} else {
pending_state_.anchor = position;
}
// Calculate the bounds of the monitor we'll show menus on. Do this once to
// avoid repeated system queries for the info.
pending_state_.monitor_bounds = GetScreen()->GetDisplayNearestPoint(
bounds.origin()).work_area();
#if defined(USE_ASH)
if (!pending_state_.monitor_bounds.Contains(bounds)) {
// Use the monitor area if the work area doesn't contain the bounds. This
// handles showing a menu from the launcher.
gfx::Rect monitor_area = GetScreen()->GetDisplayNearestPoint(
bounds.origin()).bounds();
if (monitor_area.Contains(bounds))
pending_state_.monitor_bounds = monitor_area;
}
#endif
}
void MenuController::Accept(MenuItemView* item, int event_flags) {
DCHECK(IsBlockingRun());
result_ = item;
if (item && !menu_stack_.empty() &&
!item->GetDelegate()->ShouldCloseAllMenusOnExecute(item->GetCommand())) {
SetExitType(EXIT_OUTERMOST);
} else {
SetExitType(EXIT_ALL);
}
accept_event_flags_ = event_flags;
}
bool MenuController::ShowSiblingMenu(SubmenuView* source,
const gfx::Point& mouse_location) {
if (!menu_stack_.empty() || !menu_button_)
return false;
View* source_view = source->GetScrollViewContainer();
if (mouse_location.x() >= 0 &&
mouse_location.x() < source_view->width() &&
mouse_location.y() >= 0 &&
mouse_location.y() < source_view->height()) {
// The mouse is over the menu, no need to continue.
return false;
}
gfx::NativeWindow window_under_mouse = GetScreen()->GetWindowUnderCursor();
// TODO(oshima): Replace with views only API.
if (!owner_ || window_under_mouse != owner_->GetNativeWindow())
return false;
// The user moved the mouse outside the menu and over the owning window. See
// if there is a sibling menu we should show.
gfx::Point screen_point(mouse_location);
View::ConvertPointToScreen(source_view, &screen_point);
MenuItemView::AnchorPosition anchor;
bool has_mnemonics;
MenuButton* button = NULL;
MenuItemView* alt_menu = source->GetMenuItem()->GetDelegate()->
GetSiblingMenu(source->GetMenuItem()->GetRootMenuItem(),
screen_point, &anchor, &has_mnemonics, &button);
if (!alt_menu || (state_.item && state_.item->GetRootMenuItem() == alt_menu))
return false;
delegate_->SiblingMenuCreated(alt_menu);
if (!button) {
// If the delegate returns a menu, they must also return a button.
NOTREACHED();
return false;
}
// There is a sibling menu, update the button state, hide the current menu
// and show the new one.
menu_button_->SetState(CustomButton::STATE_NORMAL);
menu_button_->SchedulePaint();
menu_button_ = button;
menu_button_->SetState(CustomButton::STATE_PRESSED);
menu_button_->SchedulePaint();
// Need to reset capture when we show the menu again, otherwise we aren't
// going to get any events.
did_capture_ = false;
gfx::Point screen_menu_loc;
View::ConvertPointToScreen(button, &screen_menu_loc);
// It is currently not possible to show a submenu recursively in a bubble.
DCHECK(!MenuItemView::IsBubble(anchor));
// Subtract 1 from the height to make the popup flush with the button border.
UpdateInitialLocation(gfx::Rect(screen_menu_loc.x(), screen_menu_loc.y(),
button->width(), button->height() - 1),
anchor, state_.context_menu);
alt_menu->PrepareForRun(
false, has_mnemonics,
source->GetMenuItem()->GetRootMenuItem()->show_mnemonics_);
alt_menu->controller_ = this;
SetSelection(alt_menu, SELECTION_OPEN_SUBMENU | SELECTION_UPDATE_IMMEDIATELY);
return true;
}
bool MenuController::ShowContextMenu(MenuItemView* menu_item,
SubmenuView* source,
const ui::LocatedEvent& event,
ui::MenuSourceType source_type) {
// Set the selection immediately, making sure the submenu is only open
// if it already was.
int selection_types = SELECTION_UPDATE_IMMEDIATELY;
if (state_.item == pending_state_.item && state_.submenu_open)
selection_types |= SELECTION_OPEN_SUBMENU;
SetSelection(pending_state_.item, selection_types);
gfx::Point loc(event.location());
View::ConvertPointToScreen(source->GetScrollViewContainer(), &loc);
if (menu_item->GetDelegate()->ShowContextMenu(
menu_item, menu_item->GetCommand(), loc, source_type)) {
SendMouseCaptureLostToActiveView();
return true;
}
return false;
}
void MenuController::CloseAllNestedMenus() {
for (std::list<State>::iterator i = menu_stack_.begin();
i != menu_stack_.end(); ++i) {
MenuItemView* last_item = i->item;
for (MenuItemView* item = last_item; item;
item = item->GetParentMenuItem()) {
CloseMenu(item);
last_item = item;
}
i->submenu_open = false;
i->item = last_item;
}
}
MenuItemView* MenuController::GetMenuItemAt(View* source, int x, int y) {
// Walk the view hierarchy until we find a menu item (or the root).
View* child_under_mouse = source->GetEventHandlerForPoint(gfx::Point(x, y));
while (child_under_mouse &&
child_under_mouse->id() != MenuItemView::kMenuItemViewID) {
child_under_mouse = child_under_mouse->parent();
}
if (child_under_mouse && child_under_mouse->enabled() &&
child_under_mouse->id() == MenuItemView::kMenuItemViewID) {
return static_cast<MenuItemView*>(child_under_mouse);
}
return NULL;
}
MenuItemView* MenuController::GetEmptyMenuItemAt(View* source, int x, int y) {
View* child_under_mouse = source->GetEventHandlerForPoint(gfx::Point(x, y));
if (child_under_mouse &&
child_under_mouse->id() == MenuItemView::kEmptyMenuItemViewID) {
return static_cast<MenuItemView*>(child_under_mouse);
}
return NULL;
}
bool MenuController::IsScrollButtonAt(SubmenuView* source,
int x,
int y,
MenuPart::Type* part) {
MenuScrollViewContainer* scroll_view = source->GetScrollViewContainer();
View* child_under_mouse =
scroll_view->GetEventHandlerForPoint(gfx::Point(x, y));
if (child_under_mouse && child_under_mouse->enabled()) {
if (child_under_mouse == scroll_view->scroll_up_button()) {
*part = MenuPart::SCROLL_UP;
return true;
}
if (child_under_mouse == scroll_view->scroll_down_button()) {
*part = MenuPart::SCROLL_DOWN;
return true;
}
}
return false;
}
MenuController::MenuPart MenuController::GetMenuPart(
SubmenuView* source,
const gfx::Point& source_loc) {
gfx::Point screen_loc(source_loc);
View::ConvertPointToScreen(source->GetScrollViewContainer(), &screen_loc);
return GetMenuPartByScreenCoordinateUsingMenu(state_.item, screen_loc);
}
MenuController::MenuPart MenuController::GetMenuPartByScreenCoordinateUsingMenu(
MenuItemView* item,
const gfx::Point& screen_loc) {
MenuPart part;
for (; item; item = item->GetParentMenuItem()) {
if (item->HasSubmenu() && item->GetSubmenu()->IsShowing() &&
GetMenuPartByScreenCoordinateImpl(item->GetSubmenu(), screen_loc,
&part)) {
return part;
}
}
return part;
}
bool MenuController::GetMenuPartByScreenCoordinateImpl(
SubmenuView* menu,
const gfx::Point& screen_loc,
MenuPart* part) {
// Is the mouse over the scroll buttons?
gfx::Point scroll_view_loc = screen_loc;
View* scroll_view_container = menu->GetScrollViewContainer();
View::ConvertPointToTarget(NULL, scroll_view_container, &scroll_view_loc);
if (scroll_view_loc.x() < 0 ||
scroll_view_loc.x() >= scroll_view_container->width() ||
scroll_view_loc.y() < 0 ||
scroll_view_loc.y() >= scroll_view_container->height()) {
// Point isn't contained in menu.
return false;
}
if (IsScrollButtonAt(menu, scroll_view_loc.x(), scroll_view_loc.y(),
&(part->type))) {
part->submenu = menu;
return true;
}
// Not over the scroll button. Check the actual menu.
if (DoesSubmenuContainLocation(menu, screen_loc)) {
gfx::Point menu_loc = screen_loc;
View::ConvertPointToTarget(NULL, menu, &menu_loc);
part->menu = GetMenuItemAt(menu, menu_loc.x(), menu_loc.y());
part->type = MenuPart::MENU_ITEM;
part->submenu = menu;
if (!part->menu)
part->parent = menu->GetMenuItem();
return true;
}
// While the mouse isn't over a menu item or the scroll buttons of menu, it
// is contained by menu and so we return true. If we didn't return true other
// menus would be searched, even though they are likely obscured by us.
return true;
}
bool MenuController::DoesSubmenuContainLocation(SubmenuView* submenu,
const gfx::Point& screen_loc) {
gfx::Point view_loc = screen_loc;
View::ConvertPointToTarget(NULL, submenu, &view_loc);
gfx::Rect vis_rect = submenu->GetVisibleBounds();
return vis_rect.Contains(view_loc.x(), view_loc.y());
}
void MenuController::CommitPendingSelection() {
StopShowTimer();
size_t paths_differ_at = 0;
std::vector<MenuItemView*> current_path;
std::vector<MenuItemView*> new_path;
BuildPathsAndCalculateDiff(state_.item, pending_state_.item, ¤t_path,
&new_path, &paths_differ_at);
// Hide the old menu.
for (size_t i = paths_differ_at; i < current_path.size(); ++i) {
if (current_path[i]->HasSubmenu()) {
current_path[i]->GetSubmenu()->Hide();
}
}
// Copy pending to state_, making sure to preserve the direction menus were
// opened.
std::list<bool> pending_open_direction;
state_.open_leading.swap(pending_open_direction);
state_ = pending_state_;
state_.open_leading.swap(pending_open_direction);
int menu_depth = MenuDepth(state_.item);
if (menu_depth == 0) {
state_.open_leading.clear();
} else {
int cached_size = static_cast<int>(state_.open_leading.size());
DCHECK_GE(menu_depth, 0);
while (cached_size-- >= menu_depth)
state_.open_leading.pop_back();
}
if (!state_.item) {
// Nothing to select.
StopScrolling();
return;
}
// Open all the submenus preceeding the last menu item (last menu item is
// handled next).
if (new_path.size() > 1) {
for (std::vector<MenuItemView*>::iterator i = new_path.begin();
i != new_path.end() - 1; ++i) {
OpenMenu(*i);
}
}
if (state_.submenu_open) {
// The submenu should be open, open the submenu if the item has a submenu.
if (state_.item->HasSubmenu()) {
OpenMenu(state_.item);
} else {
state_.submenu_open = false;
}
} else if (state_.item->HasSubmenu() &&
state_.item->GetSubmenu()->IsShowing()) {
state_.item->GetSubmenu()->Hide();
}
if (scroll_task_.get() && scroll_task_->submenu()) {
// Stop the scrolling if none of the elements of the selection contain
// the menu being scrolled.
bool found = false;
for (MenuItemView* item = state_.item; item && !found;
item = item->GetParentMenuItem()) {
found = (item->HasSubmenu() && item->GetSubmenu()->IsShowing() &&
item->GetSubmenu() == scroll_task_->submenu());
}
if (!found)
StopScrolling();
}
}
void MenuController::CloseMenu(MenuItemView* item) {
DCHECK(item);
if (!item->HasSubmenu())
return;
item->GetSubmenu()->Hide();
}
void MenuController::OpenMenu(MenuItemView* item) {
DCHECK(item);
if (item->GetSubmenu()->IsShowing()) {
return;
}
OpenMenuImpl(item, true);
did_capture_ = true;
}
void MenuController::OpenMenuImpl(MenuItemView* item, bool show) {
// TODO(oshima|sky): Don't show the menu if drag is in progress and
// this menu doesn't support drag drop. See crbug.com/110495.
if (show) {
int old_count = item->GetSubmenu()->child_count();
item->GetDelegate()->WillShowMenu(item);
if (old_count != item->GetSubmenu()->child_count()) {
// If the number of children changed then we may need to add empty items.
item->AddEmptyMenus();
}
}
bool prefer_leading =
state_.open_leading.empty() ? true : state_.open_leading.back();
bool resulting_direction;
gfx::Rect bounds = MenuItemView::IsBubble(state_.anchor) ?
CalculateBubbleMenuBounds(item, prefer_leading, &resulting_direction) :
CalculateMenuBounds(item, prefer_leading, &resulting_direction);
state_.open_leading.push_back(resulting_direction);
bool do_capture = (!did_capture_ && blocking_run_);
showing_submenu_ = true;
if (show) {
// Menus are the only place using kGroupingPropertyKey, so any value (other
// than 0) is fine.
const int kGroupingId = 1001;
item->GetSubmenu()->ShowAt(owner_, bounds, do_capture);
item->GetSubmenu()->GetWidget()->SetNativeWindowProperty(
TooltipManager::kGroupingPropertyKey,
reinterpret_cast<void*>(kGroupingId));
} else {
item->GetSubmenu()->Reposition(bounds);
}
showing_submenu_ = false;
}
void MenuController::MenuChildrenChanged(MenuItemView* item) {
DCHECK(item);
// Menu shouldn't be updated during drag operation.
DCHECK(!GetActiveMouseView());
// If the current item or pending item is a descendant of the item
// that changed, move the selection back to the changed item.
const MenuItemView* ancestor = state_.item;
while (ancestor && ancestor != item)
ancestor = ancestor->GetParentMenuItem();
if (!ancestor) {
ancestor = pending_state_.item;
while (ancestor && ancestor != item)
ancestor = ancestor->GetParentMenuItem();
if (!ancestor)
return;
}
SetSelection(item, SELECTION_OPEN_SUBMENU | SELECTION_UPDATE_IMMEDIATELY);
if (item->HasSubmenu())
OpenMenuImpl(item, false);
}
void MenuController::BuildPathsAndCalculateDiff(
MenuItemView* old_item,
MenuItemView* new_item,
std::vector<MenuItemView*>* old_path,
std::vector<MenuItemView*>* new_path,
size_t* first_diff_at) {
DCHECK(old_path && new_path && first_diff_at);
BuildMenuItemPath(old_item, old_path);
BuildMenuItemPath(new_item, new_path);
size_t common_size = std::min(old_path->size(), new_path->size());
// Find the first difference between the two paths, when the loop
// returns, diff_i is the first index where the two paths differ.
for (size_t i = 0; i < common_size; ++i) {
if ((*old_path)[i] != (*new_path)[i]) {
*first_diff_at = i;
return;
}
}
*first_diff_at = common_size;
}
void MenuController::BuildMenuItemPath(MenuItemView* item,
std::vector<MenuItemView*>* path) {
if (!item)
return;
BuildMenuItemPath(item->GetParentMenuItem(), path);
path->push_back(item);
}
void MenuController::StartShowTimer() {
show_timer_.Start(FROM_HERE,
TimeDelta::FromMilliseconds(menu_config_.show_delay),
this, &MenuController::CommitPendingSelection);
}
void MenuController::StopShowTimer() {
show_timer_.Stop();
}
void MenuController::StartCancelAllTimer() {
cancel_all_timer_.Start(FROM_HERE,
TimeDelta::FromMilliseconds(kCloseOnExitTime),
this, &MenuController::CancelAll);
}
void MenuController::StopCancelAllTimer() {
cancel_all_timer_.Stop();
}
gfx::Rect MenuController::CalculateMenuBounds(MenuItemView* item,
bool prefer_leading,
bool* is_leading) {
DCHECK(item);
SubmenuView* submenu = item->GetSubmenu();
DCHECK(submenu);
gfx::Size pref = submenu->GetScrollViewContainer()->GetPreferredSize();
// Don't let the menu go too wide.
pref.set_width(std::min(pref.width(),
item->GetDelegate()->GetMaxWidthForMenu(item)));
if (!state_.monitor_bounds.IsEmpty())
pref.set_width(std::min(pref.width(), state_.monitor_bounds.width()));
// Assume we can honor prefer_leading.
*is_leading = prefer_leading;
int x, y;
const MenuConfig& menu_config = item->GetMenuConfig();
if (!item->GetParentMenuItem()) {
// First item, position relative to initial location.
x = state_.initial_bounds.x();
// Offsets for context menu prevent menu items being selected by
// simply opening the menu (bug 142992).
if (menu_config.offset_context_menus && state_.context_menu)
x += 1;
y = state_.initial_bounds.bottom();
if (state_.anchor == MenuItemView::TOPRIGHT) {
x = x + state_.initial_bounds.width() - pref.width();
if (menu_config.offset_context_menus && state_.context_menu)
x -= 1;
} else if (state_.anchor == MenuItemView::BOTTOMCENTER) {
x = x - (pref.width() - state_.initial_bounds.width()) / 2;
if (pref.height() >
state_.initial_bounds.y() + kCenteredContextMenuYOffset) {
// Menu does not fit above the anchor. We move it to below.
y = state_.initial_bounds.y() - kCenteredContextMenuYOffset;
} else {
y = std::max(0, state_.initial_bounds.y() - pref.height()) +
kCenteredContextMenuYOffset;
}
}
if (!state_.monitor_bounds.IsEmpty() &&
y + pref.height() > state_.monitor_bounds.bottom()) {
// The menu doesn't fit fully below the button on the screen. The menu
// position with respect to the bounds will be preserved if it has
// already been drawn. When the requested positioning is below the bounds
// it will shrink the menu to make it fit below.
// If the requested positioning is best fit, it will first try to fit the
// menu below. If that does not fit it will try to place it above. If
// that will not fit it will place it at the bottom of the work area and
// moving it off the initial_bounds region to avoid overlap.
// In all other requested position styles it will be flipped above and
// the height will be shrunken to the usable height.
if (item->actual_menu_position() == MenuItemView::POSITION_BELOW_BOUNDS) {
pref.set_height(std::min(pref.height(),
state_.monitor_bounds.bottom() - y));
} else if (item->actual_menu_position() ==
MenuItemView::POSITION_BEST_FIT) {
MenuItemView::MenuPosition orientation =
MenuItemView::POSITION_BELOW_BOUNDS;
if (state_.monitor_bounds.height() < pref.height()) {
// Handle very tall menus.
pref.set_height(state_.monitor_bounds.height());
y = state_.monitor_bounds.y();
} else if (state_.monitor_bounds.y() + pref.height() <
state_.initial_bounds.y()) {
// Flipping upwards if there is enough space.
y = state_.initial_bounds.y() - pref.height();
orientation = MenuItemView::POSITION_ABOVE_BOUNDS;
} else {
// It is allowed to move the menu a bit around in order to get the
// best fit and to avoid showing scroll elements.
y = state_.monitor_bounds.bottom() - pref.height();
}
if (orientation == MenuItemView::POSITION_BELOW_BOUNDS) {
// The menu should never overlap the owning button. So move it.
// We use the anchor view style to determine the preferred position
// relative to the owning button.
if (state_.anchor == MenuItemView::TOPLEFT) {
// The menu starts with the same x coordinate as the owning button.
if (x + state_.initial_bounds.width() + pref.width() >
state_.monitor_bounds.right())
x -= pref.width(); // Move the menu to the left of the button.
else
x += state_.initial_bounds.width(); // Move the menu right.
} else {
// The menu should end with the same x coordinate as the owning
// button.
if (state_.monitor_bounds.x() >
state_.initial_bounds.x() - pref.width())
x = state_.initial_bounds.right(); // Move right of the button.
else
x = state_.initial_bounds.x() - pref.width(); // Move left.
}
}
item->set_actual_menu_position(orientation);
} else {
pref.set_height(std::min(pref.height(),
state_.initial_bounds.y() - state_.monitor_bounds.y()));
y = state_.initial_bounds.y() - pref.height();
item->set_actual_menu_position(MenuItemView::POSITION_ABOVE_BOUNDS);
}
} else if (item->actual_menu_position() ==
MenuItemView::POSITION_ABOVE_BOUNDS) {
pref.set_height(std::min(pref.height(),
state_.initial_bounds.y() - state_.monitor_bounds.y()));
y = state_.initial_bounds.y() - pref.height();
} else {
item->set_actual_menu_position(MenuItemView::POSITION_BELOW_BOUNDS);
}
if (state_.monitor_bounds.width() != 0 &&
menu_config.offset_context_menus && state_.context_menu) {
if (x + pref.width() > state_.monitor_bounds.right())
x = state_.initial_bounds.x() - pref.width() - 1;
if (x < state_.monitor_bounds.x())
x = state_.monitor_bounds.x();
}
} else {
// Not the first menu; position it relative to the bounds of the menu
// item.
gfx::Point item_loc;
View::ConvertPointToScreen(item, &item_loc);
// We must make sure we take into account the UI layout. If the layout is
// RTL, then a 'leading' menu is positioned to the left of the parent menu
// item and not to the right.
bool layout_is_rtl = base::i18n::IsRTL();
bool create_on_the_right = (prefer_leading && !layout_is_rtl) ||
(!prefer_leading && layout_is_rtl);
int submenu_horizontal_inset = menu_config.submenu_horizontal_inset;
if (create_on_the_right) {
x = item_loc.x() + item->width() - submenu_horizontal_inset;
if (state_.monitor_bounds.width() != 0 &&
x + pref.width() > state_.monitor_bounds.right()) {
if (layout_is_rtl)
*is_leading = true;
else
*is_leading = false;
x = item_loc.x() - pref.width() + submenu_horizontal_inset;
}
} else {
x = item_loc.x() - pref.width() + submenu_horizontal_inset;
if (state_.monitor_bounds.width() != 0 && x < state_.monitor_bounds.x()) {
if (layout_is_rtl)
*is_leading = false;
else
*is_leading = true;
x = item_loc.x() + item->width() - submenu_horizontal_inset;
}
}
y = item_loc.y() - menu_config.menu_vertical_border_size;
if (state_.monitor_bounds.width() != 0) {
pref.set_height(std::min(pref.height(), state_.monitor_bounds.height()));
if (y + pref.height() > state_.monitor_bounds.bottom())
y = state_.monitor_bounds.bottom() - pref.height();
if (y < state_.monitor_bounds.y())
y = state_.monitor_bounds.y();
}
}
if (state_.monitor_bounds.width() != 0) {
if (x + pref.width() > state_.monitor_bounds.right())
x = state_.monitor_bounds.right() - pref.width();
if (x < state_.monitor_bounds.x())
x = state_.monitor_bounds.x();
}
return gfx::Rect(x, y, pref.width(), pref.height());
}
gfx::Rect MenuController::CalculateBubbleMenuBounds(MenuItemView* item,
bool prefer_leading,
bool* is_leading) {
DCHECK(item);
DCHECK(!item->GetParentMenuItem());
// Assume we can honor prefer_leading.
*is_leading = prefer_leading;
SubmenuView* submenu = item->GetSubmenu();
DCHECK(submenu);
gfx::Size pref = submenu->GetScrollViewContainer()->GetPreferredSize();
const gfx::Rect& owner_bounds = pending_state_.initial_bounds;
// First the size gets reduced to the possible space.
if (!state_.monitor_bounds.IsEmpty()) {
int max_width = state_.monitor_bounds.width();
int max_height = state_.monitor_bounds.height();
// In case of bubbles, the maximum width is limited by the space
// between the display corner and the target area + the tip size.
if (state_.anchor == MenuItemView::BUBBLE_LEFT) {
max_width = owner_bounds.x() - state_.monitor_bounds.x() +
kBubbleTipSizeLeftRight;
} else if (state_.anchor == MenuItemView::BUBBLE_RIGHT) {
max_width = state_.monitor_bounds.right() - owner_bounds.right() +
kBubbleTipSizeLeftRight;
} else if (state_.anchor == MenuItemView::BUBBLE_ABOVE) {
max_height = owner_bounds.y() - state_.monitor_bounds.y() +
kBubbleTipSizeTopBottom;
} else if (state_.anchor == MenuItemView::BUBBLE_BELOW) {
max_height = state_.monitor_bounds.bottom() - owner_bounds.bottom() +
kBubbleTipSizeTopBottom;
}
// The space for the menu to cover should never get empty.
DCHECK_GE(max_width, kBubbleTipSizeLeftRight);
DCHECK_GE(max_height, kBubbleTipSizeTopBottom);
pref.set_width(std::min(pref.width(), max_width));
pref.set_height(std::min(pref.height(), max_height));
}
// Also make sure that the menu does not go too wide.
pref.set_width(std::min(pref.width(),
item->GetDelegate()->GetMaxWidthForMenu(item)));
int x, y;
if (state_.anchor == MenuItemView::BUBBLE_ABOVE ||
state_.anchor == MenuItemView::BUBBLE_BELOW) {
if (state_.anchor == MenuItemView::BUBBLE_ABOVE)
y = owner_bounds.y() - pref.height() + kBubbleTipSizeTopBottom;
else
y = owner_bounds.bottom() - kBubbleTipSizeTopBottom;
x = owner_bounds.CenterPoint().x() - pref.width() / 2;
int x_old = x;
if (x < state_.monitor_bounds.x()) {
x = state_.monitor_bounds.x();
} else if (x + pref.width() > state_.monitor_bounds.right()) {
x = state_.monitor_bounds.right() - pref.width();
}
submenu->GetScrollViewContainer()->SetBubbleArrowOffset(
pref.width() / 2 - x + x_old);
} else {
if (state_.anchor == MenuItemView::BUBBLE_RIGHT)
x = owner_bounds.right() - kBubbleTipSizeLeftRight;
else
x = owner_bounds.x() - pref.width() + kBubbleTipSizeLeftRight;
y = owner_bounds.CenterPoint().y() - pref.height() / 2;
int y_old = y;
if (y < state_.monitor_bounds.y()) {
y = state_.monitor_bounds.y();
} else if (y + pref.height() > state_.monitor_bounds.bottom()) {
y = state_.monitor_bounds.bottom() - pref.height();
}
submenu->GetScrollViewContainer()->SetBubbleArrowOffset(
pref.height() / 2 - y + y_old);
}
return gfx::Rect(x, y, pref.width(), pref.height());
}
// static
int MenuController::MenuDepth(MenuItemView* item) {
return item ? (MenuDepth(item->GetParentMenuItem()) + 1) : 0;
}
void MenuController::IncrementSelection(int delta) {
MenuItemView* item = pending_state_.item;
DCHECK(item);
if (pending_state_.submenu_open && item->HasSubmenu() &&
item->GetSubmenu()->IsShowing()) {
// A menu is selected and open, but none of its children are selected,
// select the first menu item.
if (item->GetSubmenu()->GetMenuItemCount()) {
SetSelection(item->GetSubmenu()->GetMenuItemAt(0), SELECTION_DEFAULT);
return;
}
}
if (item->has_children()) {
View* hot_view = GetFirstHotTrackedView(item);
if (hot_view &&
!strcmp(hot_view->GetClassName(), CustomButton::kViewClassName)) {
CustomButton* button = static_cast<CustomButton*>(hot_view);
button->SetHotTracked(false);
View* to_make_hot = GetNextFocusableView(item, button, delta == 1);
if (to_make_hot &&
!strcmp(to_make_hot->GetClassName(), CustomButton::kViewClassName)) {
CustomButton* button_hot = static_cast<CustomButton*>(to_make_hot);
button_hot->SetHotTracked(true);
return;
}
} else {
View* to_make_hot = GetInitialFocusableView(item, delta == 1);
if (to_make_hot &&
!strcmp(to_make_hot->GetClassName(), CustomButton::kViewClassName)) {
CustomButton* button_hot = static_cast<CustomButton*>(to_make_hot);
button_hot->SetHotTracked(true);
return;
}
}
}
MenuItemView* parent = item->GetParentMenuItem();
if (parent) {
int parent_count = parent->GetSubmenu()->GetMenuItemCount();
if (parent_count > 1) {
for (int i = 0; i < parent_count; ++i) {
if (parent->GetSubmenu()->GetMenuItemAt(i) == item) {
MenuItemView* to_select =
FindNextSelectableMenuItem(parent, i, delta);
if (!to_select)
break;
SetSelection(to_select, SELECTION_DEFAULT);
View* to_make_hot = GetInitialFocusableView(to_select, delta == 1);
if (to_make_hot && !strcmp(to_make_hot->GetClassName(),
CustomButton::kViewClassName)) {
CustomButton* button_hot = static_cast<CustomButton*>(to_make_hot);
button_hot->SetHotTracked(true);
}
break;
}
}
}
}
}
MenuItemView* MenuController::FindNextSelectableMenuItem(MenuItemView* parent,
int index,
int delta) {
int start_index = index;
int parent_count = parent->GetSubmenu()->GetMenuItemCount();
// Loop through the menu items skipping any invisible menus. The loop stops
// when we wrap or find a visible child.
do {
index = (index + delta + parent_count) % parent_count;
if (index == start_index)
return NULL;
MenuItemView* child = parent->GetSubmenu()->GetMenuItemAt(index);
if (child->visible())
return child;
} while (index != start_index);
return NULL;
}
void MenuController::OpenSubmenuChangeSelectionIfCan() {
MenuItemView* item = pending_state_.item;
if (item->HasSubmenu() && item->enabled()) {
if (item->GetSubmenu()->GetMenuItemCount() > 0) {
SetSelection(item->GetSubmenu()->GetMenuItemAt(0),
SELECTION_UPDATE_IMMEDIATELY);
} else {
// No menu items, just show the sub-menu.
SetSelection(item, SELECTION_OPEN_SUBMENU | SELECTION_UPDATE_IMMEDIATELY);
}
}
}
void MenuController::CloseSubmenu() {
MenuItemView* item = state_.item;
DCHECK(item);
if (!item->GetParentMenuItem())
return;
if (item->HasSubmenu() && item->GetSubmenu()->IsShowing())
SetSelection(item, SELECTION_UPDATE_IMMEDIATELY);
else if (item->GetParentMenuItem()->GetParentMenuItem())
SetSelection(item->GetParentMenuItem(), SELECTION_UPDATE_IMMEDIATELY);
}
MenuController::SelectByCharDetails MenuController::FindChildForMnemonic(
MenuItemView* parent,
char16 key,
bool (*match_function)(MenuItemView* menu, char16 mnemonic)) {
SubmenuView* submenu = parent->GetSubmenu();
DCHECK(submenu);
SelectByCharDetails details;
for (int i = 0, menu_item_count = submenu->GetMenuItemCount();
i < menu_item_count; ++i) {
MenuItemView* child = submenu->GetMenuItemAt(i);
if (child->enabled() && child->visible()) {
if (child == pending_state_.item)
details.index_of_item = i;
if (match_function(child, key)) {
if (details.first_match == -1)
details.first_match = i;
else
details.has_multiple = true;
if (details.next_match == -1 && details.index_of_item != -1 &&
i > details.index_of_item)
details.next_match = i;
}
}
}
return details;
}
bool MenuController::AcceptOrSelect(MenuItemView* parent,
const SelectByCharDetails& details) {
// This should only be invoked if there is a match.
DCHECK(details.first_match != -1);
DCHECK(parent->HasSubmenu());
SubmenuView* submenu = parent->GetSubmenu();
DCHECK(submenu);
if (!details.has_multiple) {
// There's only one match, activate it (or open if it has a submenu).
if (submenu->GetMenuItemAt(details.first_match)->HasSubmenu()) {
SetSelection(submenu->GetMenuItemAt(details.first_match),
SELECTION_OPEN_SUBMENU | SELECTION_UPDATE_IMMEDIATELY);
} else {
Accept(submenu->GetMenuItemAt(details.first_match), 0);
return true;
}
} else if (details.index_of_item == -1 || details.next_match == -1) {
SetSelection(submenu->GetMenuItemAt(details.first_match),
SELECTION_DEFAULT);
} else {
SetSelection(submenu->GetMenuItemAt(details.next_match),
SELECTION_DEFAULT);
}
return false;
}
bool MenuController::SelectByChar(char16 character) {
char16 char_array[] = { character, 0 };
char16 key = base::i18n::ToLower(char_array)[0];
MenuItemView* item = pending_state_.item;
if (!item->HasSubmenu() || !item->GetSubmenu()->IsShowing())
item = item->GetParentMenuItem();
DCHECK(item);
DCHECK(item->HasSubmenu());
DCHECK(item->GetSubmenu());
if (item->GetSubmenu()->GetMenuItemCount() == 0)
return false;
// Look for matches based on mnemonic first.
SelectByCharDetails details =
FindChildForMnemonic(item, key, &MatchesMnemonic);
if (details.first_match != -1)
return AcceptOrSelect(item, details);
// If no mnemonics found, look at first character of titles.
details = FindChildForMnemonic(item, key, &TitleMatchesMnemonic);
if (details.first_match != -1)
return AcceptOrSelect(item, details);
return false;
}
void MenuController::RepostEvent(SubmenuView* source,
const ui::LocatedEvent& event) {
gfx::Point screen_loc(event.location());
View::ConvertPointToScreen(source->GetScrollViewContainer(), &screen_loc);
gfx::NativeView native_view = source->GetWidget()->GetNativeView();
gfx::Screen* screen = gfx::Screen::GetScreenFor(native_view);
gfx::NativeWindow window = screen->GetWindowAtScreenPoint(screen_loc);
if (!window)
return;
#if defined(OS_WIN)
// Release the capture.
SubmenuView* submenu = state_.item->GetRootMenuItem()->GetSubmenu();
submenu->ReleaseCapture();
gfx::NativeView view = submenu->GetWidget()->GetNativeView();
if (view) {
DWORD view_tid = GetWindowThreadProcessId(HWNDForNativeView(view), NULL);
if (view_tid != GetWindowThreadProcessId(HWNDForNativeView(window), NULL)) {
// Even though we have mouse capture, windows generates a mouse event if
// the other window is in a separate thread. Only repost an event if
// |view| was created on the same thread, else the target window can get
// double events leading to bad behavior.
return;
}
}
#endif
scoped_ptr<ui::LocatedEvent> clone;
if (event.IsMouseEvent()) {
clone.reset(new ui::MouseEvent(static_cast<const ui::MouseEvent&>(event)));
} else if (event.IsGestureEvent()) {
// TODO(rbyers): Gesture event repost is tricky to get right
// crbug.com/170987.
return;
} else {
NOTREACHED();
return;
}
clone->set_location(screen_loc);
RepostLocatedEvent(window, *clone);
}
void MenuController::SetDropMenuItem(
MenuItemView* new_target,
MenuDelegate::DropPosition new_position) {
if (new_target == drop_target_ && new_position == drop_position_)
return;
if (drop_target_) {
drop_target_->GetParentMenuItem()->GetSubmenu()->SetDropMenuItem(
NULL, MenuDelegate::DROP_NONE);
}
drop_target_ = new_target;
drop_position_ = new_position;
if (drop_target_) {
drop_target_->GetParentMenuItem()->GetSubmenu()->SetDropMenuItem(
drop_target_, drop_position_);
}
}
void MenuController::UpdateScrolling(const MenuPart& part) {
if (!part.is_scroll() && !scroll_task_.get())
return;
if (!scroll_task_.get())
scroll_task_.reset(new MenuScrollTask());
scroll_task_->Update(part);
}
void MenuController::StopScrolling() {
scroll_task_.reset(NULL);
}
void MenuController::UpdateActiveMouseView(SubmenuView* event_source,
const ui::MouseEvent& event,
View* target_menu) {
View* target = NULL;
gfx::Point target_menu_loc(event.location());
if (target_menu && target_menu->has_children()) {
// Locate the deepest child view to send events to. This code assumes we
// don't have to walk up the tree to find a view interested in events. This
// is currently true for the cases we are embedding views, but if we embed
// more complex hierarchies it'll need to change.
View::ConvertPointToScreen(event_source->GetScrollViewContainer(),
&target_menu_loc);
View::ConvertPointToTarget(NULL, target_menu, &target_menu_loc);
target = target_menu->GetEventHandlerForPoint(target_menu_loc);
if (target == target_menu || !target->enabled())
target = NULL;
}
View* active_mouse_view = GetActiveMouseView();
if (target != active_mouse_view) {
SendMouseCaptureLostToActiveView();
active_mouse_view = target;
SetActiveMouseView(active_mouse_view);
if (active_mouse_view) {
gfx::Point target_point(target_menu_loc);
View::ConvertPointToTarget(
target_menu, active_mouse_view, &target_point);
ui::MouseEvent mouse_entered_event(ui::ET_MOUSE_ENTERED,
target_point, target_point,
0);
active_mouse_view->OnMouseEntered(mouse_entered_event);
ui::MouseEvent mouse_pressed_event(ui::ET_MOUSE_PRESSED,
target_point, target_point,
event.flags());
active_mouse_view->OnMousePressed(mouse_pressed_event);
}
}
if (active_mouse_view) {
gfx::Point target_point(target_menu_loc);
View::ConvertPointToTarget(target_menu, active_mouse_view, &target_point);
ui::MouseEvent mouse_dragged_event(ui::ET_MOUSE_DRAGGED,
target_point, target_point,
event.flags());
active_mouse_view->OnMouseDragged(mouse_dragged_event);
}
}
void MenuController::SendMouseReleaseToActiveView(SubmenuView* event_source,
const ui::MouseEvent& event) {
View* active_mouse_view = GetActiveMouseView();
if (!active_mouse_view)
return;
gfx::Point target_loc(event.location());
View::ConvertPointToScreen(event_source->GetScrollViewContainer(),
&target_loc);
View::ConvertPointToTarget(NULL, active_mouse_view, &target_loc);
ui::MouseEvent release_event(ui::ET_MOUSE_RELEASED, target_loc, target_loc,
event.flags());
// Reset active mouse view before sending mouse released. That way if it calls
// back to us, we aren't in a weird state.
SetActiveMouseView(NULL);
active_mouse_view->OnMouseReleased(release_event);
}
void MenuController::SendMouseCaptureLostToActiveView() {
View* active_mouse_view = GetActiveMouseView();
if (!active_mouse_view)
return;
// Reset the active_mouse_view_ before sending mouse capture lost. That way if
// it calls back to us, we aren't in a weird state.
SetActiveMouseView(NULL);
active_mouse_view->OnMouseCaptureLost();
}
void MenuController::SetActiveMouseView(View* view) {
if (view)
ViewStorage::GetInstance()->StoreView(active_mouse_view_id_, view);
else
ViewStorage::GetInstance()->RemoveView(active_mouse_view_id_);
}
View* MenuController::GetActiveMouseView() {
return ViewStorage::GetInstance()->RetrieveView(active_mouse_view_id_);
}
void MenuController::SetExitType(ExitType type) {
exit_type_ = type;
// Exit nested message loops as soon as possible. We do this as
// MessageLoop::Dispatcher is only invoked before native events, which means
// its entirely possible for a Widget::CloseNow() task to be processed before
// the next native message. By using QuitNow() we ensures the nested message
// loop returns as soon as possible and avoids having deleted views classes
// (such as widgets and rootviews) on the stack when the nested message loop
// stops.
//
// It's safe to invoke QuitNow multiple times, it only effects the current
// loop.
bool quit_now = ShouldQuitNow() && exit_type_ != EXIT_NONE &&
message_loop_depth_;
if (quit_now)
base::MessageLoop::current()->QuitNow();
}
void MenuController::HandleMouseLocation(SubmenuView* source,
const gfx::Point& mouse_location) {
if (showing_submenu_)
return;
// Ignore mouse events if we're closing the menu.
if (exit_type_ != EXIT_NONE)
return;
MenuPart part = GetMenuPart(source, mouse_location);
UpdateScrolling(part);
if (!blocking_run_)
return;
if (part.type == MenuPart::NONE && ShowSiblingMenu(source, mouse_location))
return;
if (part.type == MenuPart::MENU_ITEM && part.menu) {
SetSelection(part.menu, SELECTION_OPEN_SUBMENU);
} else if (!part.is_scroll() && pending_state_.item &&
pending_state_.item->GetParentMenuItem() &&
(!pending_state_.item->HasSubmenu() ||
!pending_state_.item->GetSubmenu()->IsShowing())) {
// On exit if the user hasn't selected an item with a submenu, move the
// selection back to the parent menu item.
SetSelection(pending_state_.item->GetParentMenuItem(),
SELECTION_OPEN_SUBMENU);
}
}
} // namespace views
| [
"Khilan.Gudka@cl.cam.ac.uk"
] | Khilan.Gudka@cl.cam.ac.uk |
425daebb40a83e3e70582dab4147baccc74ef909 | 75533f03521e3812dc9405139c5a27d3de8d2a91 | /Mischencontroll 1-1 to 2-6/mischencontroll2-6.1c/mischencontroll2-61c/mischencontroll2-61c.ino | 39d06e7673705b8ea1a23dd9d8aac2a6fbbfdf6b | [] | no_license | NicolaiFlemming/Test | 0f568283561ddb5da27b0c422278a6eed3426776 | 62adae37f476fd9aa9341ff335f7b4ab023eff82 | refs/heads/master | 2020-03-22T03:46:50.651645 | 2018-07-09T13:08:18 | 2018-07-09T13:08:18 | 139,451,978 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,500 | ino | +#include "HX711.h" //Bibliothek für Waage
#include <Wire.h> //Bibliothek für LCD
#include <LiquidCrystal_I2C.h> //Bibliothek für LCD
#include "benutzerv12.h" //eigene Benutzerbibliothek
//benoetigte Bibliotheken
#define DOUT 3
#define CLK 2 //fuer HX711 Inputs
HX711 scale(DOUT, CLK);
float calibration_factor = -92450; //Kalibrierungsfaktor fuer die Waage
int RelaisAlc = 4; //Definieren des Ports fuer Relais 1
int RelaisMix = 5; //Definieren des Ports fuer Relais 2
int But1 = 10; //Port für Button 1
int But2 = 11; //Port für Button 2
int But3 = 12; //Port für Button 3
char Pot1 = A5; //Port für Potentiometer
char Pot2 =A9; //Port für Potentiometer nr 2
//int a = 0; //Test Variable für seriellen Plotter
int VolAlc; //Volumen Alkohol
int VolMix; //Volumen Mixgetränk
int VolGes; //Volumen Gesamt
int AlcPerc; //Prozentsatz Alkohol
int MixPerc; //Prozentsatz Mischgetränk
float Ratio; //Mischverhältnis
float PreRatio; //Unmapped Mischverhältnis
float Vol; //Volumen
float PreVol; //Unmapped Volumen
const int max = 10; //Anzahl maximaler Benutzer
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE); //LCD-Verbindungen
float weight; //erklären der Variable, welche die Waage nutzt
int weightP; //Nachkommastellen loswerden, durch int
bool btn = false; //Wert für button
int phase = 0; //Phase des Systems
int user = 0; //Aktuell ausgewählter Nutzer
int usercount = 0; //Anzahl erstellter Benutzer
//---------------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------------------
benutzer benutzer[max]; //initialisierung Benutzertabelle
bool sff; //Bool damit Sufflvl nur einmal pro phasendurchlauf im loop addiert wird
//-----------------------------------------------------------------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------------------------------------------------------------------
void setup() {
Serial.begin(9600); //Seriellen Monitor mit 9600 Baud starten
Serial.println("T druecken, um zu tarieren"); //Auf Seriellem Monitor schreiben
scale.set_scale(calibration_factor); //kalibriert 2018-05-03
scale.tare(); //erste Kalibrierung
pinMode(RelaisAlc, OUTPUT); //Definieren des Pins als Output 5V
pinMode(RelaisMix, OUTPUT); //Definieren des Pins als Output 5V
pinMode (But1, INPUT); //Definieren des Pins als Digital Input 8Bit
pinMode (But2, INPUT); //Definieren des Pins als Digital Input 8Bit
pinMode (But3, INPUT); //Definieren des Pins als Digital Input 8Bit
pinMode (Pot1, INPUT); //Definieren des Pins als Analog Input 8Bit
pinMode (Pot2, INPUT); //Definieren des Pins als Analog Input 8Bit
lcd.begin(16,2); //Ausgabe LCD-Bildschirm
lcd.backlight(); //Anstellen Hintergrundlicht LCD
delay(2000); //benoetigte Verzoegerung
digitalWrite(RelaisAlc, LOW);
digitalWrite(RelaisMix, LOW); //Relais Pins auf 0V stellen
}
//----------------------------------------------------------------------------------------------------------------------------------------------------
//----------------------------------------------------------------------------------------------------------------------------------------------------
void loop()
{
if(phase == 0) //Auswahl Benutzerauswahl oder -erstellung
{
lcd.clear();
do
{
lcd.setCursor(0,0); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("Benutzer "); //Auf LCD-Bildschirm schreiben
lcd.setCursor(0,1); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("ausw./erst. "); //Auf LCD-Bildschirm schreiben
if(digitalRead(But2) == HIGH) //Benutzer auswählen und Phasenwechsel
{
phase = 1;
delay(1000);
}
if(digitalRead(But3) == HIGH) //Benutzer erstellen Phasenwechsel
{
phase = 2;
delay(1000);
}
}
while(phase == 0);
}
if(phase == 1) //Auswahl Benutzer
{
lcd.setCursor(0,1);
lcd.print("</> T = ok");
lcd.setCursor(0,0);
if(user <= usercount )
{
lcd.print("Benutzer ");
lcd.print(user + 1);
}
if(user == (usercount + 1)) //usercount nicht größer als max. max + 1 ist der Gastbenutzer
{
lcd.print("Gast "); //Gastdaten werden nicht gespeichert
}
if(digitalRead(But2) == HIGH) //Durch die User wechseln
{
user -= 1;
if(user < 0) user = (usercount + 1);
delay(500);
}
if(digitalRead(But3) == HIGH)
{
user += 1;
if(user > (usercount + 1)) user = 0;
delay(500);
}
if(digitalRead(But1) == HIGH) //Benutzer bestätigen
{
phase = 3; //Einschenkvorgang wechseln
delay(1000);
}
}
if(phase == 2) //Benutzererstellung
{
bool w = 0; //Wechsel zwischen Bildschirmen
while(phase == 2)
{
if(usercount == max)
{
lcd.setCursor(0,0);
lcd.print("Keine Benutzer "); //Benutzer voll. Reset des Systems um Tabelle zu löschen
lcd.setCursor(0,1);
lcd.print("Weiter als Gast ");
delay(2000);
phase = 3; //Einschenkvorgang
user = max + 1;
}
else
{
float gew; //Temporäre Var um Werte in Tabelle zu speichern
char gesch; //Temporäre Var um Werte in Tabelle zu speichern
if(w == 0) //wechseln der eingabe
{
PreRatio = (constrain(analogRead(Pot1), 0, 1023));
Ratio = (PreRatio/1023); //benutzen des potis um gewicht einzustellen
gew = 40 + (Ratio * 100);
lcd.setCursor(0,0); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("Gewicht einst.: "); //Auf LCD-Bildschirm schreiben
lcd.setCursor(0,1); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print(gew); //Auf LCD-Bildschirm schreiben
lcd.print(" kg T = ok ");
if(digitalRead(But1) == HIGH) //Gewichtvariable Festlegen
{
w = 1;
delay(1000);
}
}
if(w == 1) //Geschlecht wichtig für Promille berechnung
{
lcd.setCursor(0,0); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("Geschlecht ausw.:"); //Auf LCD-Bildschirm schreiben
lcd.setCursor(0,1); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("Maennl./Weibl. "); //Auf LCD-Bildschirm schreiben
if(digitalRead(But2) == HIGH)
{
gesch = 'M'; //Männliches Geschlecht eingegeben
benutzer[usercount].set_kge(gew); //Eingabe Gewicht in Klasse
benutzer[usercount].set_gen(gesch); //Eingabe Geschlecht in Klasse
usercount += 1;
phase = 3;
delay(1000);
}
if(digitalRead(But3) == HIGH)
{
gesch = 'W'; //Weibliches Geschlecht eingegeben
benutzer[usercount].set_kge(gew);
benutzer[usercount].set_gen(gesch);
usercount += 1;
phase = 3;
delay(1000);
}
benutzer[usercount].set_sufflvl(0); //Promille Zahl auf 0
}
}
}
}
if(phase == 3) //Einschenkvorgang
{
//a = analogRead(But);
//Serial.println(a);
//Serial.print("Weight: ");
//Serial.print((scale.get_units()*1000), 0); //Up to 3 decimal points
//Serial.println(" g"); //Change this to kg and re-adjust the calibration factor if you follow lbs
if(digitalRead(But1) == HIGH ) //bei Button drück Analog Wert > 1000
{
btn = true; //wenn Knopf gedrückt wurde wird btn bool Variable mit true ueberschrieben
scale.tare(); //bei knopfdruck tarieren
delay(50); //halbe sekunde verzoegerung
}
if (btn == false) //Alles was passieren soll bevor der knopf gedrückt wird
{
PreRatio = (constrain(analogRead(Pot1), 0, 1023)); //analog werte des Potentiometers zwischen 0 und 1023 (8bit) beschraenken und auf PreRatio Variable schreiben
Ratio = (PreRatio/1023); //Variable umrechnen zu einem Verhaeltnis für VolAlc und VolMix
VolAlc = (VolGes * Ratio); //VolAlc mithilfe der Ratio Variable berechnen
VolMix = (VolGes - VolAlc); //Volmix mithilfe von VolGes und VolAlc berechnen
AlcPerc = (Ratio*101); //Prozentsatz Alkohol mithilfe der Ratio Variablen berechnen. 101 wegen rundungsfehlern
MixPerc = ((1-Ratio)*101); //Prozentsatz Mischgetraenk mithilfe der Ratio Variablen berechnen. 101 wegen rundungsfehlern
PreVol = (constrain(analogRead(Pot2), 0 , 1023));
Vol = (PreVol/1023);
VolGes = (100+(Vol)*400);
lcd.setCursor(0,0); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("Ratio: "); //Auf LCD-Bildschirm schreiben
lcd.setCursor (10,0);
lcd.print (AlcPerc);
lcd.print ("/");
lcd.print (MixPerc);
lcd.print (" ");
lcd.setCursor(0,1); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("Volumen: "); //Auf LCD-Bildschirm schreiben
lcd.setCursor (10,1);
lcd.print (VolGes);
lcd.print ("ml ");
}
weight = (scale.get_units()*1000); //einholen der werte von der Waage und Umwandlung in Gramm
weightP = weight; //definieren der variable fuer Gewicht
if (btn==true)
{
lcd.setCursor(0,1); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("Gewicht:"); //Auf LCD-Bildschirm schreiben
lcd.setCursor(10,1);
lcd.print(weightP); //Ausgabe des Gewichts auf dem LCD Bildschirm
lcd.print(" g " ); //Einheit
//Ausgabe des Verhaeltnisses auf dem LCD Bildschirm
}
if( VolAlc > weightP & weightP > -10 & btn == true ) //Schleife fuer Relais Alkohol auf Pin4
{
digitalWrite(RelaisAlc, HIGH);
}
else
{
digitalWrite(RelaisAlc, LOW);
}
if( VolMix + VolAlc >= weightP & VolAlc < weightP & btn==true ) //Schleife fuer Relais Mischgetraenk auf Pin5
{
digitalWrite(RelaisMix, HIGH);
}
else
{
digitalWrite(RelaisMix, LOW);
}
if(weightP >= VolAlc + VolMix) //beenden der Schleife durch btn bool variable
{
btn = false;
sff = true;
phase = 4;
}
if(Serial.available()) //Bei Input von T -> tarieren
{
char temp = Serial.read(); //Eingabe eines charakters
if(temp == 't' || temp == 'T') //wenn eingegebener charakter t ist wird tariert
{
scale.tare(); //Befehl zum Tarieren
}
delay(10); //Verzoegerung des gesamten Loops
}
}
if(phase == 4) //Ende und eintragen der Werte in die Benutzertabelle
{
int AlcinG, AlcinGges;
float AlcSet;
AlcinG = (VolAlc * 0.4); //40%er Alkohol
if(sff == true)
{
AlcinGges = AlcinG + benutzer[user].get_alkges();
benutzer[user].set_alkges(AlcinGges);
benutzer[user].err_sufflvl(benutzer[user].get_kge(), benutzer[user].get_gen(), AlcinGges);
sff = false;
}
lcd.setCursor(0,0); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
lcd.print("Benutzer"); //Auf LCD-Bildschirm schreiben
lcd.print(user + 1); //Auf LCD-Bildschirm schreiben
lcd.setCursor(0,1); //Definieren wo auf LCD-Bildschirm Geschrieben wird (Stelle, Zeile)
if(benutzer[user].get_sufflvl() < 1.5) //Benutzer noch nicht sehr betrunken
{
lcd.print("Prost!!! ");
}
if(benutzer[user].get_sufflvl() >= 1.5) //Benutzer wahrscheinlich betrunken
{
lcd.print("Wasser vllt? ");
}
delay(2000);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Benutzer");
lcd.print(user + 1);
lcd.setCursor(0,1);
lcd.print(benutzer[user].get_sufflvl()); //Ausgabe der ungefähren Promille
delay(2000);
phase = 0; //Erster Bildschirm (von vorne)
}
delay(10);
}
| [
"j.jehn@tu-bs-de"
] | j.jehn@tu-bs-de |
979e81eeb534f98d8ae71cd2df647ab397936f55 | 9f324e3c35a0c0172a6746e0ab96026adb590473 | /azrael.digipen.edu/~mmead/www/Courses/2020/winter/cs170/labs/week11/driver.cpp | 30c6c43d2d5598b2193575adb05f170890f25a8a | [] | no_license | platypuppy/MeadSite | ec3f2537e95b79e9b11e8ee46b32d58e9b1fe225 | 57958e1ce0d06d9cb87e2629c67da110d3790904 | refs/heads/master | 2022-07-28T12:27:10.344945 | 2020-05-20T17:30:19 | 2020-05-20T17:30:19 | 265,632,097 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,237 | cpp | #include "Vector.h"
#include <iostream> // cout, endl
void Print(const CS170::Vector& array, bool newline = true)
{
for (unsigned i = 0; i < array.size(); i++)
{
std::cout << array[i] << " ";
}
std::cout << "(size=" << array.size() << ", capacity=" <<
array.capacity() << ", allocs=" <<
array.allocations() << ")";
if (newline)
std::cout << std::endl;
}
void PrintPartial(const CS170::Vector& array, bool newline = true)
{
for (unsigned i = 1; i < array.size(); i *= 2)
{
std::cout << array[i - 1] << " ";
}
std::cout << "(size=" << array.size() << ", capacity=" <<
array.capacity() << ", allocs=" <<
array.allocations() << ")";
if (newline)
std::cout << std::endl;
}
void TestSwap1()
{
std::cout << "\n********** TestSwap1 **********\n";
CS170::Vector a, b, c;
std::cout << "push_back integers:\n";
for (int i = 0; i < 10; i++)
a.push_back(i + 1);
for (int i = 0; i < 5; i++)
b.push_back(10 * (i + 1));
std::cout << "a: ";
Print(a);
std::cout << "b: ";
Print(b);
std::cout << "swapv a,b:\n";
a.swapv(b);
std::cout << "a: ";
Print(a);
std::cout << "b: ";
Print(b);
std::cout << "swapv a,c:\n";
a.swapv(c);
std::cout << "a: ";
Print(a);
std::cout << "c: ";
Print(c);
std::cout << "swapv b,b:\n";
b.swapv(b);
std::cout << "b: ";
Print(b);
}
void TestReverse1()
{
int count = 10;
std::cout << "\n********** TestReverse1 **********\n";
CS170::Vector a;
std::cout << "push_back integers:\n";
for (int i = 0; i < count; i++)
a.push_back(i + 1);
Print(a);
a.reverse();
std::cout << "Reversed:\n";
Print(a);
std::cout << "Remove last element:\n";
a.pop_back();
Print(a);
a.reverse();
std::cout << "Reversed:\n";
Print(a);
}
void TestReverse2()
{
int count = 10;
std::cout << "\n********** TestReverse2 **********\n";
CS170::Vector a;
std::cout << "push_back integers:\n";
for (int i = 0; i < count; i++)
a.push_back(i + 1);
Print(a);
a.reverse();
std::cout << "Reversed:\n";
Print(a);
while (!a.empty())
{
if (a.size() % 2) // odd
{
std::cout << "Remove last element:\n";
a.pop_back();
}
else // even
{
std::cout << "Remove first element:\n";
a.pop_front();
}
Print(a);
a.reverse();
std::cout << "Reversed:\n";
Print(a);
}
}
void TestEqual1()
{
std::cout << "\n********** TestEqual1 **********\n";
CS170::Vector a, b, c;
std::cout << "push_back integers:\n";
for (int i = 0; i < 10; i++)
a.push_back(i + 1);
for (int i = 0; i < 10; i++)
b.push_back(i + 1);
std::cout << "a: ";
Print(a);
std::cout << "b: ";
Print(b);
if (a == b)
std::cout << "a is equal to b\n";
else
std::cout << "a is NOT equal to b\n";
std::cout << "remove last element of a:\n";
a.pop_back();
std::cout << "a: ";
Print(a);
std::cout << "b: ";
Print(b);
if (a == b)
std::cout << "a is equal to b\n";
else
std::cout << "a is NOT equal to b\n";
std::cout << "remove last element of b:\n";
b.pop_back();
std::cout << "a: ";
Print(a);
std::cout << "b: ";
Print(b);
if (a == b)
std::cout << "a is equal to b\n";
else
std::cout << "a is NOT equal to b\n";
std::cout << "change last element of b to 100:\n";
b[b.size() - 1] = 100;
std::cout << "a: ";
Print(a);
std::cout << "b: ";
Print(b);
if (a == b)
std::cout << "a is equal to b\n";
else
std::cout << "a is NOT equal to b\n";
}
/*
Before C++17, the exception output was undefined. Now, it is guaranteed
to print out the text before the exception gets thrown. This means that
this define is no longer needed. However, it's still fine and will work
with all compilers.
*/
#define SAFE_EXCEPTION
void TestSubscriptEx()
{
std::cout << "\n********** TestSubscriptEx **********\n";
int ia[] = {2, 4, 6, 6, 8, 10, 6, 12, -6, 14, 16, 6, 6};
unsigned size = static_cast<unsigned>(sizeof(ia) / sizeof(*ia));
std::cout << "Construct from int array:\n";
const CS170::Vector a(ia, size); // const
CS170::Vector b(ia, size); // non-const
Print(a);
Print(b);
try
{
unsigned index = a.size() * 2; // illegal
std::cout << "accessing subscript on const vector: a[" << index << "]" << std::endl;
#ifdef SAFE_EXCEPTION
std::cout << "a[" << index << "] = ";
std::cout.flush();
std::cout << a[index] << std::endl;
#else
std::cout << "a[" << index << "] = " << a[index] << std::endl;
#endif
}
catch(const CS170::SubscriptError &se)
{
std::cout << "Bad subscript: " << se.GetSubscript() << std::endl;
}
try
{
unsigned index = b.size() * 2; // illegal
std::cout << "accessing subscript on non-const vector: b[" << index << "]" << std::endl;
#ifdef SAFE_EXCEPTION
std::cout << "b[" << index << "] = ";
std::cout.flush();
std::cout << b[index] << std::endl;
#else
std::cout << "b[" << index << "] = " << b[index] << std::endl;
#endif
}
catch(const CS170::SubscriptError &se)
{
std::cout << "Bad subscript: " << se.GetSubscript() << std::endl;
}
}
void TestInsertEx()
{
std::cout << "\n********** TestInsertEx **********\n";
int ia[] = {2, 4, 6, 6, 8, 10, 6, 12, -6, 14, 16, 6, 6};
unsigned size = static_cast<unsigned>(sizeof(ia) / sizeof(*ia));
std::cout << "Construct from int array:\n";
CS170::Vector a(ia, size);
Print(a);
try
{
unsigned index = a.size() * 3; // illegal
std::cout << "insert integer at index " << index << ":\n";
a.insert(99, index);
}
catch(const CS170::SubscriptError &se)
{
std::cout << "Bad subscript: " << se.GetSubscript() << std::endl;
}
}
void TestSwapStress()
{
std::cout << "\n********** TestSwapStress **********\n";
CS170::Vector a, b, c;
int count = 1000000;
std::cout << "Pushing back...\n";
for (int i = 0; i < count; i++)
{
a.push_back(i);
b.push_back(i * 2);
c.push_back(i * 3);
}
std::cout << "Swapping...\n";
CS170::Vector x;
for (int i = 0; i < 1000001; i++)
{
a.swapv(b);
b.swapv(c);
c.swapv(a);
}
PrintPartial(a);
PrintPartial(b);
PrintPartial(c);
std::cout << "Done...\n";
}
void TestShrink1()
{
std::cout << "\n********** TestShrink1 **********\n";
CS170::Vector a;
std::cout << "push_back 8 integers:\n";
for (int i = 0; i < 8; i++)
a.push_back(i);
Print(a);
std::cout << "shrink:\n";
a.shrink_to_fit();
Print(a);
std::cout << "pop last 3:\n";
a.pop_back();
a.pop_back();
a.pop_back();
Print(a);
std::cout << "shrink:\n";
a.shrink_to_fit();
Print(a);
std::cout << "push_back one integer:\n";
a.push_back(100);
Print(a);
std::cout << "shrink:\n";
a.shrink_to_fit();
Print(a);
std::cout << "shrink:\n";
a.shrink_to_fit();
Print(a);
std::cout << "clear:\n";
a.clear();
Print(a);
std::cout << "shrink:\n";
a.shrink_to_fit();
Print(a);
}
int main()
{
TestSwap1();
TestReverse1();
TestReverse2();
TestEqual1();
TestShrink1();
TestSubscriptEx();
TestInsertEx();
TestSwapStress();
return 0;
}
| [
"61122248+platypuppy@users.noreply.github.com"
] | 61122248+platypuppy@users.noreply.github.com |
3855f3710b0776c7e5b79df1c7347d77abd0f432 | 3b3a4f579c564d0e7958450d9b729d5dc4ad3d24 | /login_page/linux/my_application.cc | 4610106534d491f1d6195ed0ba19a986e6f67e5d | [] | no_license | Cagatay0/Flutter | 5acd5a24a2b86b2ebeeafff4079c13caca78a067 | 5bc237abb7f366fb1b064088c1beb62a329b396b | refs/heads/main | 2023-07-28T15:08:55.269981 | 2023-07-17T21:27:43 | 2023-07-17T21:27:43 | 308,714,555 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,718 | cc | #include "my_application.h"
#include <flutter_linux/flutter_linux.h>
#ifdef GDK_WINDOWING_X11
#include <gdk/gdkx.h>
#endif
#include "flutter/generated_plugin_registrant.h"
struct _MyApplication {
GtkApplication parent_instance;
char** dart_entrypoint_arguments;
};
G_DEFINE_TYPE(MyApplication, my_application, GTK_TYPE_APPLICATION)
// Implements GApplication::activate.
static void my_application_activate(GApplication* application) {
MyApplication* self = MY_APPLICATION(application);
GtkWindow* window =
GTK_WINDOW(gtk_application_window_new(GTK_APPLICATION(application)));
// Use a header bar when running in GNOME as this is the common style used
// by applications and is the setup most users will be using (e.g. Ubuntu
// desktop).
// If running on X and not using GNOME then just use a traditional title bar
// in case the window manager does more exotic layout, e.g. tiling.
// If running on Wayland assume the header bar will work (may need changing
// if future cases occur).
gboolean use_header_bar = TRUE;
#ifdef GDK_WINDOWING_X11
GdkScreen* screen = gtk_window_get_screen(window);
if (GDK_IS_X11_SCREEN(screen)) {
const gchar* wm_name = gdk_x11_screen_get_window_manager_name(screen);
if (g_strcmp0(wm_name, "GNOME Shell") != 0) {
use_header_bar = FALSE;
}
}
#endif
if (use_header_bar) {
GtkHeaderBar* header_bar = GTK_HEADER_BAR(gtk_header_bar_new());
gtk_widget_show(GTK_WIDGET(header_bar));
gtk_header_bar_set_title(header_bar, "login_page");
gtk_header_bar_set_show_close_button(header_bar, TRUE);
gtk_window_set_titlebar(window, GTK_WIDGET(header_bar));
} else {
gtk_window_set_title(window, "login_page");
}
gtk_window_set_default_size(window, 1280, 720);
gtk_widget_show(GTK_WIDGET(window));
g_autoptr(FlDartProject) project = fl_dart_project_new();
fl_dart_project_set_dart_entrypoint_arguments(project, self->dart_entrypoint_arguments);
FlView* view = fl_view_new(project);
gtk_widget_show(GTK_WIDGET(view));
gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(view));
fl_register_plugins(FL_PLUGIN_REGISTRY(view));
gtk_widget_grab_focus(GTK_WIDGET(view));
}
// Implements GApplication::local_command_line.
static gboolean my_application_local_command_line(GApplication* application, gchar*** arguments, int* exit_status) {
MyApplication* self = MY_APPLICATION(application);
// Strip out the first argument as it is the binary name.
self->dart_entrypoint_arguments = g_strdupv(*arguments + 1);
g_autoptr(GError) error = nullptr;
if (!g_application_register(application, nullptr, &error)) {
g_warning("Failed to register: %s", error->message);
*exit_status = 1;
return TRUE;
}
g_application_activate(application);
*exit_status = 0;
return TRUE;
}
// Implements GObject::dispose.
static void my_application_dispose(GObject* object) {
MyApplication* self = MY_APPLICATION(object);
g_clear_pointer(&self->dart_entrypoint_arguments, g_strfreev);
G_OBJECT_CLASS(my_application_parent_class)->dispose(object);
}
static void my_application_class_init(MyApplicationClass* klass) {
G_APPLICATION_CLASS(klass)->activate = my_application_activate;
G_APPLICATION_CLASS(klass)->local_command_line = my_application_local_command_line;
G_OBJECT_CLASS(klass)->dispose = my_application_dispose;
}
static void my_application_init(MyApplication* self) {}
MyApplication* my_application_new() {
return MY_APPLICATION(g_object_new(my_application_get_type(),
"application-id", APPLICATION_ID,
"flags", G_APPLICATION_NON_UNIQUE,
nullptr));
}
| [
"32780592+Cagatay0@users.noreply.github.com"
] | 32780592+Cagatay0@users.noreply.github.com |
7b5cecf21d2965b5e416a2d46218a14472c7a7ae | 372ad9c2f0db8709f5b7074acf601874e32266b6 | /Tests/OmniSQLUtilitiesTest.cpp | f7d5fb35ef27f16643729a6286c99c03b2318bbd | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | Likes123/omniscidb | f69894656e8ae9e7b724e06d84a5fa28f097958c | 1e4904c0622bcef67dbe7a95ef9cb64f9d505d80 | refs/heads/master | 2020-08-31T14:21:26.728671 | 2019-10-29T05:56:57 | 2019-10-30T17:12:55 | 218,709,632 | 1 | 0 | Apache-2.0 | 2019-10-31T07:34:52 | 2019-10-31T07:34:51 | null | UTF-8 | C++ | false | false | 4,423 | cpp | /*
* Copyright 2019 OmniSci, 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.
*/
#include "../SQLFrontend/CommandHistoryFile.h"
#include "gtest/gtest.h"
#include <boost/program_options.hpp>
#include <cstring>
#include <fstream>
#include <type_traits>
// Mocks
using GetEnvRetType = decltype(DefaultEnvResolver().getenv(""));
using GetPWUIDRetType = decltype(DefaultEnvResolver().getpwuid(0));
class DefaultUnitTestResolver {
public:
template <typename... ARGS>
GetEnvRetType getenv(ARGS&&...) const {
return nullptr;
}
template <typename... ARGS>
GetPWUIDRetType getpwuid(ARGS&&...) const {
return nullptr;
}
auto getuid() const { return ::getuid(); }
};
class NoHomeNoPWEntResolver : public DefaultUnitTestResolver {};
class NoHomePWEntResolver : public DefaultUnitTestResolver {
public:
template <typename... ARGS>
GetPWUIDRetType getpwuid(ARGS&&... args) const {
return ::getpwuid(std::forward<ARGS>(args)...);
}
};
class HomeResolver : public DefaultEnvResolver {
public:
template <typename... ARGS>
GetEnvRetType getenv(ARGS&&... args) const {
return DefaultEnvResolver::getenv(std::forward<ARGS>(args)...);
}
template <typename... ARGS>
GetPWUIDRetType getpwuid(ARGS&&...) const {
throw std::runtime_error("Unexpected getpwuid() invocation.");
}
};
// Mock-base class equivalents of CommandHistoryFile
using CommandHistoryFile_NoHomeNoPWEnt = CommandHistoryFileImpl<NoHomeNoPWEntResolver>;
using CommandHistoryFile_NoHomePWEnt = CommandHistoryFileImpl<NoHomePWEntResolver>;
using CommandHistoryFile_Home = CommandHistoryFileImpl<HomeResolver>;
// Tests
TEST(CommandHistoryFile, NoHomeEnv) {
CommandHistoryFile_NoHomeNoPWEnt cmd_file;
ASSERT_EQ(std::string(getDefaultHistoryFilename()), std::string(cmd_file));
CommandHistoryFile_NoHomePWEnt cmd_file2;
ASSERT_EQ(std::string(getpwuid(getuid())->pw_dir) + '/' +
std::string(getDefaultHistoryFilename()),
std::string(cmd_file2));
}
TEST(CommandHistoryFile, HomeEnv) {
CommandHistoryFile_Home cmd_file;
ASSERT_EQ(std::string(getpwuid(getuid())->pw_dir) + '/' +
std::string(getDefaultHistoryFilename()),
std::string(cmd_file));
}
TEST(CommandHistoryFile, Basic) {
CommandHistoryFile cmd_file;
ASSERT_EQ(std::string(getpwuid(getuid())->pw_dir) + '/' +
std::string(getDefaultHistoryFilename()),
std::string(cmd_file));
}
TEST(CommandHistoryFile, Custom) {
CommandHistoryFile cmd_file("mutley.txt");
ASSERT_EQ(std::string("mutley.txt"), std::string(cmd_file));
}
TEST(CommandHistoryFile, BoostProgramOptionsCompatibility_DefaultOption) {
namespace po = boost::program_options;
po::options_description desc("Options");
CommandHistoryFile cmd_file;
int fake_argc = 1;
char const* fake_argv[] = {"lulz"};
desc.add_options()(
"history", po::value<CommandHistoryFile>(&cmd_file), "History filename");
po::variables_map vm;
po::store(po::command_line_parser(fake_argc, fake_argv).options(desc).run(), vm);
po::notify(vm);
ASSERT_EQ(std::string(getpwuid(getuid())->pw_dir) + '/' +
std::string(getDefaultHistoryFilename()),
std::string(cmd_file));
}
TEST(CommandHistoryFile, BoostProgramOptionsCompatibility_SetOption) {
namespace po = boost::program_options;
po::options_description desc("Options");
CommandHistoryFile cmd_file;
int fake_argc = 2;
char const* fake_argv[] = {"lulz", "--history=dudley_dawson.txt"};
desc.add_options()(
"history", po::value<CommandHistoryFile>(&cmd_file), "History filename");
po::variables_map vm;
po::store(po::command_line_parser(fake_argc, fake_argv).options(desc).run(), vm);
po::notify(vm);
ASSERT_EQ(std::string("dudley_dawson.txt"), std::string(cmd_file));
}
int main(int argc, char* argv[]) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
| [
"dev@aas.io"
] | dev@aas.io |
ab11523906f7d21cf732afa4210809ed2a3e9a4d | c2e2b0f27b7fa686f00cd846020fd2999e0197f4 | /novelhost.h | 39946fac4f568788625a4ce1e3fe8292ab6edde6 | [] | no_license | heisehuanyin/PlainWriter | 78832207caf44d2cc4830f89614b62b1d5d26560 | 4f73b3e03012f63e469d349bba4ca5298f1de550 | refs/heads/main | 2023-03-08T22:44:16.824615 | 2021-03-15T07:56:41 | 2021-03-15T07:56:41 | 347,880,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,524 | h | #ifndef NOVELHOST_H
#define NOVELHOST_H
#include "confighost.h"
#include "dbaccess.h"
#include <QItemDelegate>
#include <QRandomGenerator>
#include <QRunnable>
#include <QSortFilterProxyModel>
#include <QStandardItemModel>
#include <QSyntaxHighlighter>
class NovelHost;
namespace NovelBase {
class ChaptersItem : public QObject, public QStandardItem
{
Q_OBJECT
public:
ChaptersItem(NovelHost&host, const DBAccess::StoryTreeNode &refer, bool isGroup=false);
virtual ~ChaptersItem() override = default;
public slots:
void calcWordsCount();
private:
NovelHost &host;
};
class OutlinesItem : public QObject, public QStandardItem
{
Q_OBJECT
public:
OutlinesItem(const DBAccess::StoryTreeNode &refer);
};
class OutlinesRender : public QSyntaxHighlighter
{
public:
OutlinesRender(QTextDocument *doc, ConfigHost &config);
// QSyntaxHighlighter interface
protected:
virtual void highlightBlock(const QString &text) override;
private:
ConfigHost &config;
};
class WordsRender : public QSyntaxHighlighter
{
Q_OBJECT
public:
WordsRender(QTextDocument *target, NovelHost &novel_host);
virtual ~WordsRender() override;
ConfigHost &configBase() const;
void acceptRenderResult(const QString &content, const QList<std::tuple<QString, int, QTextCharFormat, int, int> > &rst);
// QSyntaxHighlighter interface
protected:
virtual void highlightBlock(const QString &text) override;
private:
QMutex mutex;
NovelHost &novel_host;
// format : keyword-id : start : length
QHash<QString, QList<std::tuple<QString, int, QTextCharFormat, int, int>>> _result_store;
bool _check_extract_render_result(const QString &text, QList<std::tuple<QString, int, QTextCharFormat, int, int> > &rst);
};
class WordsRenderWorker : public QObject, public QRunnable
{
Q_OBJECT
public:
WordsRenderWorker(WordsRender *poster, const QTextBlock pholder, const QString &content);
// QRunnable interface
public:
virtual void run() override;
signals:
void renderFinished(const QTextBlock blk);
private:
WordsRender *const poster_stored;
ConfigHost &config_symbo;
const QTextBlock placeholder;
const QString content_stored;
void keywords_highlighter_render(const QString &text, QList<std::tuple<QString, int, QString> > words, const QTextCharFormat &format,
QList<std::tuple<QString, int, QTextCharFormat, int, int> > &rst) const;
};
class WsBlockData : public QTextBlockUserData
{
public:
using Type = DBAccess::StoryTreeNode::Type;
WsBlockData(const QModelIndex &target, Type blockType);
virtual ~WsBlockData() = default;
bool operator==(const WsBlockData &other) const;
QModelIndex navigateIndex() const;
Type blockType() const;
private:
const QModelIndex outline_index; // 指向大纲树节点
Type block_type;
};
class DesplineFilterModel : public QSortFilterProxyModel
{
public:
enum Type{
UNDERVOLUME,
UNTILWITHVOLUME,
UNTILWITHCHAPTER
};
explicit DesplineFilterModel(Type operateType, QObject*parent=nullptr);
void setFilterBase(const DBAccess::StoryTreeNode &volume_node, const DBAccess::StoryTreeNode
&chapter_node = DBAccess::StoryTreeNode());
// QSortFilterProxyModel interface
protected:
virtual bool filterAcceptsRow(int source_row, const QModelIndex &source_parent) const override;
private:
Type operate_type_store;
int volume_filter_index;
QVariant chapter_filter_id;
};
}
class NovelHost : public QObject
{
Q_OBJECT
using KfvType = NovelBase::DBAccess::KeywordField::ValueType;
public:
explicit NovelHost(ConfigHost &config);
virtual ~NovelHost() override;
/**
* @brief 载入作品描述文件
* @param desp 描述文件实例
*/
void loadBase(NovelBase::DBAccess *desp);
void save();
QString novelTitle() const;
void resetNovelTitle(const QString &title);
/**
* @brief 所有关键字类型清单
* @return
*/
QAbstractItemModel *keywordsTypeslistModel() const;
/**
* @brief 添加新关键字类型到模型
* @param name
* @return
*/
QAbstractItemModel *appendKeywordsModelToTheList(const QString &name);
/**
* @brief 通过类型列表ModelIndex获取指定关键字的管理模型
* @param mindex 类型列表的ModelIndex
* @return
*/
QAbstractItemModel *keywordsModelViaTheList(const QModelIndex &mindex) const;
/**
* @brief 通过类型列表的ModelIndex移除指定管理模型
* @param mindex
*/
void removeKeywordsModelViaTheList(const QModelIndex &mindex);
void keywordsTypeForward(const QModelIndex &mindex);
void keywordsTypeBackward(const QModelIndex &mindex);
void getAllKeywordsTableRefs(QList<QPair<QString, QString>> &name_ref_list) const;
QList<QPair<int,std::tuple<QString, QString, KfvType>>>
customedFieldsListViaTheList(const QModelIndex &mindex) const;
void renameKeywordsTypenameViaTheList(const QModelIndex &mindex, const QString &newName);
void adjustKeywordsFieldsViaTheList(const QModelIndex &mindex, const QList<QPair<int, std::tuple<QString,
QString, KfvType>>> fields_defines);
void appendNewItemViaTheList(const QModelIndex &mindex, const QString &name);
void removeTargetItemViaTheList(const QModelIndex &mindex, const QModelIndex &tIndex);
void queryKeywordsViaTheList(const QModelIndex &mindex, const QString &itemName) const;
QList<QPair<int, QString>> avaliableEnumsForIndex(const QModelIndex &index) const;
QList<QPair<int, QString>> avaliableItemsForIndex(const QModelIndex &index) const;
QAbstractItemModel *quicklookItemsModel() const;
// 大纲节点管理
/**
* @brief 获取大纲树形图,包含分卷、剧情、分解点
* @return
*/
QStandardItemModel *outlineNavigateTree() const;
/**
* @brief 获取全书大纲编辑文档
* @return
*/
QTextDocument *novelOutlinesPresent() const;
/**
* @brief 获取当前卷所有细纲
* @return
*/
QTextDocument *volumeOutlinesPresent() const;
/**
* @brief 获取本卷下所有伏笔汇总
* @return
*/
QAbstractItemModel *desplinesUnderVolume() const;
/**
* @brief 获取至此卷宗未闭合伏笔
* @return
*/
QAbstractItemModel *desplinesUntilVolumeRemain() const;
/**
* @brief 获取至此章节未闭合伏笔
* @return
*/
QAbstractItemModel *desplinesUntilChapterRemain() const;
// 章卷节点
/**
* @brief 章节导航模型
* @return
*/
QAbstractItemModel *chaptersNavigateTree() const;
/**
* @brief 章节细纲呈现
* @return
*/
QTextDocument *chapterOutlinePresent() const;
/**
* @brief 查找结果模型
* @return
*/
QStandardItemModel *findResultTable() const;
/**
* @brief 添加卷宗节点
* @param name 卷宗名称
* @param description 卷宗描述
* @param index 位置索引,-1代表尾增
* @return
*/
void insertVolume(const QString& name, const QString &description, int index=-1);
/**
* @brief 在指定大纲节点下添加关键剧情节点
* @param vmIndex
* @param kName
* @param description
* @param index 位置索引,-1代表尾增
*/
void insertStoryblock(const QModelIndex &pIndex, const QString &name, const QString &description, int index=-1);
/**
* @brief 在指定关键剧情下添加剧情分解点
* @param pIndex
* @param name
* @param description
* @param index 位置索引,-1代表尾增
*/
void insertKeypoint(const QModelIndex &pIndex, const QString &name, const QString description, int index=-1);
/**
* @brief 删除任何大纲节点
* @param nodeIndex 大纲节点
* @return
*/
void removeOutlinesNode(const QModelIndex &outlineNode);
/**
* @brief 设置指定大纲节点为当前节点,引起相应视图变化
* @param err
* @param outlineNode 大纲节点
* @return
*/
void setCurrentOutlineNode(const QModelIndex &outlineNode);
void checkOutlinesRemoveEffect(const QModelIndex &outlinesIndex, QList<QString> &msgList) const;
/**
* @brief 在指定卷宗下添加章节
* @param pIndex
* @param name
* @param description
* @param index 位置索引,-1代表尾增
*/
void insertChapter(const QModelIndex &pIndex, const QString &name, const QString &description, int index=-1);
void removeChaptersNode(const QModelIndex &chaptersNode);
void setCurrentChaptersNode(const QModelIndex &chaptersNode);
void checkChaptersRemoveEffect(const QModelIndex &chpsIndex, QList<QString> &msgList) const;
void appendDesplineUnder(const QModelIndex &anyVolumeIndex, const QString &name, const QString &description);
void appendDesplineUnderCurrentVolume(const QString &name, const QString &description);
/**
* @brief 在指定章节下添加支线驻点,index=-1就是附增
* @param desplineID
* @param title
* @param desp
* @param index 位置索引,-1代表尾增
*/
void insertAttachpoint(int desplineID, const QString &title, const QString &desp, int index=-1);
void removeDespline(int desplineID);
void removeAttachpoint(int attachpointID);
void attachPointMoveup(const QModelIndex &desplineIndex);
void attachPointMovedown(const QModelIndex &desplineIndex);
void allStoryblocksWithIDUnderCurrentVolume(QList<QPair<QString, int> > &storyblocks) const;
/**
* @brief 汇聚指定卷宗下的故事线(伏笔)
* @param node
* @param desplines
* @return
*/
void sumDesplinesUntilVolume(const QModelIndex &node, QList<QPair<QString, int>> &desplines) const;
/**
* @brief 汇聚所有本卷下未吸附伏笔
* @param foreshadowsList title,fullpath
*/
void sumPointWithChapterSuspend(int desplineID, QList<QPair<QString, int>> &suspendPoints) const;
void sumPointWithChapterAttached(const QModelIndex &chapterIndex, int desplineID, QList<QPair<QString, int>> &attachedPoints) const;
void chapterAttachSet(const QModelIndex &chapterIndex, int pointID);
void chapterAttachClear(int pointID);
void sumPointWithStoryblcokSuspend(int desplineID, QList<QPair<QString, int>> &suspendPoints) const;
void sumPointWithStoryblockAttached(const QModelIndex &outlinesIndex, int desplineID, QList<QPair<QString, int>> &attachedPoints) const;
void storyblockAttachSet(const QModelIndex &outlinesIndex, int pointID);
void storyblockAttachClear(int pointID);
void checkDesplineRemoveEffect(int fsid, QList<QString> &msgList) const;
void searchText(const QString& text);
void pushToQuickLook(const QTextBlock &block, const QList<QPair<QString,int>> &mixtureList);
int indexDepth(const QModelIndex &node) const;
void refreshWordsCount();
QString chapterActiveText(const QModelIndex& index);
int calcValidWordsCount(const QString &content);
void refreshDesplinesSummary();
ConfigHost &getConfigHost() const;
void testMethod();
void appendActiveTask(const QString &taskMask, int number=1);
void finishActiveTask(const QString &taskMask, const QString &finalTip, int number=1);
signals:
void documentAboutToBoClosed(QTextDocument *doc);
void documentPrepared(QTextDocument *doc, const QString &title);
void messagePopup(const QString &title, const QString &message);
void warningPopup(const QString &title, const QString &message);
void errorPopup(const QString &title, const QString &message);
void taskAppended(const QString &taskType, int number);
void taskFinished(const QString &taskType, const QString &finalTip, int number);
void currentChaptersActived();
void currentVolumeActived();
private:
ConfigHost &config_host;
NovelBase::DBAccess *desp_ins;
QStandardItemModel *const outline_navigate_treemodel;
QTextDocument *const novel_outlines_present;
QTextDocument *const volume_outlines_present;
QStandardItemModel *const chapters_navigate_treemodel;
QTextDocument *const chapter_outlines_present;
QStandardItemModel *const desplines_fuse_source_model;
NovelBase::DesplineFilterModel *const desplines_filter_under_volume;
NovelBase::DesplineFilterModel *const desplines_filter_until_volume_remain;
NovelBase::DesplineFilterModel *const desplines_filter_until_chapter_remain;
QStandardItemModel *const find_results_model;
// 所有活动文档存储容器anchor:<doc*,randerer*[nullable]>
QHash<NovelBase::ChaptersItem*,QPair<QTextDocument*, NovelBase::WordsRender*>> all_documents;
NovelBase::DBAccess::StoryTreeNode current_volume_node;
NovelBase::DBAccess::StoryTreeNode current_chapter_node;
QTextBlock current_editing_textblock;
void acceptEditingTextblock(const QTextCursor &cursor);
QStandardItemModel *const keywords_types_configmodel;
QList<QPair<NovelBase::DBAccess::KeywordField, QStandardItemModel*>> keywords_manager_group;
void _load_all_keywords_types_only_once();
QStandardItemModel *const quicklook_backend_model;
/**
* @brief 向chapters-tree和outline-tree上插入卷宗节点
* @param volume_handle
* @param index
* @return 返回对应的树节点,以供额外使用定制
*/
QPair<NovelBase::OutlinesItem *, NovelBase::ChaptersItem *>
insert_volume(const NovelBase::DBAccess::StoryTreeNode &volume_handle, int index);
void listen_novel_description_change();
void listen_volume_outlines_description_change(int pos, int removed, int added);
bool check_volume_structure_diff(const NovelBase::OutlinesItem *base_node, QTextBlock &blk) const;
void listen_volume_outlines_structure_changed();
void listen_chapter_outlines_description_change();
void outlines_node_title_changed(QStandardItem *item);
void chapters_node_title_changed(QStandardItem *item);
void _listen_basic_datamodel_changed(QStandardItem *item);
void set_current_volume_outlines(const NovelBase::DBAccess::StoryTreeNode &node_under_volume);
void set_current_chapter_content(const QModelIndex &chaptersNode, const NovelBase::DBAccess::StoryTreeNode &node);
void insert_description_at_volume_outlines_doc(QTextCursor cursor, NovelBase::OutlinesItem *outline_node);
NovelBase::DBAccess::StoryTreeNode _locate_outline_handle_via(QStandardItem *outline_item) const;
void _check_remove_effect(const NovelBase::DBAccess::StoryTreeNode &target, QList<QString> &msgList) const;
QTextDocument* load_chapter_text_content(QStandardItem* chpAnchor);
QModelIndex get_table_presentindex_via_typelist_model(const QModelIndex &mindex) const;
int extract_tableid_from_the_typelist_model(const QModelIndex &mindex) const;
};
#endif // NOVELHOST_H
| [
"2422523675@qq.com"
] | 2422523675@qq.com |
31d8efc71ee6819aef6ded26cca84906eab3ee98 | 0d0af8a5121a893459bbee88c857859d8635a1ab | /juego/src/JUEGO.cpp | c6187133d07d6348a45adfa9e68c9168eee90779 | [] | no_license | iriscuro/Proyecto_final | 2f53ccdfc828de2d561a9262c676f12b2d4b1990 | 770ecf5a997b6f940fd6eaa99570b2944b592804 | refs/heads/master | 2020-04-06T14:12:38.733007 | 2018-11-29T15:10:24 | 2018-11-29T15:10:24 | 157,532,123 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 698 | cpp | #include "JUEGO.h"
#include "score.h"
#include "SFML/Graphics.hpp"
using namespace sf;
void gamemostrar();
JUEGO::JUEGO(int ancho,int alto,std::string letra){//creamos ventana
ventana = new RenderWindow(sf::VideoMode(ancho,alto),letra);
ventana->setFramerateLimit(60);
gamemostrar();
}
void JUEGO::gamemostrar(){
while(ventana->isOpen())
{
// Procesamos la pila de eventos
while (ventana->pollEvent(event))
{
// Si el evento es de tipo Closed cerramos la ventana
if (event.type == sf::Event::Closed)
ventana->close();
}
dibujar();
}
}
void JUEGO::dibujar()
{
ventana->clear();
//score.show(sf::RenderWindow *ventana);
ventana->display();
}
| [
"iris.curo@ucsp.edu.pe"
] | iris.curo@ucsp.edu.pe |
b6520a3d32ff11148c3b9d8aaac9220419d5d467 | 6102e9eb884aab14d9addd3e71c371bd6f41dc26 | /1017.cpp | 09ef14f16e57d78f7bebea1b272def182f6cbd43 | [] | no_license | limbowandering/PAT_Level2 | 2125377c9ced9b74736cd72f267b76104db8a04c | ae3173342d3d578c8d180b1d809effefc890087c | refs/heads/master | 2021-05-06T21:30:21.217255 | 2017-12-17T08:57:13 | 2017-12-17T08:57:13 | 112,616,186 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 422 | cpp | #include <iostream>
using namespace std;
int main(){
string s;
cin >> s;
int a;
cin >> a;
int len = s.length();
int t = 0;
int tmp = 0;
t = (s[0] - '0') / a;
if((t != 0 && len > 1) || len == 1){
cout << t;
}
tmp = (s[0] - '0') % a;
for(int i = 1; i < len; i++){
t = (tmp * 10 + s[i] - '0') / a;
cout << t;
tmp = (tmp * 10 + s[i] - '0') % a;
}
cout << " " << tmp;
return 0;
} | [
"591176276@qq.com"
] | 591176276@qq.com |
4f993c9a96d65390043a7ee6ebb40ac3df8c5ead | da0e478aa133828b46cd9cdce321440806d6f5df | /IbeoSDK6.0.4/sdk/source/sdk/test/src/timeRelationsListTests/TimeRelationsList9010Test.cpp | 2bce99ac6732bcd1a3da621aa99fde2f3ee7a3ad | [] | no_license | mak6gulati/IBEO_sdk_check | 1a911fe1b5bd92bab2800fa40e4dfa219a10cd5b | 1114cbb88fa1a95e00b912a501582b3a42544379 | refs/heads/master | 2022-12-30T17:27:45.848079 | 2020-10-20T07:59:07 | 2020-10-20T07:59:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,762 | cpp | //==============================================================================
//! \file
//!
//! $$IBEO_LICENSE_BEGIN$$
//! Copyright (c) Ibeo Automotive Systems GmbH 2010-2019
//! All Rights Reserved.
//!
//! For more details, please refer to the accompanying file
//! IbeoLicense.txt.
//! $$IBEO_LICENSE_END$$
//!
//! \date Apr 3, 2018
//------------------------------------------------------------------------------
#include "TimeRelationsListTestSupport.hpp"
#include <ibeo/common/sdk/datablocks/timerelation/special/TimeRelationsList9010Importer9010.hpp>
#include <ibeo/common/sdk/datablocks/timerelation/special/TimeRelationsList9010Exporter9010.hpp>
#define BOOST_TEST_MODULE TimeRelationsListTest
#include <boost/test/unit_test.hpp>
//==============================================================================
using namespace ibeo::common::sdk;
//==============================================================================
BOOST_AUTO_TEST_SUITE(TimeRelationsList9010TestSuite)
//==============================================================================
class Fixture : public unittests::TimeRelationsListTestSupport
{
}; // Fixture
//==============================================================================
// Test: create an empty timerelation list
BOOST_FIXTURE_TEST_CASE(createTimeRelationList9010, Fixture)
{
ibeo::common::sdk::TimeRelationsList9010 trl9010;
BOOST_CHECK(trl9010.getTimeRelations().size() == 0);
}
//==============================================================================
// Test: create an empty timerelation
BOOST_FIXTURE_TEST_CASE(createTimeRelation9010, Fixture)
{
ibeo::common::sdk::TimeRelationIn9010 tr9010;
BOOST_CHECK(tr9010.getEntryList().size() == 0);
}
//==============================================================================
// Test: create an empty importer
BOOST_FIXTURE_TEST_CASE(createTimeRelation9010Importer, Fixture)
{
ibeo::common::sdk::TimeRelationsList9010Importer9010 importer;
BOOST_CHECK(true);
}
//==============================================================================
// Test: create an empty exporter
BOOST_FIXTURE_TEST_CASE(createTimeRelation9010Exporter, Fixture)
{
ibeo::common::sdk::TimeRelationsList9010Exporter9010 importer;
BOOST_CHECK(true);
}
//==============================================================================
// Test: create an empty timerelation list
BOOST_FIXTURE_TEST_CASE(ioTimeRelationList9010Identity, Fixture)
{
for (int32_t r = 0; r < nbOfRepeats; ++r)
{
const ibeo::common::sdk::TimeRelationsList9010Exporter9010 exporter;
ibeo::common::sdk::TimeRelationsList9010 trl9010Orig = createTimeRelationsList9010C(false);
const ibeo::common::sdk::IbeoDataHeader dh(
exporter.getDataType(), 0U, uint32_t(exporter.getSerializedSize(trl9010Orig)), 0U, NTPTime());
std::stringstream ss;
BOOST_CHECK(exporter.serialize(ss, trl9010Orig));
ibeo::common::sdk::TimeRelationsList9010 trl9010Copy;
const ibeo::common::sdk::TimeRelationsList9010Importer9010 importer;
BOOST_CHECK(importer.deserialize(ss, trl9010Copy, dh));
BOOST_CHECK(trl9010Copy == trl9010Orig);
}
}
//==============================================================================
//operator!= and operator==
BOOST_FIXTURE_TEST_CASE(isContentTimeRelationsList9010Equal, Fixture)
{
for (int32_t r = 0; r < nbOfRepeats; ++r)
{
ibeo::common::sdk::TimeRelationsList9010 trlOrig;
ibeo::common::sdk::TimeRelationsList9010 trlCopy;
BOOST_CHECK(trlOrig == trlCopy);
trlOrig = createTimeRelationsList9010C(false);
BOOST_CHECK(trlOrig != trlCopy);
const TimeRelationsList9010::TimeRelationMap& timeRelMap = trlOrig.getTimeRelations();
TimeRelationsList9010::TimeRelationMap copyMap;
for (const auto& tr9010 : timeRelMap)
{
BOOST_CHECK(trlOrig != trlCopy);
copyMap[tr9010.first] = tr9010.second;
trlCopy.getTimeRelations() = copyMap;
}
BOOST_CHECK(trlOrig == trlCopy);
const uint16_t pos = getRandValue<uint16_t>(
0, static_cast<uint16_t>(trlCopy.getTimeRelations().begin()->second.getEntryList().size() - 1));
// deleting random entry in first relation
trlCopy.getTimeRelations().begin()->second.getEntryList().erase(
trlCopy.getTimeRelations().begin()->second.getEntryList().begin() + pos);
BOOST_CHECK(trlOrig != trlCopy);
} // for r
}
//==============================================================================
BOOST_AUTO_TEST_SUITE_END()
//==============================================================================
| [
"mayank.gulati@automotive-ai.com"
] | mayank.gulati@automotive-ai.com |
159dcca010919e8c0a628475f429f31495dcf23e | a23ac6e731cf41eed4a309159972d22724751774 | /include/sockets/abl/handle.h | ec1b965c64907ea4b10584bebbac1af2529e92c8 | [] | no_license | ILikePizza555/Sockets.cpp | f9938a31b8bc323bb4e346c3e01f5730760309c4 | d4f0c557d1cf99898b7f4d38866370c8e3778dbb | refs/heads/master | 2020-03-26T15:34:20.790634 | 2018-12-07T02:18:44 | 2018-12-07T02:18:44 | 145,051,158 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 917 | h | //
// Defines the abstraction for the system socket handle.
// Created by avris on 10/4/2018.
//
#pragma once
#include "enums.h"
#include <memory>
namespace sockets {
namespace abl {
/**
* Struct that contains the system socket handle.
*/
struct handle_t;
/**
* Destructor for the handle.
* This function is not intended to be called directly. Use UniqueHandle or SharedHandle instead.
* @param handle
*/
void close_handle(handle_t* handle);
using UniqueHandle = std::unique_ptr<handle_t, decltype(&close_handle)>;
using SharedHandle = std::shared_ptr<handle_t>;
using HandleRef = const handle_t *;
UniqueHandle new_unique_handle(ip_family family, sock_type type, sock_proto protocol);
SharedHandle new_shared_handle(ip_family family, sock_type type, sock_proto protocol);
}
} | [
"avrisaac555@gmail.com"
] | avrisaac555@gmail.com |
09ee0db148112b5e69753cd895b8c2b43e51a716 | 23d15b8cb760a278a6a2b2fd55297ed6415ef38a | /Plugins/ObjectDeliverer/Source/ObjectDeliverer/Public/Protocol/ProtocolUdpSocket.h | df41bbc712bae283ba38bce04d9ab3447ad05fcf | [
"MIT"
] | permissive | 17702513221/ObjectDeliverer | fb8ac7ba7fd4fef1b4c8ee02a4ab508a5c076e8e | cf2fa23526b21cb2de69ce0dc98c2a2816a92d42 | refs/heads/master | 2022-09-16T12:59:19.511837 | 2020-05-26T14:34:48 | 2020-05-26T14:34:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 652 | h | // Copyright 2019 ayumax. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "ProtocolSocketBase.h"
#include "GetIPV4Info.h"
#include "ProtocolUdpSocket.generated.h"
class FSocket;
UCLASS(BlueprintType, Blueprintable)
class OBJECTDELIVERER_API UProtocolUdpSocket : public UProtocolSocketBase, public IGetIPV4Info
{
GENERATED_BODY()
public:
UProtocolUdpSocket();
~UProtocolUdpSocket();
void Initialize(FIPv4Endpoint IP);
void NotifyReceived(const FArrayReaderPtr& data);
bool GetIPAddress(TArray<uint8>& IPAddress) override;
bool GetIPAddressInString(FString& IPAddress) override;
private:
FIPv4Endpoint IPEndPoint;
};
| [
"ayuma0913@gmail.com"
] | ayuma0913@gmail.com |
b1ac7c0cc07f7d4c42c4a4e5d64e35d51c778720 | 5a3abbe978efa2b15ee1185e0d14757f243e6fce | /TemplePlus/ui/ui_debug.cpp | 77672169fb2966e3d252f79b093622bfcf03298c | [
"MIT"
] | permissive | lucianposton/TemplePlus | 1b3807ae1da6ebcc4d620ddd670b32605757d124 | f645d4d25d09fb4b81266fa6e1e5b223e47a2a17 | refs/heads/master | 2021-09-20T21:55:45.892727 | 2017-11-07T22:56:14 | 2017-11-07T22:56:14 | 111,852,676 | 0 | 0 | null | 2017-11-23T21:47:46 | 2017-11-23T21:47:46 | null | UTF-8 | C++ | false | false | 3,572 | cpp |
#include "stdafx.h"
#include "ui.h"
#include "ui_debug.h"
#include "ui/widgets/widgets.h"
#include "tig/tig_startup.h"
#include <graphics/shaperenderer2d.h>
#include <debugui.h>
static bool debugUiVisible = false;
void UIShowDebug()
{
debugUiVisible = true;
}
static void DrawWidgetTreeNode(int widgetId);
static bool HasName(LgcyWidget *widget) {
if (!widget->name[0]) {
return false;
}
// Some names are just filled with garbage... We try to catch that here by checking
// if any of the name's chars is a null terminator
for (int i = 0; i < 64; i++) {
if (!widget->name[i]) {
return true;
}
}
return false;
}
static void DrawLegacyWidgetTreeNode(LgcyWidget *widget) {
std::string textEntry;
if (widget->IsWindow()) {
textEntry += "[wnd] ";
} else if (widget->IsButton()) {
textEntry += "[btn] ";
} else if (widget->IsScrollBar()) {
textEntry += "[scr] ";
}
textEntry += std::to_string(widget->widgetId);
if (HasName(widget)) {
textEntry.push_back(' ');
textEntry.append(widget->name);
}
bool opened = ImGui::TreeNode(textEntry.c_str());
// Draw the widget outline regardless of whether the tree node is opend
if (ImGui::IsItemHovered()) {
tig->GetShapeRenderer2d().DrawRectangleOutline(
{ (float) widget->x, (float) widget->y },
{ (float) widget->x + widget->width, (float) widget->y + widget->height },
XMCOLOR(1, 1, 1, 1)
);
}
if (!opened) {
return;
}
ImGui::BulletText(" X:%d Y:%d W:%d H:%d", widget->x, widget->y, widget->width, widget->height);
if (widget->IsWindow()) {
auto window = (LgcyWindow*)widget;
for (size_t i = 0; i < window->childrenCount; i++) {
DrawWidgetTreeNode(window->children[i]);
}
}
ImGui::TreePop();
}
static void DrawAdvWidgetTreeNode(WidgetBase *widget) {
std::string textEntry;
if (widget->IsContainer()) {
textEntry += "[cnt] ";
} else if (widget->IsButton()) {
textEntry += "[btn] ";
} else {
textEntry += "[unk] ";
}
textEntry += fmt::format("{} ", widget->GetWidgetId());
if (!widget->GetId().empty()) {
textEntry += widget->GetId();
textEntry.append(" ");
}
textEntry += widget->GetSourceURI();
bool opened = ImGui::TreeNode(textEntry.c_str());
// Draw the widget outline regardless of whether the tree node is opend
if (ImGui::IsItemHovered()) {
auto contentArea = widget->GetContentArea();
tig->GetShapeRenderer2d().DrawRectangleOutline(
{ (float) contentArea.x, (float) contentArea.y },
{ (float) contentArea.x + contentArea.width, (float) contentArea.y + contentArea.height },
XMCOLOR(1, 1, 1, 1)
);
}
if (!opened) {
return;
}
ImGui::BulletText(" X:%d Y:%d W:%d H:%d", widget->GetX(), widget->GetY(), widget->GetWidth(), widget->GetHeight());
if (!widget->IsVisible()) {
ImGui::SameLine();
ImGui::TextColored({1, 0, 0, 1}, "[Hidden]");
}
if (widget->IsContainer()) {
auto window = (WidgetContainer*)widget;
for (auto &child : window->GetChildren()) {
DrawAdvWidgetTreeNode(child.get());
}
}
ImGui::TreePop();
}
static void DrawWidgetTreeNode(int widgetId) {
auto widget = uiManager->GetWidget(widgetId);
auto advWidget = uiManager->GetAdvancedWidget(widgetId);
if (advWidget) {
DrawAdvWidgetTreeNode(advWidget);
} else {
DrawLegacyWidgetTreeNode(widget);
}
}
void UIRenderDebug()
{
if (!debugUiVisible) {
return;
}
ImGui::Begin("UI System", &debugUiVisible);
if (ImGui::CollapsingHeader("Top Level Windows (Bottom to Top)")) {
for (auto &widgetId : uiManager->GetActiveWindows()) {
DrawWidgetTreeNode(widgetId);
}
}
ImGui::End();
}
| [
"sebastian@hartte.de"
] | sebastian@hartte.de |
cf0c5e363144899b8471fed2f9231c4a3b35a16a | 2056dd8592a02cdc57b9691d0d49150444fac5f2 | /EOJ/P10/1086.cpp | 0e2d690222be7764f5ab85bb09b2c046d91ee4d6 | [] | no_license | fssqawj/ACM_CODE | 691565cdf7c13c973601918b13a696a55d8c7b7d | 0b9ed84d03cbb1f92211eec2716dae5d4fc41591 | refs/heads/master | 2021-01-22T00:54:59.083440 | 2015-02-03T10:28:45 | 2015-02-03T10:28:45 | 14,707,459 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,030 | cpp | #include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
#include <math.h>
using namespace std;
const int maxn = 1000;
struct sub_t{
int l,r;
int maxx;
int minn;
};
struct tree{
int l,r;
//int maxx;
sub_t s_t[maxn];
};
tree t[maxn];
int a[maxn][maxn];
int n;
int ans[255][255];
inline int INP(){
int x = 0;
char c;
while((c = getchar()) != ' ' && c != '\n'){
x = x * 10 + c - '0';
}
return x;
}
void build_subtree(int rt,int sb_rt,int l,int r,int id){
//printf("rt = %d sb_rt = %d l = %d r = %d\n",rt,sb_rt,l,r);
t[rt].s_t[sb_rt].l = l;
t[rt].s_t[sb_rt].r = r;
if(l == r){
if(id != -1){
//printf("rt = %d sb_rt = %d id = %d l = %d\n",rt,sb_rt,id,l);
t[rt].s_t[sb_rt].maxx = a[id][l];
t[rt].s_t[sb_rt].minn = a[id][l];
//printf("rt = %d sb_rt = %d mx = %d mi = %d\n",rt,sb_rt,t[rt].s_t[sb_rt].maxx,t[rt].s_t[sb_rt].minn);
}
//else {
// t[rt].s_t[sb_rt].maxx = max(t[rt<<1].s_t[sb_rt].maxx,t[rt<<1|1].s_t[sb_rt].maxx);
// t[rt].s_t[sb_rt].minn = min(t[rt<<1].s_t[sb_rt].minn,t[rt<<1|1].s_t[sb_rt].minn);
//}
return ;
}
int mid = (l + r)>>1;
build_subtree(rt,sb_rt<<1,l,mid,id);
build_subtree(rt,sb_rt<<1|1,mid + 1,r,id);
//printf("id = %d\n",id);
if(id != -1){
//printf("rt = %d sb_rt = %d sb_rt<<1 = %d sb_rt<<1|1 = %d\n",rt,sb_rt,sb_rt<<1,sb_rt<<1|1);
//printf("lx = %d rx = %d\n",t[rt].s_t[sb_rt<<1].maxx,t[rt].s_t[sb_rt<<1|1].maxx);
t[rt].s_t[sb_rt].maxx = max(t[rt].s_t[sb_rt<<1].maxx,t[rt].s_t[sb_rt<<1|1].maxx);
t[rt].s_t[sb_rt].minn = min(t[rt].s_t[sb_rt<<1].minn,t[rt].s_t[sb_rt<<1|1].minn);
//printf("rt = %d sb_rt = %d id = %d l = %d r = %d maxx = %d minn = %d\n",rt,sb_rt,id,t[rt].s_t[sb_rt].l,t[rt].s_t[sb_rt].r,t[rt].s_t[sb_rt].maxx,t[rt].s_t[sb_rt].minn);
}
//else {
// printf("rt = %d sb_rt = %d\n",rt,sb_rt);
// printf("lx = %d rx = %d\n",t[rt<<1].s_t[sb_rt].maxx,t[rt<<1|1].s_t[sb_rt].maxx);
// t[rt].s_t[sb_rt].maxx = max(t[rt<<1].s_t[sb_rt].maxx,t[rt<<1|1].s_t[sb_rt].maxx);
// t[rt].s_t[sb_rt].minn = min(t[rt<<1].s_t[sb_rt].minn,t[rt<<1|1].s_t[sb_rt].minn);
//}
}
void push_up(int rt,int sb_rt,int l,int r){
if(l == r){
t[rt].s_t[sb_rt].maxx = max(t[rt<<1].s_t[sb_rt].maxx,t[rt<<1|1].s_t[sb_rt].maxx);
t[rt].s_t[sb_rt].minn = min(t[rt<<1].s_t[sb_rt].minn,t[rt<<1|1].s_t[sb_rt].minn);
return ;
}
int mid = (l + r)>>1;
push_up(rt,sb_rt<<1,l,mid);
push_up(rt,sb_rt<<1|1,mid + 1,r);
//printf("push rt = %d sb_rt = %d\n",rt,sb_rt);
t[rt].s_t[sb_rt].maxx = max(t[rt<<1].s_t[sb_rt].maxx,t[rt<<1|1].s_t[sb_rt].maxx);
t[rt].s_t[sb_rt].minn = min(t[rt<<1].s_t[sb_rt].minn,t[rt<<1|1].s_t[sb_rt].minn);
//printf("rt = %d sb_rt = %d l = %d r = %d d = %d u = %d maxx = %d minn = %d\n",rt,sb_rt,t[rt].l,t[rt].r,t[rt].s_t[sb_rt].l,t[rt].s_t[sb_rt].r,t[rt].s_t[sb_rt].maxx,t[rt].s_t[sb_rt].minn);
}
void build(int rt,int l,int r){
t[rt].l = l;
t[rt].r = r;
if(l == r){
build_subtree(rt,1,1,n,l);
return ;
}
else build_subtree(rt,1,1,n,-1);
int mid = (l + r)>>1;
build(rt<<1,l,mid);
build(rt<<1|1,mid + 1,r);
push_up(rt,1,1,n);
//t[rt].l =
//t[rt].maxx = max(t[rt<<1].maxx,t[rt<<1|1].maxx);
}
int query_subtree(int rt,int sb_rt,int l,int r,bool can){
//printf("sub rt = %d sb_rt = %d sl = %d l = %d sr = %d r = %d\n",rt,sb_rt,t[rt].s_t[sb_rt].l,l,t[rt].s_t[sb_rt].r,r);
if(t[rt].s_t[sb_rt].l >= l && t[rt].s_t[sb_rt].r <= r){
//printf("ma = %d mi = %d\n",t[rt].s_t[sb_rt].maxx,t[rt].s_t[sb_rt].minn);
if(can)return t[rt].s_t[sb_rt].maxx;
return t[rt].s_t[sb_rt].minn;
}
int mid = (t[rt].s_t[sb_rt].l + t[rt].s_t[sb_rt].r)>>1;
if(l > mid)return query_subtree(rt,sb_rt<<1|1,l,r,can);
else if(r <= mid)return query_subtree(rt,sb_rt<<1,l,r,can);
else {
if(can)return max(query_subtree(rt,sb_rt<<1,l,mid,can),query_subtree(rt,sb_rt<<1|1,mid + 1,r,can));
return min(query_subtree(rt,sb_rt<<1,l,mid,can),query_subtree(rt,sb_rt<<1|1,mid + 1,r,can));
}
}
int query(int rt,int l,int r,int d,int u,bool can){
//printf("rt = %d tl = %d l = %d tr = %d r = %d d = %d u = %d\n",rt,t[rt].l,l,t[rt].r,r,d,u);
if(t[rt].l >= l && t[rt].r <= r){
return query_subtree(rt,1,d,u,can);
}
int mid = (t[rt].l + t[rt].r)>>1;
if(l > mid)return query(rt<<1|1,l,r,d,u,can);
else if(r <= mid)return query(rt<<1,l,r,d,u,can);
else {
if(can)return max(query(rt<<1,l,mid,d,u,can),query(rt<<1|1,mid + 1,r,d,u,can));
return min(query(rt<<1,l,mid,d,u,can),query(rt<<1|1,mid + 1,r,d,u,can));
}
}
int main(){
int b,m;
while(scanf("%d%d%d",&n,&b,&m) != EOF){
memset(ans,-1,sizeof(ans));
for(int i = 1;i <= n;i ++){
for(int j = 1;j <= n;j ++){
scanf("%d",&a[i][j]);
}
}
getchar();
build(1,1,n);
for(int i = 0;i < m;i ++){
int x = INP(),y = INP();
//scanf("%d%d",&x,&y);
if(ans[x][y] != -1){
printf("%d\n",ans[x][y]);
continue;
}
int maxx = query(1,x,x + b - 1,y,y + b - 1,1);
int minn = query(1,x,x + b - 1,y,y + b - 1,0);
//printf("maxx = %d minn = %d\n",maxx,minn);
printf("%d\n",maxx - minn);
ans[x][y] = maxx - minn;
}
//break;
}
return 0;
}
| [
"fssqawj@163.com"
] | fssqawj@163.com |
b2ab5248ff66a3316118d3a3d3f01980963e9d02 | 1b129c7680317afebf80803c4b9f453f3e5cc824 | /Application/Source/User Interface/Games/Info Area/GameDataView.h | 108f9e70b6c1fe1c3960331b4eeab9177eb3826b | [
"BSD-2-Clause"
] | permissive | lubert/sigma-chess | aaa826f90cd45e53fb5235a53e41e647685c65e1 | 07313cbc810419b5e8f58eb6007cba9d73d85759 | refs/heads/master | 2020-05-27T06:16:01.651780 | 2018-11-29T18:53:44 | 2018-11-29T18:53:44 | 42,089,404 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 1,489 | h | /*
Copyright (c) 2011, Ole K. Christensen
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.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "DataView.h"
class GameDataView : public DataView
{
public:
GameDataView(BRect frame, const char *name);
virtual void Draw(BRect updateRect);
};
| [
"misterzhu@gmail.com"
] | misterzhu@gmail.com |
91b98268c0239db0c2f64c81760a05254704f5cb | 8fa9074be698d8cbbeec169d21ab0cf10538ce37 | /Grand_life.Altis/The-Programmer/Iphone_X/dialogs/phone_chargements.hpp | fbf37c48c8c9e21ec4c84008d77fdb08283b8449 | [] | no_license | Speedy372/wl-remastered | a6d1d5e923c5dc2abf5b8d382e80fb42f20b4c88 | 7ecc83a38915d0716569d87a24ff3797d6df3e99 | refs/heads/main | 2023-04-09T05:46:26.645146 | 2021-03-30T11:22:07 | 2021-03-30T11:22:07 | 340,695,889 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,322 | hpp | class The_Programmer_Iphone_Loading_Menu {
idd = 542367;
name = "The_Programmer_Iphone_Loading_Menu";
movingenable = 1;
enablesimulation = 1;
class controlsBackground {
class FondPrincipale: Life_RscPicture {
text = "The-Programmer\Iphone_X\textures\fond.paa";
idc = -1;
x = 0.6379405 * safezoneW + safezoneX;
y = 0.288744481809243 * safezoneH + safezoneY;
w = 0.21 * safezoneW;
h = 0.7 * safezoneH;
};
};
class controls {
class Heure: Life_RscStructuredText {
idc = 2101;
text = "";
x = 0.689583333333333 * safezoneW + safezoneX;
y = 0.537551622418879 * safezoneH + safezoneY;
h = 0.05 * safezoneH;
w = 0.1 * safezoneW;
};
class deverouiller: Life_RscStructuredText {
idc = -1;
text = "<t align='center'>Dotknij, aby odblokowac</t>";
x = 0.660863833333334 * safezoneW + safezoneX;
y = 0.827665683382498 * safezoneH + safezoneY;
w = 0.165 * safezoneW;
h = 0.022 * safezoneH;
};
class phone: Life_RscButtonInvisible {
idc = -1;
text = "";
onbuttonclick = "closeDialog 0; player setVariable [""iphone_chargement_done"",false]; [1] spawn the_programmer_iphone_fnc_phone_init;";
x = 0.644072833333332 * safezoneW + safezoneX;
y = 0.408517994100295 * safezoneH + safezoneY;
w = 0.2 * safezoneW;
h = 0.4 * safezoneH;
};
class Image: Life_RscPicture {
text = "The-Programmer\Iphone_X\textures\lock.paa";
x = 0.719072833333332 * safezoneW + safezoneX;
y = 0.73398505408063 * safezoneH + safezoneY;
w = 0.0420000000000001 * safezoneW;
h = 0.07 * safezoneH;
idc = -1;
};
class Reboot: Life_RscButtonInvisible {
idc = -1;
tooltip = "Reboot";
onbuttonclick = "[] call the_programmer_iphone_fnc_reboot;";
x = 0.807894833333333 * safezoneW + safezoneX;
y = 0.312326017502458 * safezoneH + safezoneY;
w = 0.01 * safezoneW;
h = 0.02 * safezoneH;
};
};
}; | [
"59737499+Speedy372@users.noreply.github.com"
] | 59737499+Speedy372@users.noreply.github.com |
0b37b829fd0e7bdb1d248d0c9743b6c4cd609a11 | 94db0bd95a58fabfd47517ed7d7d819a542693cd | /client/ClientRes/IOSAPI/Classes/Native/mscorlib_System_Comparison_1_gen2248621462.h | 7e39c3071cc5eddc52a861323768826478480c9b | [] | no_license | Avatarchik/card | 9fc6efa058085bd25f2b8831267816aa12b24350 | d18dbc9c7da5cf32c963458ac13731ecfbf252fa | refs/heads/master | 2020-06-07T07:01:00.444233 | 2017-12-11T10:52:17 | 2017-12-11T10:52:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 743 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.IAsyncResult
struct IAsyncResult_t1999651008;
// System.AsyncCallback
struct AsyncCallback_t163412349;
// System.Object
struct Il2CppObject;
#include "mscorlib_System_MulticastDelegate3201952435.h"
#include "mscorlib_System_UInt16986882611.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Comparison`1<System.UInt16>
struct Comparison_1_t2248621462 : public MulticastDelegate_t3201952435
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"1"
] | 1 |
b2ef6514c7019ab2ed225bcdef22bd6c376f9e18 | 29776f52905112cc99f30cb6f7a67bccaca0a257 | /Llista_03/quantes_xifres/X08783.cc | 3fa5416d60233757c11ac5d24f44ec50a6ea8b89 | [] | no_license | Cabahamaru/PRO1-FIB | 40e6d35f5ce8f69e3352d141d1ca9c190ac8d431 | 8b1ad27ec63acf0da1f507b5f02a1c75ece97113 | refs/heads/master | 2020-04-27T03:48:04.570903 | 2019-03-05T23:17:52 | 2019-03-05T23:17:52 | 174,035,144 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 243 | cc | #include <iostream>
using namespace std;
int main() {
int b, n, count;
count = 1;
while (cin >> b >> n) {
while (n >= b) {
count = count + 1;
n = n/b;
}
cout << count << endl;
count = 1;
}
}
| [
"jaume.riera200@gmail.com"
] | jaume.riera200@gmail.com |
75e4b192ecea56a8291d6d7b60739f061d9ad6da | 7d55f60d923a6955172730040f0110430af0d373 | /robots/xpp_hyq/include/xpp_hyq/inverse_kinematics_hyq1.h | 00a7a1a6b788b68f0760c8dd2e30a72d4bf29021 | [
"BSD-3-Clause"
] | permissive | mikaelarguedas/xpp | 0e781b87af098b8f3c13c81a5ccf8df7b1f55ee5 | 459b6a35a58e9af2066ede9128b78375ea5c4e2a | refs/heads/master | 2021-07-19T06:22:45.866512 | 2017-10-27T09:06:35 | 2017-10-27T09:06:35 | 108,604,584 | 0 | 0 | null | 2017-10-27T23:27:24 | 2017-10-27T23:27:24 | null | UTF-8 | C++ | false | false | 2,547 | h | /******************************************************************************
Copyright (c) 2017, Alexander W. Winkler, ETH Zurich. 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 ETH ZURICH 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 ETH ZURICH 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.
******************************************************************************/
#ifndef XPP_VIS_INVERSEKINEMATICS_HYQ1_H_
#define XPP_VIS_INVERSEKINEMATICS_HYQ1_H_
#include <xpp_vis/inverse_kinematics.h>
#include <xpp_hyq/hyqleg_inverse_kinematics.h>
namespace xpp {
/**
* @brief Inverse Kinematics for one HyQ leg attached to a brick (base).
*/
class InverseKinematicsHyq1 : public InverseKinematics {
public:
InverseKinematicsHyq1();
virtual ~InverseKinematicsHyq1();
/**
* @brief Returns joint angles to reach for a specific foot position.
* @param pos_B 3D-position of the foot expressed in the base frame (B).
*/
Joints GetAllJointAngles(const EndeffectorsPos& pos_B) const override;
/**
* @brief Number of endeffectors (feet, hands) this implementation expects.
*/
int GetEECount() const override { return 1; };
private:
HyqlegInverseKinematics leg;
};
} /* namespace xpp */
#endif /* XPP_VIS_INVERSEKINEMATICS_HYQ1_H_ */
| [
"winklera@ethz.ch"
] | winklera@ethz.ch |
d13e1643ec56093e9919ff95e1187bce0f42392a | ed5e941cc45dfc5f6bc457defd1f9cacf49a1012 | /Ajenda-abuela.cpp | 8e9a14107baaf9790ec9ed663b2893829c9d0303 | [] | no_license | Gonzalo345/proyecto-abuela | e8b513f62b7865d2bcb7a0344912ecd436a25c98 | 1bc42d8bbcc39852bb7aae68e5e7015b253db7bf | refs/heads/master | 2020-07-07T10:28:09.898186 | 2019-08-29T10:15:13 | 2019-08-29T10:15:13 | 203,324,135 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,285 | cpp | //============================================================================
// Name : Program.c
// Author : Gonzalo, Yarvi
// Version : 2.0
// Created on : August 20, 2019
// Description : Create an agenda for my grandmother
// Compiler : Eclipse IDE
//============================================================================
#include <sys/select.h> // To compile in Linux
#include <iostream>
#include "data.h"
#include "sistemTime.h"
using namespace std;
void Delay( long int secs ); // 3-second delay
void createNewTask(data &);
void taskInit(data &);
int kbhit( void ); // Controls if a key was pressed
unsigned int stringtoInt(string, unsigned int &, unsigned int &, bool &);
int stringtoInt(string );
int main (int argc, char** argv)
{
timeControl Time;
data Task;
string strOption;
int option = 0;
unsigned int Hour, Min;
unsigned int Speed;
taskInit(Task); // Initialization of tasks
cout << "****************************************************" << endl;
cout << " AGENDA FOR MY GRANDMOTHER " << endl;
cout << "****************************************************" << endl;
cout << "Actual Time: " << Time.hour() << ":" << Time.min() << endl << endl;
cout << "To see the task of the moment press 1" << endl;
cout << "To input an hour press 2" << endl;
cout << "To see the the actual Time 3" << endl;
cout << "To see the status of the task 4" << endl;
cout << "To input a speed factor press 5" << endl;
cout << "To see the menu press 6" << endl;
cout << "To add a new task press 7" << endl;
cout << "To finish press 8" << endl << endl;
while (option != 8){
while (!kbhit()) { // While no key is pressed
// Take the current time
Task.actualTask(Time.currentMin()); // Controls the automatic execution of tasks
Delay( 1 );
}
cin >> strOption;
option = stringtoInt(strOption);
switch (option) {
case 1: // Task of the moment
cout << "\nActual Time: " << Time.hour() << ":" << Time.min() << endl;
Task.taskStatus(Time.currentMin());
cout << "To see the menu press 6:" << endl;
break;
case 2: // Enter an hour, to show which task would be running
cout << "Enter the hour first, then the minutes" << endl;
cout << "Hours : ";
cin >> Hour;
cout << "Minutes: ";
cin >> Min;
Task.taskStatus(Hour * 60 + Min);
cout << "To see the menu press 6:" << endl;
break;
case 3: // Displaying the current time in standard format
cout << "Actual Time: " << Time.hour() << ":" << Time.min() << endl;
cout << "To see the menu press 6:" << endl;
break;
case 4: // Show the status of tasks
Task.showTasks();
Delay(3);
cout << "To see the menu press 6:" << endl;
break;
case 5: // Increase the speed factor
cout << "Actual Time: " << Time.hour() << ":" << Time.min() << endl;
cout << "Enter the speed factor ( 1 to 200 ) :" << endl;
cin >> Speed;
if ( Speed < 1 ){ Speed = 1;}
if ( Speed > 200 ){ Speed = 200;}
cout << "Speed :" << Speed << endl;
Time.speedFactor(Speed);
cout << "To see the menu press 6:" << endl;
break;
case 6: // Show the menu
cout << "To see the task of the moment press 1" << endl;
cout << "To input an hour press 2" << endl;
cout << "To see the the actual Time 3" << endl;
cout << "To see the status of the task 4" << endl;
cout << "To input a speed factor press 5" << endl;
cout << "To see the menu press 6" << endl;
cout << "To add a new task press 7" << endl;
cout << "To finish press 8" << endl;
break;
case 7: // New task
createNewTask(Task);
cout << "To see the menu press 6:" << endl;
break;
case 8: // Exit
cout << "Closing program" << endl;
break;
default:
cout << "Entry was not recognized enter again\n" << endl;
break;
}
}
Task.delet(Task);
//delete Task;
cout << "Press enter to continue ..." << endl;
cin >> strOption;
return 0;
}
// Detect if a key was pressed. To compile in Linux is required
int kbhit( void )
{
struct timeval tv;
fd_set read_fd;
tv.tv_sec=0;
tv.tv_usec=0;
FD_ZERO( &read_fd );
FD_SET( 0, &read_fd );
if( select( 1, &read_fd, NULL, NULL, &tv ) == -1 )
return 0;
if( FD_ISSET( 0,&read_fd ))
return 1;
return 0;
}
void createNewTask(data &Task){
string taskTexto;
string strStarTime, strEndTime;
unsigned int start, end,horaStart, minStart, horaEnd, minEnd;
bool ok1, ok2;
cout << "Creating a new task " << endl;
cout << "Enter the task text : ";
cin.ignore();
getline (cin,taskTexto); // I read the whole line of text
cout << "What is the start time of the task? enter the time as follows 15:45" << endl;
cout << "Time : ";
cin >> strStarTime;
cout << "What is the end time of the task?" << endl;
cout << "Time : ";
cin >> strEndTime;
start = stringtoInt(strStarTime, horaStart, minStart, ok1);
end = stringtoInt(strEndTime, horaEnd, minEnd, ok2);
if(ok1 && ok2){
Task.addNode(start, end, taskTexto, "Have you done it?");
cout << "The new task has been created" << endl;
cout << "Task : " << taskTexto << " Start " << horaStart <<":"<< minStart << " End " << horaEnd << ":" << minEnd << endl;
}
else{
cout << "Error!, the new task hasn't been created" << endl;
}
}
// initialization of the tasks
void taskInit(data &Task){
Task.addNode( 0, 0, 7, 0,"Sleep", "You should be sleeping");
Task.addNode( 7,12, 7,23,"Take the morning pills", "Did you take the pills?");
Task.addNode( 7,31, 8, 0,"Have breakfast", "Did you have breakfast?");
Task.addNode(11,30, 12, 0,"Cook", "Did you cook?");
Task.addNode(12,01, 12,45,"Lunch time", "Did you have lunch?");
Task.addNode(14,45, 15,45,"Take a nap", "Did you take a nap?");
Task.addNode(17, 0, 18, 0,"Go to the supermarket", "Did you do the shopping?");
Task.addNode(19,01, 20, 0,"Take the night pills", "Did you take the pills?");
Task.addNode(20,01, 21,45,"Have dinner", "Did you have dinner?");
}
unsigned int stringtoInt(string str,unsigned int &hora, unsigned int &min, bool &ok){
char charHora[] = {'0', '0','\0'},charMin[] = {'0', '0','\0'};
size_t found = str.find(':');
if (found!=std::string::npos){
str.copy(charHora,2,0);
str.copy(charMin,2,3);
hora = stoi(charHora);
min = stoi(charMin);
ok = true;
if (hora > 24){ hora = 24;}
if (min > 60){ min = 60;}
return(hora * 60 + min);
}
else{
cout << "Entry was not recognized" <<endl;
cout << "I didn't find the : in the string" << endl;
ok = false;
return 0;
}
}
int stringtoInt(string option){
int i;
try {
i = stoi(option); // string -> integer
}
catch (...) {
i = 9; // error management
//cout << "Entry was not recognized enter again\n" << endl;
}
return (i);
}
/* Three-Second Delay */
void Delay( long int secs ){
time_t tv_sec;
tv_sec = ( time_t )secs;
struct timespec delta = { tv_sec, 0}; // {seconds, nanoseconds}
while (nanosleep(&delta, &delta));
}
| [
"gon_x4@hotmail.com"
] | gon_x4@hotmail.com |
7042a2fca8190b7abe693d5c45d1b1f73a3c5d62 | 04e2587fdc480ad47a4329a0d87be13e8ed82560 | /Engine/include/Engine/Core/Components/ComponentsFactories.hh | 7f7bd26ec3dc0d40459f1b32acc5f2b430df3fbf | [] | no_license | MajorSquirrelTVS/Tekeimyung | 9309bb053572c3e3c3ffb1df5b514becff95bd1b | af70feeb5391a2f378acc9425f30568c66c8b6ca | refs/heads/master | 2020-04-15T05:36:40.209235 | 2017-05-22T09:36:25 | 2017-05-22T09:36:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 566 | hh | #pragma once
#include "BoxColliderComponentFactory.hpp"
#include "ButtonComponentFactory.hpp"
#include "CameraComponentFactory.hpp"
#include "DynamicComponentFactory.hpp"
#include "LightComponentFactory.hpp"
#include "NameComponentFactory.hpp"
#include "ParticleEmitterComponentFactory.hpp"
#include "RenderComponentFactory.hpp"
#include "RigidBodyComponentFactory.hpp"
#include "ScriptComponentFactory.hpp"
#include "SphereColliderComponentFactory.hpp"
#include "TextComponentFactory.hpp"
#include "TransformComponentFactory.hpp"
#include "UiComponentFactory.hpp"
| [
"guillaume.labey@epitech.eu"
] | guillaume.labey@epitech.eu |
e07f7ca844ebf3d0d3355daacb9ee9706223030b | c3a0f82e6d0fb3e8fb49afc042560e5787e42141 | /codeforces/1296/D.cpp | ea6d7bb7985133a025740a866cb3b348902c1bc2 | [] | no_license | SahajGupta11/Codeforces-submissions | 04abcd8b0632e7cdd2748d8b475eed152d00ed1b | 632f87705ebe421f954a59d99428e7009d021db1 | refs/heads/master | 2023-02-05T08:06:53.500395 | 2019-09-18T16:16:00 | 2020-12-22T14:32:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,156 | cpp | #include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#define e "\n"
#define endl "\n"
using namespace std;
#define Tp template<class T>
#define Tp2 template<class T1, class T2>
#define Tps template<class T, class... Ts>
#define Tps2 template<class T1, class T2, class... Ts>
#define ff first
#define ss second
#define rev(Aa) reverse(Aa.begin(),Aa.end())
#define all(Aa) Aa.begin(),Aa.end()
#define rall(Aa) Aa.rbegin(),Aa.rend()
#define lb lower_bound
#define ub upper_bound
#define rsz resize
#define ins insert
#define mp make_pair
#define pb push_back
#define pf push_front
#define popb pop_back
#define popf pop_front
#define eb emplace_back
#define sz(Xx) (int)(Xx).size()
#define MOD 1000000007 //1e9 + 7
#define INF 2000000000 //2e9
#define DESPACITO 1000000000000000000 //1e18
//mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
namespace minmax {
Tp T max (T&& A) { return A; }
Tp T min (T&& A) { return A; }
Tp T max (T&& A, T&& B) { return A>B?A:B; }
Tp T min (T&& A, T&& B) { return A<B?A:B; }
Tps T max (T&& A, Ts&&... ts) { T B = max(ts...); return A>B?A:B; }
Tps T min (T&& A, Ts&&... ts) { T B = min(ts...); return A<B?A:B; }
Tps T chmax(T&& A, Ts&&... ts) { A = max(A, ts...); return A; }
Tps T chmin(T&& A, Ts&&... ts) { A = min(A, ts...); return A; }
}
namespace input {
Tp void re(T&& Xx) { cin >> Xx; }
Tp2 void re(pair<T1,T2>& Pp) { re(Pp.first); re(Pp.second); }
Tp void re(vector<T>& Aa) { for(int i = 0; i < sz(Aa); i++) re(Aa[i]); }
Tp2 void rea(T1&& Aa, T2 t) { for(int i = 0; i < t; i++) re(Aa[i]); }
Tps2 void rea(T1&& Aa, T2 t, Ts&&... ts) { rea(Aa, t); rea(ts...); }
Tp2 void rea1(T1&& Aa, T2 t) { for(int i = 1; i <= t; i++) re(Aa[i]); }
Tps2 void rea1(T1&& Aa, T2 t, Ts&... ts) { rea1(Aa, t); rea1(ts...); }
Tps void re(T&& t, Ts&... ts) { re(t); re(ts...); }
}
namespace output {
void pr(int Xx) { cout << Xx; }
// void pr(num Xx) { cout << Xx; }
void pr(bool Xx) { cout << Xx; }
void pr(long long Xx) { cout << Xx; }
void pr(long long unsigned Xx) { cout << Xx; }
void pr(double Xx) { cout << Xx; }
void pr(char Xx) { cout << Xx; }
void pr(const string& Xx) { cout << Xx; }
void pr(const char* Xx) { cout << Xx; }
void pr(const char* Xx, size_t len) { cout << string(Xx, len); }
void ps() { cout << endl; }
void pn() { /*do nothing*/ }
void pw() { pr(" "); }
void pc() { pr("]"); ps(); }
Tp2 void pr(const pair<T1,T2>& Xx) { pr(Xx.first); pw(); pr(Xx.second);}
Tp void pr(const T&);
bool parse(const char* t) { if(t == e) return true; return false;}
Tp bool parse(T&& t) { return false;}
Tp2 bool parsepair(const pair<T1,T2>& Xx) { return true; }
Tp bool parsepair(T&& t) { return false;}
Tp2 void psa(T1&& Aa, T2 t) { for(int i = 0; i < t; i++) pr(Aa[i]), pw(); ps(); }
Tp2 void pna(T1&& Aa, T2 t) { for(int i = 0; i < t; i++) pr(Aa[i]), ps(); }
Tp2 void psa2(T1&& Aa, T2 t1, T2 t2) { for(int i = 0; i < t1; i++) {for(int j = 0; j < t2; j++) pr(Aa[i][j]), pw(); ps();} }
Tp void pr(const T& Xx) { bool fst = 1; bool op = 0; if (parsepair(*Xx.begin())) op = 1; for (const auto& Aa: Xx) {if(!fst) pw(); if(op) pr("{"); pr(Aa), fst = 0; if(op) pr("}"); } }
Tps void pr(const T& t, const Ts&... ts) { pr(t); pr(ts...); }
Tps void ps(const T& t, const Ts&... ts) { pr(t); if (sizeof...(ts)) {if (!parse(t)) pw(); } ps(ts...); }
Tp void pn(const T& t) { for (const auto& Aa: t) ps(Aa); }
Tps void pw(const T& t, const Ts&... ts) { pr(t); if (sizeof...(ts)) pw(); pw(ts...); }
Tps void pc(const T& t, const Ts&... ts) { bool op = 0; if (parsepair(t)) op = 1; if(op) pr("{"); pr(t); if(op) pr("}"); if (sizeof...(ts)) pr(", "); pc(ts...); }
namespace trace {
#define tr(Xx...) pr("[",#Xx,"] = ["), pc(Xx);
#define tra(Xx, y...) __f0(#Xx, Xx, y)
#define tran(Xx, n) __fn(n, #Xx, Xx) // TO DO~ variadic multidimensional
Tp2 void __f(const char* name, const T1& Xx, const T2& y){ pr("[",y,"] = "); ps(Xx); }
Tps2 void __f(const char* name, const T1& Xx, const T2& y, const Ts&... rest){ const char *open = strchr(name, '['); pr("[",y,"]"); __f(open+1, Xx, rest...); }
Tps2 void __f0(const char* name, const T1& Xx, const T2& y, const Ts&... rest){ const char *open = strchr(name, '['); pr(name, size_t(open-name)); __f(name, Xx, y, rest...); }
Tp void __fn(int n, const char* name, const T& Xx) { for(int i = 0; i < n; i++) pr(name), __f(name, Xx[i], i); }
}
}
using namespace minmax;
using namespace input;
using namespace output;
using namespace output::trace;
#define int long long
using pii = pair<int, int>;
const int N = 2e5 + 5;
vector<int> rems;
int32_t main() {
IOS;
int i, n, a, b, k, h, z;
re(n, a, b, k);
rems.pb(-1);
for(i = 0; i < n; i++) {
re(h); h %= (a+b);
if(!h) h += a+b;
rems.pb(max(0, (h-1)/a));
}
sort(all(rems));
int sum = 0;
for(i = 1; i <= n; i++) {
if (sum + rems[i] > k) break;
sum += rems[i];
}
ps(i-1);
return 0;
} | [
"ghriday.bits@gmail.com"
] | ghriday.bits@gmail.com |
496c449d7eae79ca8d13c2d17bc91622d2b421b2 | f1f322b86b823d09d0d001dfdd29dfe14272be6a | /Enter/Enter/ViewModels/OrderViewModels.h | c67f8421d8db67282123715b00582a83345aeece | [] | no_license | oleg-peresada/enter.ru | ea9cbedab2f29357992d4e98cdd852e571b9a700 | 2352f3b5174729abad8f41687945c4652acd9a58 | refs/heads/master | 2023-01-03T04:29:04.564343 | 2020-10-29T12:47:00 | 2020-10-29T12:47:00 | 308,324,565 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,926 | h | #pragma once
#include <sstream>
#include <string>
#include <vector>
#include <collection.h>
#include <array>
#include "LoadStateEventArgs.h"
#include "ViewModelsBase.h"
#include "DataModel\BasketProductSerialize.h"
#include "DataModel\Storage\AutorizationStorage.h"
#include "Controls\PickShopControl.xaml.h"
#include "Controls\CitiesMenuControl.xaml.h"
#include "Controls\OrderCompletedControl.xaml.h"
#include "View\Settings\AutorizationFlyout.xaml.h"
using namespace Enter;
using namespace Enter::DataModel;
using namespace EnterStore::Models;
using namespace Platform;
using namespace Windows::Foundation;
using namespace Windows::Foundation::Collections;
namespace Enter
{
namespace ViewModels
{
[Windows::UI::Xaml::Data::Bindable]
[Windows::Foundation::Metadata::WebHostHidden]
public ref class OrderViewModels sealed : public ViewModelsBase
{
public:
virtual ~OrderViewModels();
property OrderCalcModels^ OrderCalc
{
OrderCalcModels^ get();
void set(OrderCalcModels^ val);
}
property IObservableVector<BasketProductDataModel^>^ ProductBasket
{
IObservableVector<BasketProductDataModel^>^ get();
void set(IObservableVector<BasketProductDataModel^>^ val);
}
property IObservableVector<ProductDeliveryDataModel^>^ ProductDelivery
{
IObservableVector<ProductDeliveryDataModel^>^ get();
void set(IObservableVector<ProductDeliveryDataModel^>^ val);
}
property double PriceDelivery
{
double get();
void set(double val);
}
property double GlobalPrice
{
double get();
void set(double val);
}
property bool IsPickup
{
bool get();
void set(bool val);
}
property bool IsStandart
{
bool get();
void set(bool val);
}
property bool IsPickupNew
{
bool get();
void set(bool val);
}
property Visibility PersonalDataVisibility
{
Visibility get();
void set(Visibility val);
}
property Visibility ListProductVisibility
{
Visibility get();
void set(Visibility val);
}
property Visibility AddressDeliveryVisibility
{
Visibility get();
void set(Visibility val);
}
property String^ FirstName
{
String^ get();
void set(String^ val);
}
property String^ LastName
{
String^ get();
void set(String^ val);
}
property String^ Phone
{
String^ get();
void set(String^ val);
}
property String^ Email
{
String^ get();
void set(String^ val);
}
property String^ AddressStreet
{
String^ get();
void set(String^ val);
}
property String^ AddressBuilding
{
String^ get();
void set(String^ val);
}
property String^ AddressNumber
{
String^ get();
void set(String^ val);
}
property String^ AddressFloor
{
String^ get();
void set(String^ val);
}
property String^ AddressApartment
{
String^ get();
void set(String^ val);
}
property RelayCommand^ IsPickupCommand
{
RelayCommand^ get();
}
property RelayCommand^ IsStandartCommand
{
RelayCommand^ get();
}
property RelayCommand^ IsPickupNewCommand
{
RelayCommand^ get();
}
property RelayCommand^ PickShopCommand
{
RelayCommand^ get();
}
property RelayCommand^ OrderEndCommand
{
RelayCommand^ get();
}
internal:
OrderViewModels(Windows::UI::Xaml::Controls::Page^ page);
void OnAmountSum();
void CommandUpdate(bool is_pickup, bool is_pickupNew, bool is_standart);
void OnDeliveryProductLoaded(ProductGroupDelivery valueType);
void OnPickShop(Object^ parameter);
void OnPickShopItemClick(Object ^sender, Object ^Item);
bool OnTextChangedContent();
void OnPopupCities();
void OnOrderCompleted(IVector<OrderDeliveryResult^>^ valueOrder);
bool IsProductBasket(int id);
void OnRemoveToBasketProduct();
void OnOrderCommand();
private:
OrderCalcModels^ source_orderCalc;
IObservableVector<BasketProductDataModel^>^ source_ProductBasket;
IObservableVector<ProductDeliveryDataModel^>^ source_productDelivery;
bool source_isPickup;
bool source_isStandart;
bool source_isPickupNew;
double source_globalPrice;
double source_deliveryPrice;
Visibility source_visibilityListProduct;
Visibility source_visibilityPersonalData;
Visibility source_visibilityAddressDelivery;
String^ text_firstName;
String^ text_lastName;
String^ text_Phone;
String^ text_Email;
String^ text_AddressStreet;
String^ text_AddressBuilding;
String^ text_AddressNumber;
String^ text_AddressFloor;
String^ text_AddressApartment;
protected:
virtual void OnLoadState(Windows::UI::Xaml::Navigation::NavigationEventArgs^ args, Enter::LoadStateEventArgs^ state) override;
virtual void OnSaveState(Windows::UI::Xaml::Navigation::NavigationEventArgs^ args, Enter::SaveStateEventArgs^ state) override;
};
}
} | [
"peresada.oleg@mail.ru"
] | peresada.oleg@mail.ru |
4c5a788277d92efc7ee6217992e9381e7e926c70 | 6452866acc13c4fa3199c8e25114f61ae96b85f7 | /DynamicProgramming/UVa11517_ExactChange.cpp | edd302ec90c2d66a424d7bdf259fb384c67433b0 | [] | no_license | Tanavya/Competitive-Programming | 7b46ce7a4fad8489ede77756dff44a00487f69b1 | 2519df7406bb2351230353488672afb48f45c350 | refs/heads/master | 2021-01-21T11:34:03.655193 | 2018-04-30T04:22:00 | 2018-04-30T04:22:00 | 102,010,530 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,649 | cpp | //Problem Link: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3836
//Problem type: Dynamic Programming
//Learning Exp:
#include <iostream>
#include <vector>
#include <algorithm>
#include <climits>
#include <stdio.h>
#include <queue>
#include <set>
#include <cmath>
#include <assert.h>
#include <bitset>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <iomanip> //cout << setprecision(n) << fixed << num
#define mp make_pair
#define ii pair<int, int>
#define PI 3.14159265
#define INF 1000000000000000000LL
#define EPS 1e-9
#define print(arr) for (auto it = arr.begin(); it != arr.end(); ++it) cout << *it << " "; cout << "\n";
typedef long long int ll;
using namespace std;
int T, C, N, coins[101], dp[30007][102];
int main() {
scanf("%d", &T);
while (T--) {
int MAX = 100000000;
scanf("%d", &C);
scanf("%d", &N);
for (int i = 0; i < N; i++) {
scanf("%d", &coins[i]);
}
for (int i = 0; i <= 20007; i++) {
for (int j = 0; j <= N; j++) {
dp[i][j] = MAX;
}
}
dp[0][0] = 0;
for (int i = 0; i <= 20007; i++) {
for (int j = 1; j <= N; j++) {
if (i == 0) dp[i][j] = 0;
else if (i < coins[j-1]) dp[i][j] = dp[i][j-1];
else dp[i][j] = min(dp[i][j-1], dp[i-coins[j-1]][j-1] + 1);
}
}
for (int i = C; i <= 20007; i++) {
if (dp[i][N] != MAX) {
printf("%d %d\n", i, dp[i][N]);
break;
}
}
}
} | [
"tanavya.dimri@gmail.com"
] | tanavya.dimri@gmail.com |
42f418d9b3cb6699c2b845fbbaa3dc41a6346774 | 69005ab4c8cc5d88d7996d47ac8def0b28730b95 | /msvc-cluster-realistic-1000/src/dir_16/perf805.cpp | 8bf0f4e0307f876d71ca564868ffbe3be7b041f1 | [] | no_license | sakerbuild/performance-comparisons | ed603c9ffa0d34983a7da74f7b2b731dc3350d7e | 78cd8d7896c4b0255ec77304762471e6cab95411 | refs/heads/master | 2020-12-02T19:14:57.865537 | 2020-05-11T14:09:40 | 2020-05-11T14:09:40 | 231,092,201 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 207 | cpp | #include <Windows.h>
#include <vector>
#include <inc_0/header_4.h>
static_assert(sizeof(GenClass_4) > 0, "failed");
std::vector<int> perf_func_805() {
LoadLibrary("abc.dll");
return {805};
}
| [
"10866741+Sipkab@users.noreply.github.com"
] | 10866741+Sipkab@users.noreply.github.com |
9c3873186fc1ef3c053c705096474ee3b5e8df94 | 93315e986978d8d85dde7f5d4edeee1da3e8571e | /Source/McGill_1/Private/MultiplayerTestObject.cpp | efd1cc9640c2a71a47267a692fd35d3c3cd3fdc2 | [] | no_license | gjtqiyue/UGL_2020_McGill_1 | b3f82adf87c3ba60bed1d3236d11bbdba9910730 | 6e52f607f107eed6488dcb04d39ba5bd2709eae6 | refs/heads/master | 2022-08-02T18:56:32.059781 | 2020-05-31T09:37:46 | 2020-05-31T09:37:46 | 247,620,489 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 630 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "MultiplayerTestObject.h"
AMultiplayerTestObject::AMultiplayerTestObject()
{
PrimaryActorTick.bCanEverTick = true;
SetMobility(EComponentMobility::Movable);
}
void AMultiplayerTestObject::BeginPlay() {
Super::BeginPlay();
if (HasAuthority()) {
SetReplicates(true);
SetReplicateMovement(true);
}
}
void AMultiplayerTestObject::Tick(float DeltaTime) {
Super::Tick(DeltaTime);
if (HasAuthority()) {
FVector Location = GetActorLocation();
Location += FVector(Speed * DeltaTime, 0, 0);
SetActorLocation(Location);
}
}
| [
"boqi.chen@mail.mcgill.ca"
] | boqi.chen@mail.mcgill.ca |
b55d79e6aef27c07e403f3676919060a1f81809b | 3876039644d6859e2e06887a62f05134a6ff0bb5 | /VDB/vdb_value.h | a4f1e8405d1d7f572b87fdab7cc516755a57e94f | [] | no_license | vladesire/VDB | c19c9ddcda606d60b5384e94e8e90ea735b86c10 | 13c2136c1e1ce57a7520aa146146ffba9cf7fe30 | refs/heads/master | 2020-08-24T13:43:38.505553 | 2020-05-02T18:54:34 | 2020-05-02T18:54:34 | 216,837,568 | 2 | 0 | null | 2020-05-02T18:54:36 | 2019-10-22T14:43:00 | C++ | UTF-8 | C++ | false | false | 3,202 | h | #ifndef VDB_VALUE_H
#define VDB_VALUE_H
#include <variant>
#include <string>
namespace vdb
{
class Value
{
private:
std::variant<int, double, char, char *> val;
public:
Value() = default;
~Value()
{
reset();
}
Value(const Value &value);
Value(Value &&value) noexcept;
Value &operator=(Value value) noexcept;
template <class T>
Value(T value)
{
reset(); //if constructor is used for type conversion
val = value;
}
template <> // it's identical to const char, but template generates new code for it
Value(char *str) : Value(str, false) { }
Value(const char *str, bool = false);
// I decided to add implicit int-double conversion as it can be useful in some cases
operator int() const
{
return val.index() == 1 ? static_cast<int>(std::get<double>(val)) : std::get<int>(val);
}
operator double() const
{
return val.index() == 0 ? static_cast<double>(std::get<int>(val)) : std::get<double>(val);
}
operator char() const
{
return std::get<char>(val);
}
operator char *() const
{
return std::get<char *>(val);
}
const char *cptr();
bool operator>(const Value &val1)
{
switch (val.index())
{
case 0:
return std::get<0>(val) > (int)(val1);
case 1:
return std::get<1>(val) > (double)(val1);
case 2:
case 3:
throw std::exception("Comparision (>, >=, <, <=) of strings and chars is not supported");
}
}
bool operator<(const Value &val1)
{
switch (val.index())
{
case 0:
return std::get<0>(val) < (int)(val1);
case 1:
return std::get<1>(val) < (double)(val1);
case 2:
case 3:
throw std::exception("Comparision (>, >=, <, <=) of strings and chars is not supported");
}
}
bool operator>=(const Value &val1)
{
switch (val.index())
{
case 0:
return std::get<0>(val) >= (int)(val1);
case 1:
return std::get<1>(val) >= (double)(val1);
case 2:
case 3:
throw std::exception("Comparision (>, >=, <, <=) of strings and chars is not supported");
}
}
bool operator<=(const Value &val1)
{
switch (val.index())
{
case 0:
return std::get<0>(val) <= (int)(val1);
case 1:
return std::get<1>(val) <= (double)(val1);
case 2:
case 3:
throw std::exception("Comparision (>, >=, <, <=) of strings and chars is not supported");
}
}
bool operator==(const Value &val1)
{
switch (val.index())
{
case 0:
return std::get<0>(val) == (int)(val1);
case 1:
return std::get<1>(val) == (double)(val1);
case 2:
return std::get<2>(val) == (char)(val1);
case 3:
return !strcmp(std::get<3>(val), (char *)(val1));
}
}
bool operator!=(const Value &val1)
{
switch (val.index())
{
case 0:
return std::get<0>(val) != (int)(val1);
case 1:
return std::get<1>(val) != (double)(val1);
case 2:
return std::get<2>(val) != (char)(val1);
case 3:
return strcmp(std::get<3>(val), (char *)(val1));
}
}
void reset();
std::string to_string();
constexpr uint8_t type() const
{
return val.index();
}
friend void swap(Value &val1, Value &val2);
friend std::ostream &operator<<(std::ostream &os, Value val);
};
template <class T>
T get(const Value &val)
{
return static_cast<T>(val);
};
}
#endif // !Value_H
| [
"vladesire2.0@gmail.com"
] | vladesire2.0@gmail.com |
8e7a2309ee3a872be9ef730635dcdc3e520d93a9 | 465943c5ffac075cd5a617c47fd25adfe496b8b4 | /AIRPORT.H | 8ad93f705762dda3cb228ee06f81ae1dbaa7beca | [] | no_license | paulanthonywilson/airtrafficcontrol | 7467f9eb577b24b77306709d7b2bad77f1b231b7 | 6c579362f30ed5f81cabda27033f06e219796427 | refs/heads/master | 2016-08-08T00:43:32.006519 | 2009-04-09T21:33:22 | 2009-04-09T21:33:22 | 172,292 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 796 | h | /* Class to describe an airport as being a destination where planes can
enter the simulation or exit it.
Simon Hall
ver 0.2
derived from Destination ver 0.2
01/04/96
7/4/96 PW
ver 0.3
19/4/96
ID changed from char * to int
PW
ver 0.4
4/5/96 PW
Safe landing direction reversed (Specification error)
*/
# ifndef _AIRPORT_H
# define _AIRPORT_H
# include "stdatc.h"
# include "destinat.h"
# include "atlandma.h"
# define TAKEOFF_ALTITUDE 0
# define LANDING_ALTITUDE 0
class Airport : public Destination, public AtLandmark
{
public:
Airport (Position, int , const Heading &);
Boolean IsSafeCoords (Vector3D);
Vector3D NewPlaneCoords ();
PlaneState NewPlaneState ();
virtual LandmarkTypeId LandmarkType();
};
# endif _AIRPORT_H
| [
"paul.wilson@merecomplexities.com"
] | paul.wilson@merecomplexities.com |
c6d9e4b9273c94a19df6c538a1e7e543db700140 | 291e05c18bad86c5ed42ebcf77ba104a6a0cdc10 | /src/Sprite.h | bafd77a7ab576ee7f0cf728fef83e23d505e036a | [] | no_license | Kareus/MusicPlayer | 217eba86d687259ede6105f41160462787062b53 | 10e3209e4a428de250ed06731021c3a81f995534 | refs/heads/master | 2021-06-25T22:28:14.582005 | 2021-03-13T16:18:11 | 2021-03-13T16:18:11 | 200,506,931 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 4,346 | h | #pragma once
#ifndef __SPRITE__
#define __SPRITE__
#include "Graphic.h"
#include <functional>
#include <memory>
#include <thread>
#include <string>
/**
* 그래픽 구현을 위해 텍스처를 shared-pointer로 가지는 클래스.
* @date 2018.11.26
* @author Kareus
*/
class Sprite : public Graphic
{
private:
sf::Sprite* sprite; ///<실제로 그래픽을 출력하는 스프라이트 포인터 변수.
std::shared_ptr<sf::Texture> texture; ///<텍스처를 보관하는 포인터 변수. 같은 텍스처를 여러 객체가 공유할 수 있으므로 shared pointer로 선언함.
sf::Vector2f position; ///<스프라이트의 위치 변수.
std::function<void(Sprite*)> mouseDownFunc; ///<마우스를 눌렀을 때 실행할 함수
std::function<void(Sprite*)> mouseUpFunc; ///<마우스를 뗐을 때 실행할 함수
sf::Color overColor; ///<마우스가 위에 있을 때 표시할 색깔
sf::Color normalColor; ///<일반적인 표시 색깔
sf::IntRect textureRect; ///<텍스처에서 가져올 영역 크기
bool mouseOver; ///<마우스 오버 여부
bool button; ///<버튼 여부
/**
* @brief 위치를 조정하는 함수
*/
void updatePosition();
/**
* 기본 생성자
*/
Sprite() {}; ///<기본 생성자는 외부에사 사용할 수 없도록 제한 (sprite 및 texture 관리를 위함)
public:
/**
* @brief 해당 경로의 이미지 파일을 읽어와 그래픽을 생성하는 생성자
* @param texturePath 텍스처 경로
*/
Sprite(const std::string& texturePath);
/**
* 복사 생성자
*/
Sprite(const Sprite& data);
/**
* 기본 소멸자
*/
~Sprite();
/**
* @brief 윈도우에 그래픽을 렌더링하는 함수
* @param window 렌더링할 윈도우
*/
void draw(sf::RenderWindow* window) override;
/**
* @brief 그래픽의 위치를 지정하는 함수
* @param x x좌표
* @param y y좌표
*/
void SetPosition(float x, float y) override;
/**
* @brief 그래픽의 위치를 지정하는 함수
* @param x x좌표
*/
void SetPositionX(float x) override;
/**
* @brief 그래픽의 위치를 지정하는 함수
* @param y y좌표
*/
void SetPositionY(float y) override;
/**
* @brief 그래픽의 텍스처 크기를 지정하는 함수
* @param width 너비
* @param height 폭
*/
void SetTextureRect(float width, float height);
/**
* @brief 그래픽의 텍스처 위치를 지정하는 함수
* @param x x좌표
* @param y y좌표
*/
void SetTexturePos(float x, float y);
/**
* @brief 그래픽의 위치를 반환하는 함수
* @return 그래픽의 위치.
*/
sf::Vector2f GetPosition() override;
/**
* @brief 그래픽의 텍스처 위치를 반환하는 함수
* @return 그래픽의 텍스처 위치.
*/
sf::Vector2f GetTexturePos();
/**
* @brief 그래픽의 크기를 반환하는 함수
* @return 그래픽의 크기.
*/
sf::Vector2f GetSize() override;
/**
* @brief 그래픽의 버튼 여부를 지정하는 함수
* @param b 버튼 여부
*/
void SetButton(bool b);
/**
* @brief 그래픽이 버튼인지 여부를 반환한다.
* @return 버튼이면 true, 아니면 false를 반환한다.
*/
bool isButton() const;
/**
* @brief 그래픽 위에서 마우스를 눌렀을 때 실행할 함수를 지정한다.
* @param func 실행할 함수
*/
void SetMouseDownFunction(const std::function<void(Sprite*)>& func);
/**
* @brief 그래픽 위에서 마우스를 뗐을 때 실행할 함수를 지정한다.
* @param func 실행할 함수
*/
void SetMouseUpFunction(const std::function<void(Sprite*)>& func);
/**
* @brief 이벤트를 받아 각 그래픽에서 실행하는 함수
* @param e 이벤트
* @return 이벤트를 성공적으로 처리했는지 여부가 반환된다
*/
bool pollEvent(CustomWinEvent e) override;
/**
* @brief 입력받은 점이 현재 그래픽의 영역에 포함되는지 여부를 반환한다.
* @param point 좌표
* @return 포함되면 true, 아니면 false를 반환한다.
*/
bool hasPoint(const sf::Vector2f& point) override;
/**
* @brief 마우스 오버 상태를 리셋한다.
*/
void ResetMouseOver();
/**
* @brief 마우스 오버 이벤트를 실행한다.
*/
void TriggerMouseOver();
/**
* @brief 그래픽의 복사본을 반환한다.
* @return 그래픽의 복사본
*/
Sprite* clone();
};
#endif | [
"sayrlftns@naver.com"
] | sayrlftns@naver.com |
a472180b670d5de23b5b2c3322e0269218e8c852 | 3cfc3f4cb1572806c153cdb550f7fd41e1943f08 | /_MODEL_FOLDERS_/_modelNameHere TEXTURE NORMALS/crystalBlock_00/crystalBlock_00_TEX.cpp | 697c8e9e0f31e3cca45d458db5e45d00cf90db00 | [] | no_license | marcclintdion/a8a_MATRIX_MATH_MAY_10 | c8d07b3425f8fb04f05104c1baf1b5934fa5b0c4 | d9f9851c20f681929aa0896be4e0b8336c50a4fb | refs/heads/master | 2021-01-10T07:11:59.889363 | 2015-09-30T14:11:41 | 2015-09-30T14:11:41 | 43,436,890 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 598 | cpp | GLfloat crystalBlock_00_TEX[] =
{
//number of vertices = 30
0, 0, 1.0,
0.024, 0.024, 1.0,
0, 1, 1.0,
0.024, 0.976, 1.0,
0.976, 0.976, 1.0,
0, 1, 1.0,
0.024, 0.024, 1.0,
0.976, 0.024, 1.0,
0.024, 0.976, 1.0,
1, 0, 1.0,
0.976, 0.024, 1.0,
0, 0, 1.0,
1, 1, 1.0,
0.976, 0.976, 1.0,
1, 0, 1.0,
0.024, 0.024, 1.0,
0.024, 0.976, 1.0,
0, 1, 1.0,
0.976, 0.976, 1.0,
1, 1, 1.0,
0, 1, 1.0,
0.976, 0.024, 1.0,
0.976, 0.976, 1.0,
0.024, 0.976, 1.0,
0.976, 0.024, 1.0,
0.024, 0.024, 1.0,
0, 0, 1.0,
0.976, 0.976, 1.0,
0.976, 0.024, 1.0,
1, 0, 1.0,
};
| [
"marcclintdion@Marcs-iMac.local"
] | marcclintdion@Marcs-iMac.local |
664fd8d0cab3515e253e687d1b1b43273c5f1e8b | 8921a7c43d56db4cfd6b1af53a473d47b770ff2e | /Smoother.h | 4ffbe25d9d44b892cfe18f888ed6d886749feb3b | [
"MIT"
] | permissive | LuSeKa/Smoother | 2b206d75498aa6996563d1642bd630446b38cc97 | 58b27ae71efdd6225370b7dd95a005033e52aa8f | refs/heads/main | 2023-07-27T08:29:20.185119 | 2021-09-10T07:08:52 | 2021-09-10T07:08:52 | 404,983,741 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 950 | h | #ifndef SMOOTHER_H_
#define SMOOTHER_H_
#include "Arduino.h"
class Smoother {
public:
Smoother(void);
Smoother(float strength);
void set_strength(float strength);
void set_interval(float interval_ms);
void set_input_range(float input_min, float input_max);
void set_output_range(float output_min, float output_max);
float smooth(float input);
void set_starting_value (float start);
// time-based waveform generators for testing
float sinewave(float amplitude, float frequency_hz);
float squarewave(float amplitude, float frequency_hz);
float noise(float amplitude);
private:
void setup(void);
float input_min_;
float input_max_;
float output_min_;
float output_max_;
int interval_ms_;
long last_run_time_ms_;
float strength_;
float output_;
float map_float(float x, float in_min, float in_max, float out_min, float out_max);
};
#endif //SMOOTHER_H_
| [
"lukas.s.kaul@gmail.com"
] | lukas.s.kaul@gmail.com |
ea5cf18163018fd4dc75349c2bc8ae0d2474ac58 | ac8913bb15eed7642e1ff18aa5bf8c43c279ae67 | /ros/src/static_environment/include/static_environment/environment_core.h | 442b055ff3fcbfcc914533657860bb350e0ab69f | [
"Unlicense"
] | permissive | whymatter/albatross | f98bd1044b1d41ed136a1b2c31e811ef78238d0e | 9e5455c8186d2cba9d5a5afdbb234c695200a5b4 | refs/heads/master | 2023-02-24T05:57:45.728500 | 2021-01-27T17:10:24 | 2021-01-27T17:10:24 | 116,209,069 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 735 | h | //
// Created by whymatter on 31.10.18.
//
#pragma once
#include "alb_msgs/cam_detections.h"
#include "alb_msgs/cup_object.h"
#include "cam_transform/cam_transform_service.h"
#include <rviz_visual_tools/rviz_visual_tools.h> // has to be moved out later
namespace alb {
namespace static_environment {
class EnvironmentCore {
public:
explicit EnvironmentCore(::alb::cam_transform::CamTransformService camTransformService);
std::vector<::alb::alb_msgs::CupObject> CalculateEnvironment(const ::alb::alb_msgs::CamDetections &detections);
private:
::alb::cam_transform::CamTransformService camTransformService_;
rviz_visual_tools::RvizVisualToolsPtr visual_tools_; // has to be moved out later
};
}
}
| [
"seitz-oliver@gmx.de"
] | seitz-oliver@gmx.de |
8f29d7ab9ebcc87de8263201efbb33804f4f8ab0 | a482fa02d1f678f76ea007519001b852c9a1c1d4 | /Build-UWP/Il2CppOutputProject/Source/il2cppOutput/GenericMethods3.cpp | 514a6423c1a752d143808b97abe6e341f06081d9 | [
"MIT"
] | permissive | Treidexy/VRGame | fde0255502e8e42f48e19da94c15e4ce22b1539f | e478ec3d9fe58c571270d030932ceb58d1cb11d9 | refs/heads/master | 2022-11-18T23:51:55.891559 | 2020-07-15T02:47:27 | 2020-07-15T02:47:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,967,730 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template <typename R, typename T1>
struct VirtFuncInvoker1
{
typedef R (*Func)(void*, T1, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3, typename T4>
struct VirtFuncInvoker4
{
typedef R (*Func)(void*, T1, T2, T3, T4, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
}
};
template <typename R>
struct VirtFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R>
struct InterfaceFuncInvoker0
{
typedef R (*Func)(void*, const RuntimeMethod*);
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename T1>
struct InterfaceActionInvoker1
{
typedef void (*Action)(void*, T1, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
}
};
struct InterfaceActionInvoker0
{
typedef void (*Action)(void*, const RuntimeMethod*);
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj)
{
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
((Action)invokeData.methodPtr)(obj, invokeData.method);
}
};
template <typename R, typename T1, typename T2, typename T3>
struct GenericInterfaceFuncInvoker3
{
typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*);
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
{
VirtualInvokeData invokeData;
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method);
}
};
// Google.ProtocolBuffers.CodedInputStream
struct CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816;
// Google.ProtocolBuffers.CodedOutputStream
struct CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5;
// Google.ProtocolBuffers.ExtensionRegistry
struct ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3;
// Google.ProtocolBuffers.ExtensionRegistry/ExtensionIntPair[]
struct ExtensionIntPairU5BU5D_t886F4A34B6FDE4624A466A603D613C6861EE057E;
// Google.ProtocolBuffers.IBuilderLite
struct IBuilderLite_tCC59C37407E34F909DA41ED5F68CD5D1B7E0865A;
// Google.ProtocolBuffers.IMessageLite
struct IMessageLite_t7C7B484AE6ABC37A788EA24AF97638742D3F6E51;
// Gvr.Internal.EmulatorTouchEvent/Pointer[]
struct PointerU5BU5D_t96866546CDEB1FE2B19AC7BF16BC33BFD08262DA;
// GvrControllerVisual/VisualAssets[]
struct VisualAssetsU5BU5D_t21AE5F549BC318C43336B54D1B04BC6BDD177311;
// GvrEventExecutor
struct GvrEventExecutor_t898582E56497D9854114651E438F61B403245CD3;
// GvrEventExecutor/EventDelegate
struct EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995;
// Mono.Globalization.Unicode.CodePointIndexer/TableRange[]
struct TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A;
// Mono.Security.Uri/UriScheme[]
struct UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C;
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0;
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD;
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Boolean[]
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.DictionaryEntry[]
struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56;
// System.Collections.Generic.Dictionary`2/Entry<Google.ProtocolBuffers.ExtensionRegistry/ExtensionIntPair,System.Object>[]
struct EntryU5BU5D_t30D5EB8C995ED896E0ADEA87F347F424D86AB1E0;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Boolean>[]
struct EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Char>[]
struct EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32>[]
struct EntryU5BU5D_tA93CC0D3D3F601A01A462F4E82167104C9F63E37;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int32Enum>[]
struct EntryU5BU5D_t7EB03C2429C4535344F6F745BDC0400570F0EA9E;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Int64>[]
struct EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5;
// System.Collections.Generic.Dictionary`2/Entry<System.Int32,System.Object>[]
struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285;
// System.Collections.Generic.Dictionary`2/Entry<System.Int64,System.Object>[]
struct EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32>[]
struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Int32Enum>[]
struct EntryU5BU5D_t1A0116D04DC3E0F3519E158F660E851AAFC09FF7;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Object>[]
struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6;
// System.Collections.Generic.Dictionary`2/Entry<System.Object,System.Resources.ResourceLocator>[]
struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4;
// System.Collections.Generic.Dictionary`2/Entry<System.Type,GvrEventExecutor/EventDelegate>[]
struct EntryU5BU5D_t42120E5C86942A351914813051791EF2FD89F539;
// System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Int32>[]
struct EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B;
// System.Collections.Generic.Dictionary`2/Entry<System.UInt32,System.Object>[]
struct EntryU5BU5D_tA3DE6559C7D1057EE7FD32925DC1D3187112AB3B;
// System.Collections.Generic.Dictionary`2/Entry<System.UInt64,System.Object>[]
struct EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>[]
struct EntryU5BU5D_t50748B96662D70C34AB62339BEB0FBCFD115A7C3;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>[]
struct EntryU5BU5D_tACA587DE043730DBEEF9EECD04FE179D7974F9A6;
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>[]
struct EntryU5BU5D_t0D1584C97CB839440D73C71D270E0712AC664709;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.Type,GvrEventExecutor/EventDelegate>
struct KeyCollection_tC4B44FDF4415158DA914C904CD25CC146FBFCFB1;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.Type,GvrEventExecutor/EventDelegate>
struct ValueCollection_t7DBE94DA9228CAD36D9CE3D207E6CFBFADC334F3;
// System.Collections.Generic.Dictionary`2<Google.ProtocolBuffers.ExtensionRegistry/ExtensionIntPair,Google.ProtocolBuffers.IGeneratedExtensionLite>
struct Dictionary_2_tF91678624674E791C5D12946643E031522675CCD;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task>
struct Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F;
// System.Collections.Generic.Dictionary`2<System.Object,System.Collections.Generic.Dictionary`2<System.String,Google.ProtocolBuffers.IGeneratedExtensionLite>>
struct Dictionary_2_t7F936E17189334C1E3958ADDECEF1A563BA78432;
// System.Collections.Generic.Dictionary`2<System.Object,System.Object>
struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA;
// System.Collections.Generic.Dictionary`2<System.Type,GvrEventExecutor/EventDelegate>
struct Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83;
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA;
// System.Collections.Generic.HashSet`1/Slot<System.Object>[]
struct SlotU5BU5D_t9C4FFBCC974570D24EDC1028CCD0269BE774B36C;
// System.Collections.Generic.ICollection`1<System.Object>
struct ICollection_1_t6DFB531B62AFA3E16A8936F29107F83350147938;
// System.Collections.Generic.IComparer`1<System.Object>
struct IComparer_1_tFF77EB203CF12E843446A71A6581145AB929D681;
// System.Collections.Generic.IComparer`1<System.UInt32>
struct IComparer_1_tEB35069A836D01D7A23FAC5AFD86DFE89E95706C;
// System.Collections.Generic.IEnumerable`1<System.Object>
struct IEnumerable_1_t2F75FCBEC68AFE08982DA43985F9D04056E2BE73;
// System.Collections.Generic.IEnumerable`1<System.Single>
struct IEnumerable_1_t694AB0BB5090818473AA9742BF34524DF94A1752;
// System.Collections.Generic.IEqualityComparer`1<System.Type>
struct IEqualityComparer_1_t84A1E76CEF8A66F732C15925C1E1DBC7446DB3A4;
// System.Collections.Generic.IList`1<System.Object>
struct IList_1_tE09735A322C3B17000EF4E4BC8026FEDEB7B0D9B;
// System.Collections.Generic.IList`1<System.Single>
struct IList_1_tC63CCD3BC4FB3A7C80F16BEA9B7BD049F4C0C65F;
// System.Collections.Generic.KeyValuePair`2<Google.ProtocolBuffers.ExtensionRegistry/ExtensionIntPair,System.Object>[]
struct KeyValuePair_2U5BU5D_t130F904919E00A0F5BD91F2BAD7626CCDA61ABBF;
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>[]
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>[]
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7;
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[]
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>[]
struct KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>[]
struct KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>[]
struct KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>[]
struct KeyValuePair_2U5BU5D_tF57C1701FA2CB38EF64FD6039903B4EB5D3C013E;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>[]
struct KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291;
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[]
struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B;
// System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>[]
struct KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>[]
struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>[]
struct KeyValuePair_2U5BU5D_t3A413F0268AB366611BCB5688C157768FCD1B85A;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262;
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>[]
struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB;
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>[]
struct KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8;
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>[]
struct KeyValuePair_2U5BU5D_tFF83EB73DF79412BBDF99182ADBCE71EBF101EE8;
// System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>[]
struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD;
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord,System.Object>[]
struct KeyValuePair_2U5BU5D_t6A43305072C9AA017F5C3B4E4B2953AE5C85A27E;
// System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Int32>[]
struct KeyValuePair_2U5BU5D_tF7650E1C358CD17F3EE16DF6F841B83A2C1FCD31;
// System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey,System.Object>[]
struct KeyValuePair_2U5BU5D_t8AF2A040BD67A77CB9AB2B14EE463382950C36DF;
// System.Collections.Generic.List`1<System.Int32>
struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226;
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D;
// System.Collections.Generic.List`1<UnityEngine.Color32>
struct List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5;
// System.Collections.Generic.List`1<UnityEngine.GameObject>
struct List_1_t0087C02D52C7E5CFF8C0C55FC0453A28FD5F055B;
// System.Collections.Generic.List`1<UnityEngine.Vector2>
struct List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB;
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5;
// System.Collections.Generic.List`1<UnityEngine.Vector4>
struct List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955;
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
struct Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871;
// System.Collections.Hashtable/bucket[]
struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A;
// System.Collections.IDictionary
struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7;
// System.DateTime[]
struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1;
// System.Decimal[]
struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F;
// System.Delegate
struct Delegate_t;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Diagnostics.StackTrace[]
struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196;
// System.Diagnostics.Tracing.EventProvider/SessionInfo[]
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906;
// System.Diagnostics.Tracing.EventSource/EventMetadata[]
struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94;
// System.Diagnostics.Tracing.TraceLoggingEventTypes
struct TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25;
// System.Double[]
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D;
// System.Exception
struct Exception_t;
// System.Func`1<System.Threading.Tasks.Task/ContingentProperties>
struct Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F;
// System.Func`2<System.Object,System.Object>
struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4;
// System.Func`2<System.Object,System.UInt32>
struct Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Boolean>>
struct Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Int32>>
struct Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<System.Object>>
struct Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD;
// System.Globalization.InternalCodePageDataItem[]
struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834;
// System.Globalization.InternalEncodingDataItem[]
struct InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68;
// System.Guid[]
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.IFormatProvider
struct IFormatProvider_t4247E13AE2D97A079B88D594B7ABABF313259901;
// System.IO.Stream
struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7;
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0;
// System.Int16[]
struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28;
// System.Int32Enum[]
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.Int64[]
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F;
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
// System.Linq.IOrderedEnumerable`1<System.Object>
struct IOrderedEnumerable_1_tC50057839A08C378E40FBB0B46A7396CEAB3DDB1;
// System.Linq.OrderedEnumerable`1<System.Object>
struct OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D;
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010;
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
// System.ParameterizedStrings/FormatParam[]
struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5;
// System.Predicate`1<System.Object>
struct Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979;
// System.Predicate`1<System.Threading.Tasks.Task>
struct Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335;
// System.RankException
struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F;
// System.Reflection.Binder
struct Binder_t4D5CB06963501D32847C057B57157D6DC49CA759;
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828;
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05;
// System.Reflection.MemberFilter
struct MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Reflection.MonoProperty/GetterAdapter
struct GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711;
// System.Reflection.MonoProperty/Getter`2<System.Object,System.Object>
struct Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C;
// System.Reflection.MonoProperty/StaticGetter`1<System.Object>
struct StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1;
// System.Reflection.ParameterInfo[]
struct ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694;
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
// System.Resources.ResourceLocator[]
struct ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC;
// System.Runtime.CompilerServices.Ephemeron[]
struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10;
// System.Runtime.InteropServices.GCHandle[]
struct GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7;
// System.Runtime.Serialization.SafeSerializationManager
struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770;
// System.SByte[]
struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889;
// System.Security.Cryptography.RandomNumberGenerator
struct RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2;
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
// System.String
struct String_t;
// System.String[]
struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E;
// System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping[]
struct LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Threading.CancellationCallbackInfo
struct CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36;
// System.Threading.CancellationTokenRegistration[]
struct CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B;
// System.Threading.CancellationTokenSource
struct CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE;
// System.Threading.ContextCallback
struct ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676;
// 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.StackGuard
struct StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9;
// System.Threading.Tasks.Task/ContingentProperties
struct ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08;
// System.Threading.Tasks.TaskFactory
struct TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155;
// System.Threading.Tasks.TaskFactory`1<System.Boolean>
struct TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17;
// System.Threading.Tasks.TaskFactory`1<System.Int32>
struct TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7;
// System.Threading.Tasks.TaskFactory`1<System.Object>
struct TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C;
// System.Threading.Tasks.TaskScheduler
struct TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114;
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439;
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87;
// System.Threading.Tasks.Task`1<System.Int32>[]
struct Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20;
// System.Threading.Tasks.Task`1<System.Object>
struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09;
// System.TimeSpan[]
struct TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5;
// System.Tuple`2<System.Diagnostics.Tracing.EventProvider/SessionInfo,System.Boolean>
struct Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252;
// System.Tuple`2<System.Guid,System.Int32>
struct Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E;
// System.Tuple`2<System.Int32,System.Int32>
struct Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63;
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5;
// System.Type
struct Type_t;
// System.Type[]
struct TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F;
// System.UInt16[]
struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E;
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
// System.UIntPtr[]
struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// TMPro.MaterialReference[]
struct MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B;
// TMPro.RichTextTagAttribute[]
struct RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652;
// TMPro.SpriteAssetUtilities.TexturePacker/SpriteData[]
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41;
// TMPro.TMP_CharacterInfo[]
struct TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604;
// TMPro.TMP_FontAsset
struct TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C;
// TMPro.TMP_FontWeightPair[]
struct TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D;
// TMPro.TMP_LineInfo[]
struct TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C;
// 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.BeforeRenderHelper/OrderBlock[]
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101;
// UnityEngine.Camera
struct Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34;
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
// UnityEngine.Color[]
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399;
// UnityEngine.ContactPoint2D[]
struct ContactPoint2DU5BU5D_t390B6CBF0673E9C408A97BC093462A33516F2C32;
// UnityEngine.ContactPoint[]
struct ContactPointU5BU5D_t10BB5D5BFFFA3C919FD97DFDEDB49D954AFB8EAA;
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5;
// UnityEngine.EventSystems.BaseRaycaster
struct BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966;
// UnityEngine.EventSystems.EventSystem
struct EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77;
// UnityEngine.EventSystems.PointerEventData
struct PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63;
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.Experimental.GlobalIllumination.LightDataGI[]
struct LightDataGIU5BU5D_t32090CD353F0F6CDAC73FAFCC2D3F5EF78251B8A;
// UnityEngine.Experimental.TerrainAPI.TerrainUtility/TerrainMap/TileCoord[]
struct TileCoordU5BU5D_t5C91F6A2350FCA55BAD893C1C4ECAF553A8070F7;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.Keyframe[]
struct KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D;
// UnityEngine.LowLevel.PlayerLoopSystem/UpdateFunction
struct UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E;
// UnityEngine.LowLevel.PlayerLoopSystem[]
struct PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.Plane[]
struct PlaneU5BU5D_t79471E0ABE147C3018D88A036897B6DB49A782AA;
// UnityEngine.Playables.PlayableBinding/CreateOutputMethod
struct CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3;
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
// UnityEngine.RaycastHit[]
struct RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57;
// UnityEngine.Rendering.BatchVisibility[]
struct BatchVisibilityU5BU5D_t1594EA24FEB32F1AE80229DED3C45FF7F2DF0AA4;
// UnityEngine.SendMouseEvents/HitInfo[]
struct HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2;
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[]
struct GlyphMarshallingStructU5BU5D_tB5E281DB809E6848B7CC9F02763B5E5AAE5E5662;
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[]
struct GlyphPairAdjustmentRecordU5BU5D_tE4D7700D820175D7726010904F8477E90C1823E7;
// UnityEngine.UI.ColorBlock[]
struct ColorBlockU5BU5D_tD84A362F1D993005D8CA9E0B5AB8967468418DE7;
// UnityEngine.UI.Navigation[]
struct NavigationU5BU5D_tED2679638506D7BDA5062C2FE17EC5F169233A6D;
// UnityEngine.UI.Selectable
struct Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A;
// UnityEngine.UI.SpriteState[]
struct SpriteStateU5BU5D_t6452EE17737027DABCA2DCEC11461C3CBF40FCDC;
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482;
// UnityEngine.UIElements.EventBase
struct EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD;
// UnityEngine.UIElements.EventDispatcher/DispatchContext[]
struct DispatchContextU5BU5D_t4467426EBDEB3B12C25D99303F7B67A6411B1BC8;
// UnityEngine.UIElements.EventDispatcher/EventRecord[]
struct EventRecordU5BU5D_tCCE77A3C5C7FBB76F0BAC802BD005880513F5A94;
// UnityEngine.UIElements.FocusController/FocusedElement[]
struct FocusedElementU5BU5D_t64FC9A029ED86FA4C46BC885D17EB0FCE386BB13;
// UnityEngine.UIElements.Focusable
struct Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B;
// UnityEngine.UIElements.IPanel
struct IPanel_t3AAE62317DEE1C12E547C78C27556B659DE4F20A;
// UnityEngine.UIElements.IStyleValue`1<System.Int32>
struct IStyleValue_1_t6A9095A00BB5BB44BC716E930A4FF3CC2F2CF8BC;
// UnityEngine.UIElements.IStyleValue`1<System.Int32Enum>
struct IStyleValue_1_tA628F2D6EB10AA781FB213D2C3FE7633C4FC0CC6;
// UnityEngine.UIElements.IStyleValue`1<System.Object>
struct IStyleValue_1_t3D6A716BA00260C5309970E857ED92C73460B760;
// UnityEngine.UIElements.IStyleValue`1<System.Single>
struct IStyleValue_1_t4A2A4D50243263B6EA5D0EA994D152C1F265F400;
// UnityEngine.UIElements.IStyleValue`1<UnityEngine.Color>
struct IStyleValue_1_t9FC1747FC3EA6BF8DC57312C50B0B0A8673AD336;
// UnityEngine.UIElements.IStyleValue`1<UnityEngine.UIElements.Length>
struct IStyleValue_1_t7272AB53CF91161CA8C4FEAFCABC9F924303DB6C;
// UnityEngine.UIElements.StyleSheets.StyleSheetCache/SheetHandleKey[]
struct SheetHandleKeyU5BU5D_t3A34A624E16C7EEEE288315CA38FFD82DEE42C14;
// UnityEngine.UIElements.StyleSheets.StyleValue[]
struct StyleValueU5BU5D_t510329266B7162817A9059A6EF69BC3EF02A0D3D;
// UnityEngine.UIElements.VisualElement
struct VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57;
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC;
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
// UnityEngine.UnitySynchronizationContext/WorkRequest[]
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
// UnityEngine.Vector4[]
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
// UnityEngine.Windows.Speech.SemanticMeaning[]
struct SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D;
// UnityEngine.jvalue[]
struct jvalueU5BU5D_t9AA52DD48CAF5296AE8A2F758A488A2B14B820E3;
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Delegate_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IBuilderLite_tCC59C37407E34F909DA41ED5F68CD5D1B7E0865A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* IMessageLite_t7C7B484AE6ABC37A788EA24AF97638742D3F6E51_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB;
IL2CPP_EXTERN_C String_t* _stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC;
IL2CPP_EXTERN_C String_t* _stringLiteral19EDC1210777BA4D45049C29280D9CC5E1064C25;
IL2CPP_EXTERN_C String_t* _stringLiteral34EB4C4EF005207E8B8F916B9F1FFFACCCD6945E;
IL2CPP_EXTERN_C String_t* _stringLiteral3C363836CF4E16666669A25DA280A1865C2D2874;
IL2CPP_EXTERN_C String_t* _stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC;
IL2CPP_EXTERN_C String_t* _stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF;
IL2CPP_EXTERN_C String_t* _stringLiteral88E8963E6ECDA3FFC7F5CEC395FF6D9C0F85FE45;
IL2CPP_EXTERN_C String_t* _stringLiteral8972561214BDFD4779823E480036EAF0853E3C56;
IL2CPP_EXTERN_C String_t* _stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA;
IL2CPP_EXTERN_C String_t* _stringLiteralA7CEC20A424C8707BB414FCB0A9D122CCE55CF90;
IL2CPP_EXTERN_C String_t* _stringLiteralBA7B76F7CEFAFC945D4F1E46E2C21A2894A4FD10;
IL2CPP_EXTERN_C String_t* _stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m148E599D42E2EF9DAEB4F6FC4E6C3BEB1294B451_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m2FBA2E8783377B2B528E23F33334B1178CB352BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mE8F7E2625A981406013CFB2D8DEA9585FDB839CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF6CC213BC190C981F6F97922F5717F67C969E1C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1D1926459E9F42FFF65FFCBB00E18765DD82C4E1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m706295C9A73A1B83DD532B0BBA3A753DC8345335_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m5F63ABEDB18780C716D29BF513523F2197F8CB26_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_mD79134DE473C4F90AD38361E70849B46E1056CDE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m6CA0476E4C4A438B7016D59E6D99E5F365543EE0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mED7E15A2362EC8CA438CF33E55DC77E1E77361A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m3341F6938A4CEE3D198FFD6A74E7208C14755C4D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m20B2484A9DE661ED663F0C1CB5487FA5A8B35F2C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m426CDA2382EE089F19FA17DE3AAC5AEF0B05B3EB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_mE0C90FBD878CE8295FE0C36CACC4ED15F26AEFA1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF01532AC3CE9C9050DC9148DB06AE3035C248D0F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_mA314E44728467DA3C05DD27534CE3F2FB0F8758C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E6CDCE2431B9D120CF89BA6C2C922A9643A5F04_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m81CDE19CBD691B8B2312313A9E431E2FA311769D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mBA9F868FB2708CBE8902469EBBC47D431AF0EDB0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m4FAD8D5D6BEC1BE76F777742F88AF3BEBB7941B8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m4F27CE56C411564055BD71424CB1FC4CDBBC9324_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_mFFC21B3478BA60249F704BAF77C9E1B74990A27E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_m74DB0C319FF42D373C0E2C7AE2E6DA8DE2766DDA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mA95132D5CF1E8A895403537EBACC07BC9245CBAB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m2C6D3DB1A5AE24D62A5BAF3FBE7D7EA90FA6573F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m0EDC0424C918764E4A4775D3A5515263766D4D60_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m42E999F080B83A1FE6B6281E02AFF950AC6E7139_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m8F1E7559DAD7DA0A24EB7236DAC079801CED1A3C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC1EDC3A1DA696DCD9E30F846B6EFDDD63FC2F51C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m428922DA3FB421D46D3BD8AAC8776908F37802CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_m147C61A1A10F789127BF7B7277F941254EB0EF9B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m76CA8DE020DFE27B7C7AAAD4DCBC9A98CAA09083_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m6FABA52A8077521D75EEF47F96B6F6835F24012A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_m13DD87F3DBDABE04F693F7548A4194C82A7FFF6D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_mA010E700CAB98B8737E7B6323FE4A964FD4B36B7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m33D7457FF436623FCB05BCF6E1C8395D0416EBD3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m75C01DEB35D58B2F9B6C2A58A6F5C75D887107E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m9334E69B8859805AEA45E91FB4236237D4546C1B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA1CEFF2AB9C70303280A6EE5EEDB60F50DA74606_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m439BE22E14F43A93B3BA32DC031491BA83486510_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m8C977DB2E70FB6ECE6C9BA03BB36342414E66502_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m0C2786678947F3F8F614E95F302B8141656E0BEC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mD0EE33E60A29F39D1BF9B67CE2DB21591E9DC2DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mC7B2B59C20DD832F49A1370D1625018062169C48_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m0C23542EE4BF3F08FFAA32A67B4E613C1B843A79_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mE2735DDD39E6D0F09617763D600BFD97DEBB3F32_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m8BCC6A2EE030123BC009145E3C1B0E77852B151C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m5F787EB4671307762990773F66BD75BEFB671D7E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mB798B5BAFF5DC83E829009B46B7686652F691B5F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m5B0033060F17F61226207330569318E317B76894_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mDEF234CB09495828E145A04D906D48AAAE3DAAB2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0C792FE5C3BBE1129940F475E8C9A7C73F1BB80F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m9C2335FA547A1F31DFDEC04116F2A3F493010023_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m886F64BFBEA3DC77CC40BCCEDCCF42022F1C5872_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m72EA6076017813D25E32AC73C7C7C9434AF7B719_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mAEA5448CBD83ADE874AA174E0BF276ACC7DCE8EC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4560C04EF3CAB4580998FE10CE51FD7859F1107_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m5AADBF26870DF171C1A9134F27CEB6D9F2E4DF80_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mA63550FB7A581FAA2DC522FC04C06E4AD696093D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFA8893709D0ED35E3F3F9CEE6371B8E370D8B2E9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m935F6ED67206736FF9603FD61129400CCE6D09B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m34C3E91FDDCCE200C165885775A0528D7C1EC82D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m27BFBB0BFB9A9DA887DB050F91D20A123A5A0187_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_mB160A86D52CD82EE3FD21C823020D96E86F232B3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m2798604DD3D0546DF762DA6DFE28DE72C232559A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m0BDA545CD13CC2B31AA4B9064D38258BFF430354_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF34931C57165FB0D48DFFCC10CB9E6D8A6CF207D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mA8C54365B2797B67C393F2ECBA787D1BFD3A0C8E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m796E7B2DE00B1D96044FB8C0F3FC168EE55110CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m813C91C01037FC0817BC26697DE870168EECA7FA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m20059B9F9F5CB91D37445E04571F7CF63C444282_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m181E9F89D812B1F85B142F38F1982E6C8180BD76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m29BEEBFAF2A4CD0812887979A916365D2C98C6D2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__ICollection_Add_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_m9329B601461AF45DB4100C320253DFD3F40B995C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4FA2B8205F141350DB28CEB12DB33166A4D3ADC7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mEDF6D3612C8E5651E928AFB11D206AB8B3F983F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mF247A6152AD02F17C64C4908FD1A132699C5D752_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mEF89A10BED309D4EA11FBB95B16F60F86C1D6590_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mDA147F6CB5A09F054D158B2CA0F62AEB87915953_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m740957825039985F2D280500A96152E00B10E7B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m93809D010D27844EDF297DE20374EDEB4B52A4B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m335135BC9D839DDE0D6AE6F497F307BCA1EA3494_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m1D41E412ADFFA7B56929AFFD8C2EF7076C82D39E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m572A9DB3F0798A254071755598C32FFB154C6ADE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_mBC7248980A4BF11E8B3494D6B0F1BD3525E78B80_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m1498289D808C1C9BFF1EFAD70061F25CB87E5F0F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m3D387436CAFA61E6AA323BDA172922DAE0052ED2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m02B73CD318091CB020B98215A3D512B396EAC356_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_mB07F6D9679EECDA132BCF0DB67A6CF72098219F6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m39AC55BF7F0538DB683BB74D5A4D0AF00860E65F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m82F87ED9C7363DC7F1814391090631D289A9F850_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m597655F97FF61DB6B1C308BBA3D40DBD64628E1A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_mFD62CED7B230DF85A822D4B3B014FDE852FE5E95_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mC6A71A37B5C931C7FBDC0FCF3F200679312B2F9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mDF7D20F25F91668DFF5FDD9BF25B9A2FD67346F3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m882858E2DFC6E1A0B2122BAFCECFB19BEC8372A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mF310A542722300C2A280459BB266EDA7E8129B64_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m91E23B11710DC8CF847237CDBA4D423BEAC8EE0D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m13A4F02E8A520814A34493899C9892EDD709C678_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mAADE596919A33924F7571CE0F655ACA544DCAD82_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m67818A5EEAA21721000BCD20823E154AD9569A59_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m5E99A4A6551F73620DAD39B15CDB617D7161AEFA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m354A4B6A58DD2B8079043DA3147990A006CA53BB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m1B410BF309AD7BBF4DC1217FD359C954CDF34C72_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m6893ED6B7AE41305351AAF83F0DF9F26649B1705_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mAE170691CA1449C46FB6555883BC7CEE3FA82368_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m2C5E6B7FDBC910C7618674972734B348869D1087_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m20471FEEDBB0EA2F999D494086D60C9A7340A40B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mAD4CAB4C13C53EE0B8D6981164BCCC80C3D74A98_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mF0A96F2D12555D91E4495277168CF74094D5670D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m83B4C7A63CF9FC885D1A8C4B08E3DD0D10D88A53_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mB47688B84BCCC2DA2DA4F8EB0B84C9BB4BE5761B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m54C678F1DB91614B00C45E89298240BAAC30C811_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m518C34B43F670F6D8A751783D02CE7162C17AF66_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m69A9984C32D940CCA45AFED00802739606EED14E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mB4B12E53F94617260F0D1B6A01E628F259AC8351_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m34F61CD0951D346091AA2FE94254F489CF29A90B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0787034FBDB3883C48C27131EE97A5855A1763E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m5B6D8E42AF6F378CFEC4C23EE939891450916777_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mE03E40466A3CD5D61CB4DE2F62AFB969BB414CEB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mE35F0AFDFBA2F4345AD555B88A30AFCFD6202A51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4494D7E3042020D4B01039762A92913CC70C8CE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB2EED94F5719E0D99830BF5F2B96DE35FD1B9745_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m5D835E20EC6D6CEA706A09600CCAA8750AB4DF53_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mB21B382BB45607CF9AB61192682A2413D86D1120_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m7FFD78C0B66C07641274CAC03FB1E0D96BD75BAD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mFED4A4CBA59797C957BF87C08598A12661636AE8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1B38C001D3E82C658432C81316D681D2FC77F50B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m35FB53F1C51D4EE0FA506CBD3EEA9C17206C6230_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m6699E4D7345C1304B934081F68C7C5F338436A65_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mA7C07F39A1757F7B03F3F7DE5EB224C723684625_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mD79CB19ACBDEEB89B2EE4539DBC22D87CD41FE76_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m59D89B92E8067994C0E2804ADBD9093607136E9D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m683B2C264568CDE82EAB8D9F47ABD6C0329D38D0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m5DD830141F216B7DDEF3511B2747ED53DBCCC824_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m67EB1A5054024ED3F68DE85D9D3C16236057D25E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m3BCAC45BBFF80147157A9F1771A45374311326C9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__IndexOf_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_mD3760D19436C2D9F51CBCCB6C411443CE74CCC64_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m715B1309BA184A13F82358DFE43E4E1574993DBE_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m27824B891D40511ED485164E89CB76CA70002671_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m640B87319C6D2DFCC1A5FB7DBD24015FD4EEB1A4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_mB24E736B6A966391D6CF02C05A3158AD32C143AA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m9EF3FE0D545E7339E883312E962368BABDE24FD1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m5DD9AC37E36287E7452B482A18D7BB198974274A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m59785DEDD32E06384722D716EB1122FA165DC164_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mC746C2502A46D02D0916861AFD6E010266505986_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m68D137BA05D4E37DB2C783256679F06033ACD3D6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E2EF8F3992A2D2193DA91A85BA4EB37ECE69F36_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m795F453B39D52A9A0CDFA4849B8EAB8B432A46C5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m884D02C12BDFF597EE9D9EBA4176EFDFB4C231A0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mEFD58605BD0E1293E1FF5BB462A7A2C8C594BFD6_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_m793EF3A3BACE986CDBF9D47F32CE7D2BB3C9620C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m01AE1836246A090293461E55415D13408A161066_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC6F9F51E5F4362482BD5714FA3D66C3022DB4A44_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m4905059D256B26872C3F91B65E7E008A47AB4DBA_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_mF3E52E6B89CC10EED23F76C275DEEB462FB1BFE5_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m334454A8200F21BE7403E62D35C2EF9B001B5492_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mE0E3F1583DBA4DAF18CC3300DE3C6916ED13EA65_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m2F33FAA19B8B4AAD71CC09D8E5350CB768D9A4ED_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m3FECC49D66B6A51DACC6BD52FDD25846EFDAD881_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_mAC671FDB5325B51248B56AC79F51CA059A5EC445_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m13052C709FCCC6DBB376ECB1DB4B206E471E249E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA0B4CB939AEBF8A592DA52B197572428F43EB20B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m282F96657C55165FF3D73C046B2706FE57A030AD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mD610F8A45F28BCE6FFCA5FCA01CF58DAF5AD8841_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mA7BC4F9F207588AB3833593BCEAAA3AF827EC496_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m1505D6B8C208CF150CCE48EBFCEB48455326175C_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m0BEF618E6F0A9579C966F7A2AB536AC03EDD6EC4_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_Remove_m47ABCF90B5038DB37833A59B3D86D005FADC6597_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m52C57CA7F53B7216B84CE1D164896D0756E470DD_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_set_Item_m91A3BDD60842621406838EB3A46C9FD5D0E320FB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ThenBy_TisRuntimeObject_TisRuntimeObject_m91B234404A81CFC34CD495A33D31E9BF50B5208E_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ThenBy_TisRuntimeObject_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m674B8CADFF5F454BAE796E1CD61502B74FCEB02D_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Marshal_GetFunctionPointerForDelegate_TisRuntimeObject_m48759D7F3A90CB3B0B0E73773B1E40147247A61B_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThrowHelper_ThrowIfAnyNull_TisRuntimeObject_mD61820D55FA7A3A55349EBCA1AFC60996CED6B08_RuntimeMethod_var;
IL2CPP_EXTERN_C const RuntimeMethod* ThrowHelper_ThrowIfAnyNull_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mB247E6DAD40CDDC157649EDA1DE08BB145D2FACB_RuntimeMethod_var;
IL2CPP_EXTERN_C const uint32_t Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m148E599D42E2EF9DAEB4F6FC4E6C3BEB1294B451_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m2FBA2E8783377B2B528E23F33334B1178CB352BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mE8F7E2625A981406013CFB2D8DEA9585FDB839CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF6CC213BC190C981F6F97922F5717F67C969E1C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1D1926459E9F42FFF65FFCBB00E18765DD82C4E1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m706295C9A73A1B83DD532B0BBA3A753DC8345335_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m5F63ABEDB18780C716D29BF513523F2197F8CB26_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_mD79134DE473C4F90AD38361E70849B46E1056CDE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m6CA0476E4C4A438B7016D59E6D99E5F365543EE0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mED7E15A2362EC8CA438CF33E55DC77E1E77361A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m3341F6938A4CEE3D198FFD6A74E7208C14755C4D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m20B2484A9DE661ED663F0C1CB5487FA5A8B35F2C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m426CDA2382EE089F19FA17DE3AAC5AEF0B05B3EB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_mE0C90FBD878CE8295FE0C36CACC4ED15F26AEFA1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF01532AC3CE9C9050DC9148DB06AE3035C248D0F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_mA314E44728467DA3C05DD27534CE3F2FB0F8758C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E6CDCE2431B9D120CF89BA6C2C922A9643A5F04_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m81CDE19CBD691B8B2312313A9E431E2FA311769D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mBA9F868FB2708CBE8902469EBBC47D431AF0EDB0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m4FAD8D5D6BEC1BE76F777742F88AF3BEBB7941B8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m4F27CE56C411564055BD71424CB1FC4CDBBC9324_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_mFFC21B3478BA60249F704BAF77C9E1B74990A27E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_m74DB0C319FF42D373C0E2C7AE2E6DA8DE2766DDA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mA95132D5CF1E8A895403537EBACC07BC9245CBAB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m2C6D3DB1A5AE24D62A5BAF3FBE7D7EA90FA6573F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m0EDC0424C918764E4A4775D3A5515263766D4D60_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m42E999F080B83A1FE6B6281E02AFF950AC6E7139_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m8F1E7559DAD7DA0A24EB7236DAC079801CED1A3C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC1EDC3A1DA696DCD9E30F846B6EFDDD63FC2F51C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m428922DA3FB421D46D3BD8AAC8776908F37802CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_m147C61A1A10F789127BF7B7277F941254EB0EF9B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m76CA8DE020DFE27B7C7AAAD4DCBC9A98CAA09083_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m6FABA52A8077521D75EEF47F96B6F6835F24012A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_m13DD87F3DBDABE04F693F7548A4194C82A7FFF6D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_mA010E700CAB98B8737E7B6323FE4A964FD4B36B7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m33D7457FF436623FCB05BCF6E1C8395D0416EBD3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m75C01DEB35D58B2F9B6C2A58A6F5C75D887107E0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m9334E69B8859805AEA45E91FB4236237D4546C1B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA1CEFF2AB9C70303280A6EE5EEDB60F50DA74606_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m439BE22E14F43A93B3BA32DC031491BA83486510_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m8C977DB2E70FB6ECE6C9BA03BB36342414E66502_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m0C2786678947F3F8F614E95F302B8141656E0BEC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mD0EE33E60A29F39D1BF9B67CE2DB21591E9DC2DD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mC7B2B59C20DD832F49A1370D1625018062169C48_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m0C23542EE4BF3F08FFAA32A67B4E613C1B843A79_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mE2735DDD39E6D0F09617763D600BFD97DEBB3F32_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m8BCC6A2EE030123BC009145E3C1B0E77852B151C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m5F787EB4671307762990773F66BD75BEFB671D7E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mB798B5BAFF5DC83E829009B46B7686652F691B5F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m5B0033060F17F61226207330569318E317B76894_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mDEF234CB09495828E145A04D906D48AAAE3DAAB2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0C792FE5C3BBE1129940F475E8C9A7C73F1BB80F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m9C2335FA547A1F31DFDEC04116F2A3F493010023_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m886F64BFBEA3DC77CC40BCCEDCCF42022F1C5872_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m72EA6076017813D25E32AC73C7C7C9434AF7B719_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mAEA5448CBD83ADE874AA174E0BF276ACC7DCE8EC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4560C04EF3CAB4580998FE10CE51FD7859F1107_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m5AADBF26870DF171C1A9134F27CEB6D9F2E4DF80_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mA63550FB7A581FAA2DC522FC04C06E4AD696093D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFA8893709D0ED35E3F3F9CEE6371B8E370D8B2E9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m935F6ED67206736FF9603FD61129400CCE6D09B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m34C3E91FDDCCE200C165885775A0528D7C1EC82D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m27BFBB0BFB9A9DA887DB050F91D20A123A5A0187_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_mB160A86D52CD82EE3FD21C823020D96E86F232B3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m2798604DD3D0546DF762DA6DFE28DE72C232559A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m0BDA545CD13CC2B31AA4B9064D38258BFF430354_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF34931C57165FB0D48DFFCC10CB9E6D8A6CF207D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mA8C54365B2797B67C393F2ECBA787D1BFD3A0C8E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m796E7B2DE00B1D96044FB8C0F3FC168EE55110CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m813C91C01037FC0817BC26697DE870168EECA7FA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m20059B9F9F5CB91D37445E04571F7CF63C444282_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m181E9F89D812B1F85B142F38F1982E6C8180BD76_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m29BEEBFAF2A4CD0812887979A916365D2C98C6D2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__ICollection_Add_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_m9329B601461AF45DB4100C320253DFD3F40B995C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4FA2B8205F141350DB28CEB12DB33166A4D3ADC7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mEDF6D3612C8E5651E928AFB11D206AB8B3F983F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mF247A6152AD02F17C64C4908FD1A132699C5D752_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mEF89A10BED309D4EA11FBB95B16F60F86C1D6590_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mDA147F6CB5A09F054D158B2CA0F62AEB87915953_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m740957825039985F2D280500A96152E00B10E7B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m93809D010D27844EDF297DE20374EDEB4B52A4B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m335135BC9D839DDE0D6AE6F497F307BCA1EA3494_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m1D41E412ADFFA7B56929AFFD8C2EF7076C82D39E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m572A9DB3F0798A254071755598C32FFB154C6ADE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_mBC7248980A4BF11E8B3494D6B0F1BD3525E78B80_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m1498289D808C1C9BFF1EFAD70061F25CB87E5F0F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m3D387436CAFA61E6AA323BDA172922DAE0052ED2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m02B73CD318091CB020B98215A3D512B396EAC356_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_mB07F6D9679EECDA132BCF0DB67A6CF72098219F6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m39AC55BF7F0538DB683BB74D5A4D0AF00860E65F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m82F87ED9C7363DC7F1814391090631D289A9F850_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m597655F97FF61DB6B1C308BBA3D40DBD64628E1A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_mFD62CED7B230DF85A822D4B3B014FDE852FE5E95_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mC6A71A37B5C931C7FBDC0FCF3F200679312B2F9C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mDF7D20F25F91668DFF5FDD9BF25B9A2FD67346F3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m882858E2DFC6E1A0B2122BAFCECFB19BEC8372A0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mF310A542722300C2A280459BB266EDA7E8129B64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m91E23B11710DC8CF847237CDBA4D423BEAC8EE0D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m13A4F02E8A520814A34493899C9892EDD709C678_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mAADE596919A33924F7571CE0F655ACA544DCAD82_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m67818A5EEAA21721000BCD20823E154AD9569A59_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m5E99A4A6551F73620DAD39B15CDB617D7161AEFA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m354A4B6A58DD2B8079043DA3147990A006CA53BB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m1B410BF309AD7BBF4DC1217FD359C954CDF34C72_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m6893ED6B7AE41305351AAF83F0DF9F26649B1705_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mAE170691CA1449C46FB6555883BC7CEE3FA82368_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m2C5E6B7FDBC910C7618674972734B348869D1087_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m20471FEEDBB0EA2F999D494086D60C9A7340A40B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mAD4CAB4C13C53EE0B8D6981164BCCC80C3D74A98_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mF0A96F2D12555D91E4495277168CF74094D5670D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m83B4C7A63CF9FC885D1A8C4B08E3DD0D10D88A53_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mB47688B84BCCC2DA2DA4F8EB0B84C9BB4BE5761B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m54C678F1DB91614B00C45E89298240BAAC30C811_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m518C34B43F670F6D8A751783D02CE7162C17AF66_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m69A9984C32D940CCA45AFED00802739606EED14E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mB4B12E53F94617260F0D1B6A01E628F259AC8351_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m34F61CD0951D346091AA2FE94254F489CF29A90B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0787034FBDB3883C48C27131EE97A5855A1763E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m5B6D8E42AF6F378CFEC4C23EE939891450916777_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mE03E40466A3CD5D61CB4DE2F62AFB969BB414CEB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mE35F0AFDFBA2F4345AD555B88A30AFCFD6202A51_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4494D7E3042020D4B01039762A92913CC70C8CE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB2EED94F5719E0D99830BF5F2B96DE35FD1B9745_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m5D835E20EC6D6CEA706A09600CCAA8750AB4DF53_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mB21B382BB45607CF9AB61192682A2413D86D1120_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m7FFD78C0B66C07641274CAC03FB1E0D96BD75BAD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mFED4A4CBA59797C957BF87C08598A12661636AE8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1B38C001D3E82C658432C81316D681D2FC77F50B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m35FB53F1C51D4EE0FA506CBD3EEA9C17206C6230_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m6699E4D7345C1304B934081F68C7C5F338436A65_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mA7C07F39A1757F7B03F3F7DE5EB224C723684625_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mD79CB19ACBDEEB89B2EE4539DBC22D87CD41FE76_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m59D89B92E8067994C0E2804ADBD9093607136E9D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m683B2C264568CDE82EAB8D9F47ABD6C0329D38D0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m5DD830141F216B7DDEF3511B2747ED53DBCCC824_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m67EB1A5054024ED3F68DE85D9D3C16236057D25E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m3BCAC45BBFF80147157A9F1771A45374311326C9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__IndexOf_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_mD3760D19436C2D9F51CBCCB6C411443CE74CCC64_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m80D0262056AB6132787D162EC685AC57C2ABBF51_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m715B1309BA184A13F82358DFE43E4E1574993DBE_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m27824B891D40511ED485164E89CB76CA70002671_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m640B87319C6D2DFCC1A5FB7DBD24015FD4EEB1A4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_mB24E736B6A966391D6CF02C05A3158AD32C143AA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m9EF3FE0D545E7339E883312E962368BABDE24FD1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m5DD9AC37E36287E7452B482A18D7BB198974274A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m59785DEDD32E06384722D716EB1122FA165DC164_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mC746C2502A46D02D0916861AFD6E010266505986_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m68D137BA05D4E37DB2C783256679F06033ACD3D6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E2EF8F3992A2D2193DA91A85BA4EB37ECE69F36_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m795F453B39D52A9A0CDFA4849B8EAB8B432A46C5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m884D02C12BDFF597EE9D9EBA4176EFDFB4C231A0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mEFD58605BD0E1293E1FF5BB462A7A2C8C594BFD6_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_m793EF3A3BACE986CDBF9D47F32CE7D2BB3C9620C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m01AE1836246A090293461E55415D13408A161066_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC6F9F51E5F4362482BD5714FA3D66C3022DB4A44_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m4905059D256B26872C3F91B65E7E008A47AB4DBA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_m5AAE842F1F6C7FAE42D1DBE719201D49C6205C8A_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_mF3E52E6B89CC10EED23F76C275DEEB462FB1BFE5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m334454A8200F21BE7403E62D35C2EF9B001B5492_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mE0E3F1583DBA4DAF18CC3300DE3C6916ED13EA65_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m2F33FAA19B8B4AAD71CC09D8E5350CB768D9A4ED_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m3FECC49D66B6A51DACC6BD52FDD25846EFDAD881_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_mAC671FDB5325B51248B56AC79F51CA059A5EC445_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m13052C709FCCC6DBB376ECB1DB4B206E471E249E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m1DC1D2CE7F27B6861D32667F792056810F14E6A2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA0B4CB939AEBF8A592DA52B197572428F43EB20B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m282F96657C55165FF3D73C046B2706FE57A030AD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mD610F8A45F28BCE6FFCA5FCA01CF58DAF5AD8841_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mA7BC4F9F207588AB3833593BCEAAA3AF827EC496_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m1505D6B8C208CF150CCE48EBFCEB48455326175C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m0BEF618E6F0A9579C966F7A2AB536AC03EDD6EC4_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CodedInputStream_ReadMessageArray_TisRuntimeObject_m5D36690C043CA1AB375D730E5F83A559BF87DEFA_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t CodedOutputStream_WriteMessageArray_TisRuntimeObject_m11C481793F3A85AF3B924DA641283E489CF51944_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ThenBy_TisRuntimeObject_TisRuntimeObject_m91B234404A81CFC34CD495A33D31E9BF50B5208E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Enumerable_ThenBy_TisRuntimeObject_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m674B8CADFF5F454BAE796E1CD61502B74FCEB02D_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GeneratedMessageLite_2_PrintField_TisRuntimeObject_mBE4C09C9F50E4993087AF8C93286326254230C13_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GeneratedMessageLite_2_PrintField_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m5D6830633E6EBE23B3E283313590DEB5F726812E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GvrEventExecutor_AddEventDelegate_TisRuntimeObject_m71E281E3A0DADD17113975903768131A329FCEAB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GvrEventExecutor_CallEventDelegate_TisRuntimeObject_m85E38CE2CC3AE27E20C2739F9FDE76130DEF006C_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t GvrEventExecutor_RemoveEventDelegate_TisRuntimeObject_m5C32207182CF6383F2967EE5D253BC30B7DF6FBD_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Marshal_GetFunctionPointerForDelegate_TisRuntimeObject_m48759D7F3A90CB3B0B0E73773B1E40147247A61B_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Marshal_SizeOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m3CE955DF5B68C294A3873ACD74BA6476691BD788_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Marshal_SizeOf_TisRuntimeObject_m542AB92A661AA4B557013A47BC6BBF939B2A0452_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StyleValueExtensions_DebugString_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mFA3809E513FEE56023780D4FCE648B27B134ABB8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StyleValueExtensions_DebugString_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m20F660B618E50CFA130DCB1E275954DE6BDC60B5_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StyleValueExtensions_DebugString_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mE27A52901C65219A96D007D1F638E03CA90EF908_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StyleValueExtensions_DebugString_TisLength_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300_mA437B64AE4360C21FC307D27C93B703D0FEEB649_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StyleValueExtensions_DebugString_TisRuntimeObject_m612D8997F566E1E3A1A29593AC85BE73797930F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t StyleValueExtensions_DebugString_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mA799AF15B6D07B34B455C44FDC45BE4B0FFFA1E2_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ThrowHelper_ThrowIfAnyNull_TisRuntimeObject_mD61820D55FA7A3A55349EBCA1AFC60996CED6B08_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t ThrowHelper_ThrowIfAnyNull_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mB247E6DAD40CDDC157649EDA1DE08BB145D2FACB_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mDC229F84C56F314FD5336BDEE523328986473C50_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m0E10F227EFE7D1B5C00061E62878C166EEAEC234_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m55AACC97FA2E318E5493A4EBE39AA6E23D02AACC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m1255C5334984FA53C8BB76CC105F7DA21A1B1B7E_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m6DA953EB37E0DDF741D261902F8A7289B8B4D7F8_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m9DC7F2B24A0BF983FCBBA4947635D16DFD679587_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisRuntimeObject_mEAF9415C403AB8E424E1C3B9B67BD1E0619150AC_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mB09A324D80D3EB8664B06D7BF22BF864075176EF_MetadataUsageId;
IL2CPP_EXTERN_C const uint32_t _AndroidJNIHelper_GetSignature_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m78CEFC5CD7E4487469F4426A890DD7FAF6B23FC1_MetadataUsageId;
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct Exception_t_marshaled_com;
struct Exception_t_marshaled_pinvoke;
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com;
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com;
struct ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke;
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_com;
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_pinvoke;
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ;
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ;
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ;
struct ExtensionIntPairU5BU5D_t886F4A34B6FDE4624A466A603D613C6861EE057E;
struct PointerU5BU5D_t96866546CDEB1FE2B19AC7BF16BC33BFD08262DA;
struct VisualAssetsU5BU5D_t21AE5F549BC318C43336B54D1B04BC6BDD177311;
struct TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A;
struct UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C;
struct BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040;
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56;
struct EntryU5BU5D_t30D5EB8C995ED896E0ADEA87F347F424D86AB1E0;
struct EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599;
struct EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1;
struct EntryU5BU5D_tA93CC0D3D3F601A01A462F4E82167104C9F63E37;
struct EntryU5BU5D_t7EB03C2429C4535344F6F745BDC0400570F0EA9E;
struct EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5;
struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285;
struct EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3;
struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9;
struct EntryU5BU5D_t1A0116D04DC3E0F3519E158F660E851AAFC09FF7;
struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6;
struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4;
struct EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B;
struct EntryU5BU5D_tA3DE6559C7D1057EE7FD32925DC1D3187112AB3B;
struct EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594;
struct EntryU5BU5D_t50748B96662D70C34AB62339BEB0FBCFD115A7C3;
struct EntryU5BU5D_tACA587DE043730DBEEF9EECD04FE179D7974F9A6;
struct EntryU5BU5D_t0D1584C97CB839440D73C71D270E0712AC664709;
struct SlotU5BU5D_t9C4FFBCC974570D24EDC1028CCD0269BE774B36C;
struct KeyValuePair_2U5BU5D_t130F904919E00A0F5BD91F2BAD7626CCDA61ABBF;
struct KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F;
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7;
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A;
struct KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5;
struct KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417;
struct KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A;
struct KeyValuePair_2U5BU5D_tF57C1701FA2CB38EF64FD6039903B4EB5D3C013E;
struct KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291;
struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B;
struct KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C;
struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB;
struct KeyValuePair_2U5BU5D_t3A413F0268AB366611BCB5688C157768FCD1B85A;
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262;
struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB;
struct KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8;
struct KeyValuePair_2U5BU5D_tFF83EB73DF79412BBDF99182ADBCE71EBF101EE8;
struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD;
struct KeyValuePair_2U5BU5D_t6A43305072C9AA017F5C3B4E4B2953AE5C85A27E;
struct KeyValuePair_2U5BU5D_tF7650E1C358CD17F3EE16DF6F841B83A2C1FCD31;
struct KeyValuePair_2U5BU5D_t8AF2A040BD67A77CB9AB2B14EE463382950C36DF;
struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A;
struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1;
struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F;
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906;
struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94;
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D;
struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834;
struct InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68;
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF;
struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28;
struct Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A;
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F;
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD;
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A;
struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5;
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828;
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05;
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA;
struct ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC;
struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10;
struct GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7;
struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889;
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
struct LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D;
struct CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B;
struct TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5;
struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E;
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB;
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4;
struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E;
struct MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B;
struct RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652;
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41;
struct TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604;
struct TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D;
struct TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C;
struct TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D;
struct TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9;
struct TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847;
struct UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505;
struct TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09;
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101;
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399;
struct ContactPoint2DU5BU5D_t390B6CBF0673E9C408A97BC093462A33516F2C32;
struct ContactPointU5BU5D_t10BB5D5BFFFA3C919FD97DFDEDB49D954AFB8EAA;
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65;
struct LightDataGIU5BU5D_t32090CD353F0F6CDAC73FAFCC2D3F5EF78251B8A;
struct TileCoordU5BU5D_t5C91F6A2350FCA55BAD893C1C4ECAF553A8070F7;
struct KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D;
struct PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77;
struct PlaneU5BU5D_t79471E0ABE147C3018D88A036897B6DB49A782AA;
struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB;
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165;
struct RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57;
struct BatchVisibilityU5BU5D_t1594EA24FEB32F1AE80229DED3C45FF7F2DF0AA4;
struct HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1;
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2;
struct GlyphMarshallingStructU5BU5D_tB5E281DB809E6848B7CC9F02763B5E5AAE5E5662;
struct GlyphPairAdjustmentRecordU5BU5D_tE4D7700D820175D7726010904F8477E90C1823E7;
struct ColorBlockU5BU5D_tD84A362F1D993005D8CA9E0B5AB8967468418DE7;
struct NavigationU5BU5D_tED2679638506D7BDA5062C2FE17EC5F169233A6D;
struct SpriteStateU5BU5D_t6452EE17737027DABCA2DCEC11461C3CBF40FCDC;
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482;
struct DispatchContextU5BU5D_t4467426EBDEB3B12C25D99303F7B67A6411B1BC8;
struct EventRecordU5BU5D_tCCE77A3C5C7FBB76F0BAC802BD005880513F5A94;
struct FocusedElementU5BU5D_t64FC9A029ED86FA4C46BC885D17EB0FCE386BB13;
struct SheetHandleKeyU5BU5D_t3A34A624E16C7EEEE288315CA38FFD82DEE42C14;
struct StyleValueU5BU5D_t510329266B7162817A9059A6EF69BC3EF02A0D3D;
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC;
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A;
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0;
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
struct Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66;
struct SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D;
struct jvalueU5BU5D_t9AA52DD48CAF5296AE8A2F758A488A2B14B820E3;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
// Google.ProtocolBuffers.AbstractMessageLite`2<System.Object,System.Object>
struct AbstractMessageLite_2_t01DF3AD1B018CD3E817CE9CB1F4247BBBEBF41A1 : public RuntimeObject
{
public:
public:
};
// Google.ProtocolBuffers.CodedInputStream
struct CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816 : public RuntimeObject
{
public:
// System.Byte[] Google.ProtocolBuffers.CodedInputStream::buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_0;
// System.Int32 Google.ProtocolBuffers.CodedInputStream::bufferSize
int32_t ___bufferSize_1;
// System.Int32 Google.ProtocolBuffers.CodedInputStream::bufferSizeAfterLimit
int32_t ___bufferSizeAfterLimit_2;
// System.Int32 Google.ProtocolBuffers.CodedInputStream::bufferPos
int32_t ___bufferPos_3;
// System.IO.Stream Google.ProtocolBuffers.CodedInputStream::input
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___input_4;
// System.UInt32 Google.ProtocolBuffers.CodedInputStream::lastTag
uint32_t ___lastTag_5;
// System.UInt32 Google.ProtocolBuffers.CodedInputStream::nextTag
uint32_t ___nextTag_6;
// System.Boolean Google.ProtocolBuffers.CodedInputStream::hasNextTag
bool ___hasNextTag_7;
// System.Int32 Google.ProtocolBuffers.CodedInputStream::totalBytesRetired
int32_t ___totalBytesRetired_8;
// System.Int32 Google.ProtocolBuffers.CodedInputStream::currentLimit
int32_t ___currentLimit_9;
// System.Int32 Google.ProtocolBuffers.CodedInputStream::recursionDepth
int32_t ___recursionDepth_10;
// System.Int32 Google.ProtocolBuffers.CodedInputStream::recursionLimit
int32_t ___recursionLimit_11;
// System.Int32 Google.ProtocolBuffers.CodedInputStream::sizeLimit
int32_t ___sizeLimit_12;
public:
inline static int32_t get_offset_of_buffer_0() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___buffer_0)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_0() const { return ___buffer_0; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_0() { return &___buffer_0; }
inline void set_buffer_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buffer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_0), (void*)value);
}
inline static int32_t get_offset_of_bufferSize_1() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___bufferSize_1)); }
inline int32_t get_bufferSize_1() const { return ___bufferSize_1; }
inline int32_t* get_address_of_bufferSize_1() { return &___bufferSize_1; }
inline void set_bufferSize_1(int32_t value)
{
___bufferSize_1 = value;
}
inline static int32_t get_offset_of_bufferSizeAfterLimit_2() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___bufferSizeAfterLimit_2)); }
inline int32_t get_bufferSizeAfterLimit_2() const { return ___bufferSizeAfterLimit_2; }
inline int32_t* get_address_of_bufferSizeAfterLimit_2() { return &___bufferSizeAfterLimit_2; }
inline void set_bufferSizeAfterLimit_2(int32_t value)
{
___bufferSizeAfterLimit_2 = value;
}
inline static int32_t get_offset_of_bufferPos_3() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___bufferPos_3)); }
inline int32_t get_bufferPos_3() const { return ___bufferPos_3; }
inline int32_t* get_address_of_bufferPos_3() { return &___bufferPos_3; }
inline void set_bufferPos_3(int32_t value)
{
___bufferPos_3 = value;
}
inline static int32_t get_offset_of_input_4() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___input_4)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_input_4() const { return ___input_4; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_input_4() { return &___input_4; }
inline void set_input_4(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___input_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___input_4), (void*)value);
}
inline static int32_t get_offset_of_lastTag_5() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___lastTag_5)); }
inline uint32_t get_lastTag_5() const { return ___lastTag_5; }
inline uint32_t* get_address_of_lastTag_5() { return &___lastTag_5; }
inline void set_lastTag_5(uint32_t value)
{
___lastTag_5 = value;
}
inline static int32_t get_offset_of_nextTag_6() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___nextTag_6)); }
inline uint32_t get_nextTag_6() const { return ___nextTag_6; }
inline uint32_t* get_address_of_nextTag_6() { return &___nextTag_6; }
inline void set_nextTag_6(uint32_t value)
{
___nextTag_6 = value;
}
inline static int32_t get_offset_of_hasNextTag_7() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___hasNextTag_7)); }
inline bool get_hasNextTag_7() const { return ___hasNextTag_7; }
inline bool* get_address_of_hasNextTag_7() { return &___hasNextTag_7; }
inline void set_hasNextTag_7(bool value)
{
___hasNextTag_7 = value;
}
inline static int32_t get_offset_of_totalBytesRetired_8() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___totalBytesRetired_8)); }
inline int32_t get_totalBytesRetired_8() const { return ___totalBytesRetired_8; }
inline int32_t* get_address_of_totalBytesRetired_8() { return &___totalBytesRetired_8; }
inline void set_totalBytesRetired_8(int32_t value)
{
___totalBytesRetired_8 = value;
}
inline static int32_t get_offset_of_currentLimit_9() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___currentLimit_9)); }
inline int32_t get_currentLimit_9() const { return ___currentLimit_9; }
inline int32_t* get_address_of_currentLimit_9() { return &___currentLimit_9; }
inline void set_currentLimit_9(int32_t value)
{
___currentLimit_9 = value;
}
inline static int32_t get_offset_of_recursionDepth_10() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___recursionDepth_10)); }
inline int32_t get_recursionDepth_10() const { return ___recursionDepth_10; }
inline int32_t* get_address_of_recursionDepth_10() { return &___recursionDepth_10; }
inline void set_recursionDepth_10(int32_t value)
{
___recursionDepth_10 = value;
}
inline static int32_t get_offset_of_recursionLimit_11() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___recursionLimit_11)); }
inline int32_t get_recursionLimit_11() const { return ___recursionLimit_11; }
inline int32_t* get_address_of_recursionLimit_11() { return &___recursionLimit_11; }
inline void set_recursionLimit_11(int32_t value)
{
___recursionLimit_11 = value;
}
inline static int32_t get_offset_of_sizeLimit_12() { return static_cast<int32_t>(offsetof(CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816, ___sizeLimit_12)); }
inline int32_t get_sizeLimit_12() const { return ___sizeLimit_12; }
inline int32_t* get_address_of_sizeLimit_12() { return &___sizeLimit_12; }
inline void set_sizeLimit_12(int32_t value)
{
___sizeLimit_12 = value;
}
};
// Google.ProtocolBuffers.CodedOutputStream
struct CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5 : public RuntimeObject
{
public:
// System.Byte[] Google.ProtocolBuffers.CodedOutputStream::buffer
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___buffer_1;
// System.Int32 Google.ProtocolBuffers.CodedOutputStream::limit
int32_t ___limit_2;
// System.Int32 Google.ProtocolBuffers.CodedOutputStream::position
int32_t ___position_3;
// System.IO.Stream Google.ProtocolBuffers.CodedOutputStream::output
Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___output_4;
public:
inline static int32_t get_offset_of_buffer_1() { return static_cast<int32_t>(offsetof(CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5, ___buffer_1)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_buffer_1() const { return ___buffer_1; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_buffer_1() { return &___buffer_1; }
inline void set_buffer_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___buffer_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buffer_1), (void*)value);
}
inline static int32_t get_offset_of_limit_2() { return static_cast<int32_t>(offsetof(CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5, ___limit_2)); }
inline int32_t get_limit_2() const { return ___limit_2; }
inline int32_t* get_address_of_limit_2() { return &___limit_2; }
inline void set_limit_2(int32_t value)
{
___limit_2 = value;
}
inline static int32_t get_offset_of_position_3() { return static_cast<int32_t>(offsetof(CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5, ___position_3)); }
inline int32_t get_position_3() const { return ___position_3; }
inline int32_t* get_address_of_position_3() { return &___position_3; }
inline void set_position_3(int32_t value)
{
___position_3 = value;
}
inline static int32_t get_offset_of_output_4() { return static_cast<int32_t>(offsetof(CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5, ___output_4)); }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_output_4() const { return ___output_4; }
inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_output_4() { return &___output_4; }
inline void set_output_4(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value)
{
___output_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___output_4), (void*)value);
}
};
struct CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5_StaticFields
{
public:
// System.Int32 Google.ProtocolBuffers.CodedOutputStream::DefaultBufferSize
int32_t ___DefaultBufferSize_0;
public:
inline static int32_t get_offset_of_DefaultBufferSize_0() { return static_cast<int32_t>(offsetof(CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5_StaticFields, ___DefaultBufferSize_0)); }
inline int32_t get_DefaultBufferSize_0() const { return ___DefaultBufferSize_0; }
inline int32_t* get_address_of_DefaultBufferSize_0() { return &___DefaultBufferSize_0; }
inline void set_DefaultBufferSize_0(int32_t value)
{
___DefaultBufferSize_0 = value;
}
};
// Google.ProtocolBuffers.ExtensionRegistry
struct ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<System.Object,System.Collections.Generic.Dictionary`2<System.String,Google.ProtocolBuffers.IGeneratedExtensionLite>> Google.ProtocolBuffers.ExtensionRegistry::extensionsByName
Dictionary_2_t7F936E17189334C1E3958ADDECEF1A563BA78432 * ___extensionsByName_1;
// System.Collections.Generic.Dictionary`2<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,Google.ProtocolBuffers.IGeneratedExtensionLite> Google.ProtocolBuffers.ExtensionRegistry::extensionsByNumber
Dictionary_2_tF91678624674E791C5D12946643E031522675CCD * ___extensionsByNumber_2;
// System.Boolean Google.ProtocolBuffers.ExtensionRegistry::readOnly
bool ___readOnly_3;
public:
inline static int32_t get_offset_of_extensionsByName_1() { return static_cast<int32_t>(offsetof(ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3, ___extensionsByName_1)); }
inline Dictionary_2_t7F936E17189334C1E3958ADDECEF1A563BA78432 * get_extensionsByName_1() const { return ___extensionsByName_1; }
inline Dictionary_2_t7F936E17189334C1E3958ADDECEF1A563BA78432 ** get_address_of_extensionsByName_1() { return &___extensionsByName_1; }
inline void set_extensionsByName_1(Dictionary_2_t7F936E17189334C1E3958ADDECEF1A563BA78432 * value)
{
___extensionsByName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extensionsByName_1), (void*)value);
}
inline static int32_t get_offset_of_extensionsByNumber_2() { return static_cast<int32_t>(offsetof(ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3, ___extensionsByNumber_2)); }
inline Dictionary_2_tF91678624674E791C5D12946643E031522675CCD * get_extensionsByNumber_2() const { return ___extensionsByNumber_2; }
inline Dictionary_2_tF91678624674E791C5D12946643E031522675CCD ** get_address_of_extensionsByNumber_2() { return &___extensionsByNumber_2; }
inline void set_extensionsByNumber_2(Dictionary_2_tF91678624674E791C5D12946643E031522675CCD * value)
{
___extensionsByNumber_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___extensionsByNumber_2), (void*)value);
}
inline static int32_t get_offset_of_readOnly_3() { return static_cast<int32_t>(offsetof(ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3, ___readOnly_3)); }
inline bool get_readOnly_3() const { return ___readOnly_3; }
inline bool* get_address_of_readOnly_3() { return &___readOnly_3; }
inline void set_readOnly_3(bool value)
{
___readOnly_3 = value;
}
};
struct ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3_StaticFields
{
public:
// Google.ProtocolBuffers.ExtensionRegistry Google.ProtocolBuffers.ExtensionRegistry::empty
ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 * ___empty_0;
public:
inline static int32_t get_offset_of_empty_0() { return static_cast<int32_t>(offsetof(ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3_StaticFields, ___empty_0)); }
inline ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 * get_empty_0() const { return ___empty_0; }
inline ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 ** get_address_of_empty_0() { return &___empty_0; }
inline void set_empty_0(ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 * value)
{
___empty_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___empty_0), (void*)value);
}
};
// Google.ProtocolBuffers.ThrowHelper
struct ThrowHelper_tA22CEC2BFC338C2BC9195CFE85C8CD80EC21BF99 : public RuntimeObject
{
public:
public:
};
// GvrEventExecutor
struct GvrEventExecutor_t898582E56497D9854114651E438F61B403245CD3 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<System.Type,GvrEventExecutor_EventDelegate> GvrEventExecutor::eventTable
Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * ___eventTable_0;
public:
inline static int32_t get_offset_of_eventTable_0() { return static_cast<int32_t>(offsetof(GvrEventExecutor_t898582E56497D9854114651E438F61B403245CD3, ___eventTable_0)); }
inline Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * get_eventTable_0() const { return ___eventTable_0; }
inline Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 ** get_address_of_eventTable_0() { return &___eventTable_0; }
inline void set_eventTable_0(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * value)
{
___eventTable_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___eventTable_0), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// System.Collections.Generic.Dictionary`2<System.Type,GvrEventExecutor_EventDelegate>
struct Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 : public RuntimeObject
{
public:
// System.Int32[] System.Collections.Generic.Dictionary`2::buckets
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0;
// System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries
EntryU5BU5D_t42120E5C86942A351914813051791EF2FD89F539* ___entries_1;
// System.Int32 System.Collections.Generic.Dictionary`2::count
int32_t ___count_2;
// System.Int32 System.Collections.Generic.Dictionary`2::version
int32_t ___version_3;
// System.Int32 System.Collections.Generic.Dictionary`2::freeList
int32_t ___freeList_4;
// System.Int32 System.Collections.Generic.Dictionary`2::freeCount
int32_t ___freeCount_5;
// System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer
RuntimeObject* ___comparer_6;
// System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys
KeyCollection_tC4B44FDF4415158DA914C904CD25CC146FBFCFB1 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t7DBE94DA9228CAD36D9CE3D207E6CFBFADC334F3 * ___values_8;
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
RuntimeObject * ____syncRoot_9;
public:
inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___buckets_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; }
inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___buckets_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___buckets_0), (void*)value);
}
inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___entries_1)); }
inline EntryU5BU5D_t42120E5C86942A351914813051791EF2FD89F539* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_t42120E5C86942A351914813051791EF2FD89F539** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_t42120E5C86942A351914813051791EF2FD89F539* value)
{
___entries_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___entries_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___count_2)); }
inline int32_t get_count_2() const { return ___count_2; }
inline int32_t* get_address_of_count_2() { return &___count_2; }
inline void set_count_2(int32_t value)
{
___count_2 = value;
}
inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___version_3)); }
inline int32_t get_version_3() const { return ___version_3; }
inline int32_t* get_address_of_version_3() { return &___version_3; }
inline void set_version_3(int32_t value)
{
___version_3 = value;
}
inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___freeList_4)); }
inline int32_t get_freeList_4() const { return ___freeList_4; }
inline int32_t* get_address_of_freeList_4() { return &___freeList_4; }
inline void set_freeList_4(int32_t value)
{
___freeList_4 = value;
}
inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___freeCount_5)); }
inline int32_t get_freeCount_5() const { return ___freeCount_5; }
inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; }
inline void set_freeCount_5(int32_t value)
{
___freeCount_5 = value;
}
inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___comparer_6)); }
inline RuntimeObject* get_comparer_6() const { return ___comparer_6; }
inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; }
inline void set_comparer_6(RuntimeObject* value)
{
___comparer_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_6), (void*)value);
}
inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___keys_7)); }
inline KeyCollection_tC4B44FDF4415158DA914C904CD25CC146FBFCFB1 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_tC4B44FDF4415158DA914C904CD25CC146FBFCFB1 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_tC4B44FDF4415158DA914C904CD25CC146FBFCFB1 * value)
{
___keys_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keys_7), (void*)value);
}
inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ___values_8)); }
inline ValueCollection_t7DBE94DA9228CAD36D9CE3D207E6CFBFADC334F3 * get_values_8() const { return ___values_8; }
inline ValueCollection_t7DBE94DA9228CAD36D9CE3D207E6CFBFADC334F3 ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t7DBE94DA9228CAD36D9CE3D207E6CFBFADC334F3 * value)
{
___values_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_8), (void*)value);
}
inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83, ____syncRoot_9)); }
inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; }
inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; }
inline void set__syncRoot_9(RuntimeObject * value)
{
____syncRoot_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_9), (void*)value);
}
};
// System.Collections.Generic.EqualityComparer`1<System.Object>
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA : public RuntimeObject
{
public:
public:
};
struct EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields
{
public:
// System.Collections.Generic.EqualityComparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.EqualityComparer`1::defaultComparer
EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * ___defaultComparer_0;
public:
inline static int32_t get_offset_of_defaultComparer_0() { return static_cast<int32_t>(offsetof(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA_StaticFields, ___defaultComparer_0)); }
inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * get_defaultComparer_0() const { return ___defaultComparer_0; }
inline EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA ** get_address_of_defaultComparer_0() { return &___defaultComparer_0; }
inline void set_defaultComparer_0(EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * value)
{
___defaultComparer_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultComparer_0), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Int32>
struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____items_1)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__items_1() const { return ____items_1; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226_StaticFields, ____emptyArray_5)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get__emptyArray_5() const { return ____emptyArray_5; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<System.Object>
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____items_1)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__items_1() const { return ____items_1; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D_StaticFields, ____emptyArray_5)); }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* get__emptyArray_5() const { return ____emptyArray_5; }
inline ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Color32>
struct List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5, ____items_1)); }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* get__items_1() const { return ____items_1; }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5_StaticFields, ____emptyArray_5)); }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* get__emptyArray_5() const { return ____emptyArray_5; }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Vector2>
struct List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB, ____items_1)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get__items_1() const { return ____items_1; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB_StaticFields, ____emptyArray_5)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get__emptyArray_5() const { return ____emptyArray_5; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Vector3>
struct List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5, ____items_1)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get__items_1() const { return ____items_1; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5_StaticFields, ____emptyArray_5)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get__emptyArray_5() const { return ____emptyArray_5; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Vector4>
struct List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955, ____items_1)); }
inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* get__items_1() const { return ____items_1; }
inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955_StaticFields, ____emptyArray_5)); }
inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* get__emptyArray_5() const { return ____emptyArray_5; }
inline Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Linq.Enumerable
struct Enumerable_tECC271C86C6E8F72E4E27C7C8FD5DB7B63D5D737 : public RuntimeObject
{
public:
public:
};
// System.Linq.OrderedEnumerable`1<System.Object>
struct OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D : public RuntimeObject
{
public:
// System.Collections.Generic.IEnumerable`1<TElement> System.Linq.OrderedEnumerable`1::source
RuntimeObject* ___source_0;
public:
inline static int32_t get_offset_of_source_0() { return static_cast<int32_t>(offsetof(OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D, ___source_0)); }
inline RuntimeObject* get_source_0() const { return ___source_0; }
inline RuntimeObject** get_address_of_source_0() { return &___source_0; }
inline void set_source_0(RuntimeObject* value)
{
___source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___source_0), (void*)value);
}
};
// System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject
{
public:
// System.Object System.MarshalByRefObject::_identity
RuntimeObject * ____identity_0;
public:
inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); }
inline RuntimeObject * get__identity_0() const { return ____identity_0; }
inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; }
inline void set__identity_0(RuntimeObject * value)
{
____identity_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke
{
Il2CppIUnknown* ____identity_0;
};
// Native definition for COM marshalling of System.MarshalByRefObject
struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com
{
Il2CppIUnknown* ____identity_0;
};
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
// System.Runtime.CompilerServices.AsyncTaskCache
struct AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF : public RuntimeObject
{
public:
public:
};
struct AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields
{
public:
// System.Threading.Tasks.Task`1<System.Boolean> System.Runtime.CompilerServices.AsyncTaskCache::TrueTask
Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___TrueTask_0;
// System.Threading.Tasks.Task`1<System.Boolean> System.Runtime.CompilerServices.AsyncTaskCache::FalseTask
Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * ___FalseTask_1;
// System.Threading.Tasks.Task`1<System.Int32>[] System.Runtime.CompilerServices.AsyncTaskCache::Int32Tasks
Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* ___Int32Tasks_2;
public:
inline static int32_t get_offset_of_TrueTask_0() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields, ___TrueTask_0)); }
inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_TrueTask_0() const { return ___TrueTask_0; }
inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_TrueTask_0() { return &___TrueTask_0; }
inline void set_TrueTask_0(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value)
{
___TrueTask_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueTask_0), (void*)value);
}
inline static int32_t get_offset_of_FalseTask_1() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields, ___FalseTask_1)); }
inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * get_FalseTask_1() const { return ___FalseTask_1; }
inline Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 ** get_address_of_FalseTask_1() { return &___FalseTask_1; }
inline void set_FalseTask_1(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * value)
{
___FalseTask_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseTask_1), (void*)value);
}
inline static int32_t get_offset_of_Int32Tasks_2() { return static_cast<int32_t>(offsetof(AsyncTaskCache_t34A97832FCD6948CE68777740FA37AEAB550E6CF_StaticFields, ___Int32Tasks_2)); }
inline Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* get_Int32Tasks_2() const { return ___Int32Tasks_2; }
inline Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20** get_address_of_Int32Tasks_2() { return &___Int32Tasks_2; }
inline void set_Int32Tasks_2(Task_1U5BU5D_tF1E5C7D356B3C934B63AB0B3384819D681C4FD20* value)
{
___Int32Tasks_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Int32Tasks_2), (void*)value);
}
};
// System.Runtime.CompilerServices.JitHelpers
struct JitHelpers_t6BCD6CAFCA9C54EDD15CC80B7D7416E8711E8AAB : public RuntimeObject
{
public:
public:
};
// System.Runtime.InteropServices.Marshal
struct Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40 : public RuntimeObject
{
public:
public:
};
struct Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_StaticFields
{
public:
// System.Int32 System.Runtime.InteropServices.Marshal::SystemMaxDBCSCharSize
int32_t ___SystemMaxDBCSCharSize_0;
// System.Int32 System.Runtime.InteropServices.Marshal::SystemDefaultCharSize
int32_t ___SystemDefaultCharSize_1;
public:
inline static int32_t get_offset_of_SystemMaxDBCSCharSize_0() { return static_cast<int32_t>(offsetof(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_StaticFields, ___SystemMaxDBCSCharSize_0)); }
inline int32_t get_SystemMaxDBCSCharSize_0() const { return ___SystemMaxDBCSCharSize_0; }
inline int32_t* get_address_of_SystemMaxDBCSCharSize_0() { return &___SystemMaxDBCSCharSize_0; }
inline void set_SystemMaxDBCSCharSize_0(int32_t value)
{
___SystemMaxDBCSCharSize_0 = value;
}
inline static int32_t get_offset_of_SystemDefaultCharSize_1() { return static_cast<int32_t>(offsetof(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_StaticFields, ___SystemDefaultCharSize_1)); }
inline int32_t get_SystemDefaultCharSize_1() const { return ___SystemDefaultCharSize_1; }
inline int32_t* get_address_of_SystemDefaultCharSize_1() { return &___SystemDefaultCharSize_1; }
inline void set_SystemDefaultCharSize_1(int32_t value)
{
___SystemDefaultCharSize_1 = value;
}
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.Text.StringBuilder
struct StringBuilder_t : public RuntimeObject
{
public:
// System.Char[] System.Text.StringBuilder::m_ChunkChars
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0;
// System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious
StringBuilder_t * ___m_ChunkPrevious_1;
// System.Int32 System.Text.StringBuilder::m_ChunkLength
int32_t ___m_ChunkLength_2;
// System.Int32 System.Text.StringBuilder::m_ChunkOffset
int32_t ___m_ChunkOffset_3;
// System.Int32 System.Text.StringBuilder::m_MaxCapacity
int32_t ___m_MaxCapacity_4;
public:
inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; }
inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_ChunkChars_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); }
inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; }
inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; }
inline void set_m_ChunkPrevious_1(StringBuilder_t * value)
{
___m_ChunkPrevious_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value);
}
inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); }
inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; }
inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; }
inline void set_m_ChunkLength_2(int32_t value)
{
___m_ChunkLength_2 = value;
}
inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); }
inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; }
inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; }
inline void set_m_ChunkOffset_3(int32_t value)
{
___m_ChunkOffset_3 = value;
}
inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); }
inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; }
inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; }
inline void set_m_MaxCapacity_4(int32_t value)
{
___m_MaxCapacity_4 = value;
}
};
// System.Tuple
struct Tuple_tEC0E79AD4C7F35789E477B876F50D5854D890C52 : public RuntimeObject
{
public:
public:
};
// System.Tuple`2<System.Int32,System.Int32>
struct Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
int32_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
int32_t ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63, ___m_Item1_0)); }
inline int32_t get_m_Item1_0() const { return ___m_Item1_0; }
inline int32_t* get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(int32_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63, ___m_Item2_1)); }
inline int32_t get_m_Item2_1() const { return ___m_Item2_1; }
inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(int32_t value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Object,System.Object>
struct Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
RuntimeObject * ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
RuntimeObject * ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5, ___m_Item1_0)); }
inline RuntimeObject * get_m_Item1_0() const { return ___m_Item1_0; }
inline RuntimeObject ** get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(RuntimeObject * value)
{
___m_Item1_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item1_0), (void*)value);
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5, ___m_Item2_1)); }
inline RuntimeObject * get_m_Item2_1() const { return ___m_Item2_1; }
inline RuntimeObject ** get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(RuntimeObject * value)
{
___m_Item2_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Item2_1), (void*)value);
}
};
// System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_marshaled_com
{
};
// TMPro.TMPro_ExtensionMethods
struct TMPro_ExtensionMethods_t2A24D41EAD2F3568C5617941DE7558790B9B1835 : public RuntimeObject
{
public:
public:
};
// Unity.Collections.LowLevel.Unsafe.UnsafeUtility
struct UnsafeUtility_t78D5F2C60E6994F1B44020D1B4368BB8DD559AA8 : public RuntimeObject
{
public:
public:
};
// UnityEngine.AndroidJNIHelper
struct AndroidJNIHelper_t89C239287FDA47996B4DA74992B2E246E0B0A49C : public RuntimeObject
{
public:
public:
};
// UnityEngine.EventSystems.AbstractEventData
struct AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6 : public RuntimeObject
{
public:
// System.Boolean UnityEngine.EventSystems.AbstractEventData::m_Used
bool ___m_Used_0;
public:
inline static int32_t get_offset_of_m_Used_0() { return static_cast<int32_t>(offsetof(AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6, ___m_Used_0)); }
inline bool get_m_Used_0() const { return ___m_Used_0; }
inline bool* get_address_of_m_Used_0() { return &___m_Used_0; }
inline void set_m_Used_0(bool value)
{
___m_Used_0 = value;
}
};
// UnityEngine.NoAllocHelpers
struct NoAllocHelpers_t4BC4E5F5C10AE3134CFD94FF764240E3B1E45270 : public RuntimeObject
{
public:
public:
};
// UnityEngine.UIElements.StyleValueExtensions
struct StyleValueExtensions_tB5C36975F3FBDF3E96DF727123E9F2BF45840915 : public RuntimeObject
{
public:
public:
};
// UnityEngine._AndroidJNIHelper
struct _AndroidJNIHelper_t2104367336A4127C97F0F63CEF27E27792E7AA73 : public RuntimeObject
{
public:
public:
};
// Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair
struct ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D
{
public:
// System.Object Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair::msgType
RuntimeObject * ___msgType_0;
// System.Int32 Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair::number
int32_t ___number_1;
public:
inline static int32_t get_offset_of_msgType_0() { return static_cast<int32_t>(offsetof(ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D, ___msgType_0)); }
inline RuntimeObject * get_msgType_0() const { return ___msgType_0; }
inline RuntimeObject ** get_address_of_msgType_0() { return &___msgType_0; }
inline void set_msgType_0(RuntimeObject * value)
{
___msgType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___msgType_0), (void*)value);
}
inline static int32_t get_offset_of_number_1() { return static_cast<int32_t>(offsetof(ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D, ___number_1)); }
inline int32_t get_number_1() const { return ___number_1; }
inline int32_t* get_address_of_number_1() { return &___number_1; }
inline void set_number_1(int32_t value)
{
___number_1 = value;
}
};
// Native definition for P/Invoke marshalling of Google.ProtocolBuffers.ExtensionRegistry/ExtensionIntPair
struct ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_marshaled_pinvoke
{
Il2CppIUnknown* ___msgType_0;
int32_t ___number_1;
};
// Native definition for COM marshalling of Google.ProtocolBuffers.ExtensionRegistry/ExtensionIntPair
struct ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_marshaled_com
{
Il2CppIUnknown* ___msgType_0;
int32_t ___number_1;
};
// Google.ProtocolBuffers.GeneratedMessageLite`2<System.Object,System.Object>
struct GeneratedMessageLite_2_t4609575E84B4EA31D044E82F3BB6E23E6ADBF88C : public AbstractMessageLite_2_t01DF3AD1B018CD3E817CE9CB1F4247BBBEBF41A1
{
public:
public:
};
// Gvr.Internal.EmulatorTouchEvent_Pointer
struct Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F
{
public:
// System.Int32 Gvr.Internal.EmulatorTouchEvent_Pointer::fingerId
int32_t ___fingerId_0;
// System.Single Gvr.Internal.EmulatorTouchEvent_Pointer::normalizedX
float ___normalizedX_1;
// System.Single Gvr.Internal.EmulatorTouchEvent_Pointer::normalizedY
float ___normalizedY_2;
public:
inline static int32_t get_offset_of_fingerId_0() { return static_cast<int32_t>(offsetof(Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F, ___fingerId_0)); }
inline int32_t get_fingerId_0() const { return ___fingerId_0; }
inline int32_t* get_address_of_fingerId_0() { return &___fingerId_0; }
inline void set_fingerId_0(int32_t value)
{
___fingerId_0 = value;
}
inline static int32_t get_offset_of_normalizedX_1() { return static_cast<int32_t>(offsetof(Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F, ___normalizedX_1)); }
inline float get_normalizedX_1() const { return ___normalizedX_1; }
inline float* get_address_of_normalizedX_1() { return &___normalizedX_1; }
inline void set_normalizedX_1(float value)
{
___normalizedX_1 = value;
}
inline static int32_t get_offset_of_normalizedY_2() { return static_cast<int32_t>(offsetof(Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F, ___normalizedY_2)); }
inline float get_normalizedY_2() const { return ___normalizedY_2; }
inline float* get_address_of_normalizedY_2() { return &___normalizedY_2; }
inline void set_normalizedY_2(float value)
{
___normalizedY_2 = value;
}
};
// GvrControllerVisual_VisualAssets
struct VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC
{
public:
// UnityEngine.Mesh GvrControllerVisual_VisualAssets::mesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_0;
// UnityEngine.Material GvrControllerVisual_VisualAssets::material
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_1;
public:
inline static int32_t get_offset_of_mesh_0() { return static_cast<int32_t>(offsetof(VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC, ___mesh_0)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_mesh_0() const { return ___mesh_0; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_mesh_0() { return &___mesh_0; }
inline void set_mesh_0(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___mesh_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mesh_0), (void*)value);
}
inline static int32_t get_offset_of_material_1() { return static_cast<int32_t>(offsetof(VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC, ___material_1)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_material_1() const { return ___material_1; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_material_1() { return &___material_1; }
inline void set_material_1(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___material_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___material_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of GvrControllerVisual/VisualAssets
struct VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_marshaled_pinvoke
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_0;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_1;
};
// Native definition for COM marshalling of GvrControllerVisual/VisualAssets
struct VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_marshaled_com
{
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___mesh_0;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___material_1;
};
// Mono.Globalization.Unicode.CodePointIndexer_TableRange
struct TableRange_t485CF0807771CC05023466CFCB0AE25C46648100
{
public:
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Start
int32_t ___Start_0;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::End
int32_t ___End_1;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::Count
int32_t ___Count_2;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexStart
int32_t ___IndexStart_3;
// System.Int32 Mono.Globalization.Unicode.CodePointIndexer_TableRange::IndexEnd
int32_t ___IndexEnd_4;
public:
inline static int32_t get_offset_of_Start_0() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Start_0)); }
inline int32_t get_Start_0() const { return ___Start_0; }
inline int32_t* get_address_of_Start_0() { return &___Start_0; }
inline void set_Start_0(int32_t value)
{
___Start_0 = value;
}
inline static int32_t get_offset_of_End_1() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___End_1)); }
inline int32_t get_End_1() const { return ___End_1; }
inline int32_t* get_address_of_End_1() { return &___End_1; }
inline void set_End_1(int32_t value)
{
___End_1 = value;
}
inline static int32_t get_offset_of_Count_2() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___Count_2)); }
inline int32_t get_Count_2() const { return ___Count_2; }
inline int32_t* get_address_of_Count_2() { return &___Count_2; }
inline void set_Count_2(int32_t value)
{
___Count_2 = value;
}
inline static int32_t get_offset_of_IndexStart_3() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexStart_3)); }
inline int32_t get_IndexStart_3() const { return ___IndexStart_3; }
inline int32_t* get_address_of_IndexStart_3() { return &___IndexStart_3; }
inline void set_IndexStart_3(int32_t value)
{
___IndexStart_3 = value;
}
inline static int32_t get_offset_of_IndexEnd_4() { return static_cast<int32_t>(offsetof(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100, ___IndexEnd_4)); }
inline int32_t get_IndexEnd_4() const { return ___IndexEnd_4; }
inline int32_t* get_address_of_IndexEnd_4() { return &___IndexEnd_4; }
inline void set_IndexEnd_4(int32_t value)
{
___IndexEnd_4 = value;
}
};
// Mono.Security.Uri_UriScheme
struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089
{
public:
// System.String Mono.Security.Uri_UriScheme::scheme
String_t* ___scheme_0;
// System.String Mono.Security.Uri_UriScheme::delimiter
String_t* ___delimiter_1;
// System.Int32 Mono.Security.Uri_UriScheme::defaultPort
int32_t ___defaultPort_2;
public:
inline static int32_t get_offset_of_scheme_0() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___scheme_0)); }
inline String_t* get_scheme_0() const { return ___scheme_0; }
inline String_t** get_address_of_scheme_0() { return &___scheme_0; }
inline void set_scheme_0(String_t* value)
{
___scheme_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___scheme_0), (void*)value);
}
inline static int32_t get_offset_of_delimiter_1() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___delimiter_1)); }
inline String_t* get_delimiter_1() const { return ___delimiter_1; }
inline String_t** get_address_of_delimiter_1() { return &___delimiter_1; }
inline void set_delimiter_1(String_t* value)
{
___delimiter_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delimiter_1), (void*)value);
}
inline static int32_t get_offset_of_defaultPort_2() { return static_cast<int32_t>(offsetof(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089, ___defaultPort_2)); }
inline int32_t get_defaultPort_2() const { return ___defaultPort_2; }
inline int32_t* get_address_of_defaultPort_2() { return &___defaultPort_2; }
inline void set_defaultPort_2(int32_t value)
{
___defaultPort_2 = value;
}
};
// Native definition for P/Invoke marshalling of Mono.Security.Uri/UriScheme
struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_marshaled_pinvoke
{
char* ___scheme_0;
char* ___delimiter_1;
int32_t ___defaultPort_2;
};
// Native definition for COM marshalling of Mono.Security.Uri/UriScheme
struct UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_marshaled_com
{
Il2CppChar* ___scheme_0;
Il2CppChar* ___delimiter_1;
int32_t ___defaultPort_2;
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Byte
struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07
{
public:
// System.Byte System.Byte::m_value
uint8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); }
inline uint8_t get_m_value_0() const { return ___m_value_0; }
inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint8_t value)
{
___m_value_0 = value;
}
};
// System.Char
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9
{
public:
// System.Char System.Char::m_value
Il2CppChar ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); }
inline Il2CppChar get_m_value_0() const { return ___m_value_0; }
inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(Il2CppChar value)
{
___m_value_0 = value;
}
};
struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields
{
public:
// System.Byte[] System.Char::categoryForLatin1
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3;
public:
inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; }
inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___categoryForLatin1_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value);
}
};
// System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4
{
public:
// System.Object System.Collections.DictionaryEntry::_key
RuntimeObject * ____key_0;
// System.Object System.Collections.DictionaryEntry::_value
RuntimeObject * ____value_1;
public:
inline static int32_t get_offset_of__key_0() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____key_0)); }
inline RuntimeObject * get__key_0() const { return ____key_0; }
inline RuntimeObject ** get_address_of__key_0() { return &____key_0; }
inline void set__key_0(RuntimeObject * value)
{
____key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____key_0), (void*)value);
}
inline static int32_t get_offset_of__value_1() { return static_cast<int32_t>(offsetof(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4, ____value_1)); }
inline RuntimeObject * get__value_1() const { return ____value_1; }
inline RuntimeObject ** get_address_of__value_1() { return &____value_1; }
inline void set__value_1(RuntimeObject * value)
{
____value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_pinvoke
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// Native definition for COM marshalling of System.Collections.DictionaryEntry
struct DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_marshaled_com
{
Il2CppIUnknown* ____key_0;
Il2CppIUnknown* ____value_1;
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.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;
}
};
// 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;
}
};
// 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;
}
};
// 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;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>
struct Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
int32_t ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___key_2)); }
inline int32_t get_key_2() const { return ___key_2; }
inline int32_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(int32_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>
struct Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
int32_t ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>
struct Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_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;
}
};
// 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((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>
struct Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29
{
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
uint64_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_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___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_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___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_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___key_2)); }
inline uint64_t get_key_2() const { return ___key_2; }
inline uint64_t* get_address_of_key_2() { return &___key_2; }
inline void set_key_2(uint64_t value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.HashSet`1_Slot<System.Object>
struct Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279
{
public:
// System.Int32 System.Collections.Generic.HashSet`1_Slot::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.HashSet`1_Slot::next
int32_t ___next_1;
// T System.Collections.Generic.HashSet`1_Slot::value
RuntimeObject * ___value_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_value_2() { return static_cast<int32_t>(offsetof(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279, ___value_2)); }
inline RuntimeObject * get_value_2() const { return ___value_2; }
inline RuntimeObject ** get_address_of_value_2() { return &___value_2; }
inline void set_value_2(RuntimeObject * value)
{
___value_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_2), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.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;
}
};
// 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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>
struct KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___key_0)); }
inline int32_t get_key_0() const { return ___key_0; }
inline int32_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(int32_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>
struct KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE
{
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_t86464C52F9602337EAC68825E6BE06951D7530CE, ___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_t86464C52F9602337EAC68825E6BE06951D7530CE, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>
struct KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>
struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.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;
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>
struct KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67
{
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_tB806C2F98E1E3559B07973D57F289EAD64113D67, ___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_tB806C2F98E1E3559B07973D57F289EAD64113D67, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>
struct KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint64_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_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___key_0)); }
inline uint64_t get_key_0() const { return ___key_0; }
inline uint64_t* get_address_of_key_0() { return &___key_0; }
inline void set_key_0(uint64_t value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Hashtable_bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083
{
public:
// System.Object System.Collections.Hashtable_bucket::key
RuntimeObject * ___key_0;
// System.Object System.Collections.Hashtable_bucket::val
RuntimeObject * ___val_1;
// System.Int32 System.Collections.Hashtable_bucket::hash_coll
int32_t ___hash_coll_2;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_val_1() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___val_1)); }
inline RuntimeObject * get_val_1() const { return ___val_1; }
inline RuntimeObject ** get_address_of_val_1() { return &___val_1; }
inline void set_val_1(RuntimeObject * value)
{
___val_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___val_1), (void*)value);
}
inline static int32_t get_offset_of_hash_coll_2() { return static_cast<int32_t>(offsetof(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083, ___hash_coll_2)); }
inline int32_t get_hash_coll_2() const { return ___hash_coll_2; }
inline int32_t* get_address_of_hash_coll_2() { return &___hash_coll_2; }
inline void set_hash_coll_2(int32_t value)
{
___hash_coll_2 = value;
}
};
// Native definition for P/Invoke marshalling of System.Collections.Hashtable/bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// Native definition for COM marshalling of System.Collections.Hashtable/bucket
struct bucket_t1C848488DF65838689F7773D46F9E7E8C881B083_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___val_1;
int32_t ___hash_coll_2;
};
// System.DateTime
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132
{
public:
// System.UInt64 System.DateTime::dateData
uint64_t ___dateData_44;
public:
inline static int32_t get_offset_of_dateData_44() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132, ___dateData_44)); }
inline uint64_t get_dateData_44() const { return ___dateData_44; }
inline uint64_t* get_address_of_dateData_44() { return &___dateData_44; }
inline void set_dateData_44(uint64_t value)
{
___dateData_44 = value;
}
};
struct DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields
{
public:
// System.Int32[] System.DateTime::DaysToMonth365
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth365_29;
// System.Int32[] System.DateTime::DaysToMonth366
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___DaysToMonth366_30;
// System.DateTime System.DateTime::MinValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MinValue_31;
// System.DateTime System.DateTime::MaxValue
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___MaxValue_32;
public:
inline static int32_t get_offset_of_DaysToMonth365_29() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth365_29)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth365_29() const { return ___DaysToMonth365_29; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth365_29() { return &___DaysToMonth365_29; }
inline void set_DaysToMonth365_29(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth365_29 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth365_29), (void*)value);
}
inline static int32_t get_offset_of_DaysToMonth366_30() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___DaysToMonth366_30)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_DaysToMonth366_30() const { return ___DaysToMonth366_30; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_DaysToMonth366_30() { return &___DaysToMonth366_30; }
inline void set_DaysToMonth366_30(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___DaysToMonth366_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___DaysToMonth366_30), (void*)value);
}
inline static int32_t get_offset_of_MinValue_31() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MinValue_31)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MinValue_31() const { return ___MinValue_31; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MinValue_31() { return &___MinValue_31; }
inline void set_MinValue_31(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MinValue_31 = value;
}
inline static int32_t get_offset_of_MaxValue_32() { return static_cast<int32_t>(offsetof(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_StaticFields, ___MaxValue_32)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_MaxValue_32() const { return ___MaxValue_32; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_MaxValue_32() { return &___MaxValue_32; }
inline void set_MaxValue_32(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___MaxValue_32 = value;
}
};
// System.Decimal
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8
{
public:
// System.Int32 System.Decimal::flags
int32_t ___flags_14;
// System.Int32 System.Decimal::hi
int32_t ___hi_15;
// System.Int32 System.Decimal::lo
int32_t ___lo_16;
// System.Int32 System.Decimal::mid
int32_t ___mid_17;
public:
inline static int32_t get_offset_of_flags_14() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___flags_14)); }
inline int32_t get_flags_14() const { return ___flags_14; }
inline int32_t* get_address_of_flags_14() { return &___flags_14; }
inline void set_flags_14(int32_t value)
{
___flags_14 = value;
}
inline static int32_t get_offset_of_hi_15() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___hi_15)); }
inline int32_t get_hi_15() const { return ___hi_15; }
inline int32_t* get_address_of_hi_15() { return &___hi_15; }
inline void set_hi_15(int32_t value)
{
___hi_15 = value;
}
inline static int32_t get_offset_of_lo_16() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___lo_16)); }
inline int32_t get_lo_16() const { return ___lo_16; }
inline int32_t* get_address_of_lo_16() { return &___lo_16; }
inline void set_lo_16(int32_t value)
{
___lo_16 = value;
}
inline static int32_t get_offset_of_mid_17() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8, ___mid_17)); }
inline int32_t get_mid_17() const { return ___mid_17; }
inline int32_t* get_address_of_mid_17() { return &___mid_17; }
inline void set_mid_17(int32_t value)
{
___mid_17 = value;
}
};
struct Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields
{
public:
// System.UInt32[] System.Decimal::Powers10
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___Powers10_6;
// System.Decimal System.Decimal::Zero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___Zero_7;
// System.Decimal System.Decimal::One
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___One_8;
// System.Decimal System.Decimal::MinusOne
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinusOne_9;
// System.Decimal System.Decimal::MaxValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MaxValue_10;
// System.Decimal System.Decimal::MinValue
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___MinValue_11;
// System.Decimal System.Decimal::NearNegativeZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearNegativeZero_12;
// System.Decimal System.Decimal::NearPositiveZero
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___NearPositiveZero_13;
public:
inline static int32_t get_offset_of_Powers10_6() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Powers10_6)); }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* get_Powers10_6() const { return ___Powers10_6; }
inline UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB** get_address_of_Powers10_6() { return &___Powers10_6; }
inline void set_Powers10_6(UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* value)
{
___Powers10_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Powers10_6), (void*)value);
}
inline static int32_t get_offset_of_Zero_7() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___Zero_7)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_Zero_7() const { return ___Zero_7; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_Zero_7() { return &___Zero_7; }
inline void set_Zero_7(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___Zero_7 = value;
}
inline static int32_t get_offset_of_One_8() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___One_8)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_One_8() const { return ___One_8; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_One_8() { return &___One_8; }
inline void set_One_8(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___One_8 = value;
}
inline static int32_t get_offset_of_MinusOne_9() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinusOne_9)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinusOne_9() const { return ___MinusOne_9; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinusOne_9() { return &___MinusOne_9; }
inline void set_MinusOne_9(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinusOne_9 = value;
}
inline static int32_t get_offset_of_MaxValue_10() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MaxValue_10)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MaxValue_10() const { return ___MaxValue_10; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MaxValue_10() { return &___MaxValue_10; }
inline void set_MaxValue_10(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MaxValue_10 = value;
}
inline static int32_t get_offset_of_MinValue_11() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___MinValue_11)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_MinValue_11() const { return ___MinValue_11; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_MinValue_11() { return &___MinValue_11; }
inline void set_MinValue_11(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___MinValue_11 = value;
}
inline static int32_t get_offset_of_NearNegativeZero_12() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearNegativeZero_12)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearNegativeZero_12() const { return ___NearNegativeZero_12; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearNegativeZero_12() { return &___NearNegativeZero_12; }
inline void set_NearNegativeZero_12(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearNegativeZero_12 = value;
}
inline static int32_t get_offset_of_NearPositiveZero_13() { return static_cast<int32_t>(offsetof(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_StaticFields, ___NearPositiveZero_13)); }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 get_NearPositiveZero_13() const { return ___NearPositiveZero_13; }
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * get_address_of_NearPositiveZero_13() { return &___NearPositiveZero_13; }
inline void set_NearPositiveZero_13(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
___NearPositiveZero_13 = value;
}
};
// System.Diagnostics.Tracing.EventDescriptor
struct EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E
{
public:
union
{
struct
{
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 System.Diagnostics.Tracing.EventDescriptor::m_traceloggingId
int32_t ___m_traceloggingId_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___m_traceloggingId_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_id
uint16_t ___m_id_1;
};
#pragma pack(pop, tp)
struct
{
uint16_t ___m_id_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_version_2_OffsetPadding[2];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_version
uint8_t ___m_version_2;
};
#pragma pack(pop, tp)
struct
{
char ___m_version_2_OffsetPadding_forAlignmentOnly[2];
uint8_t ___m_version_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_channel_3_OffsetPadding[3];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_channel
uint8_t ___m_channel_3;
};
#pragma pack(pop, tp)
struct
{
char ___m_channel_3_OffsetPadding_forAlignmentOnly[3];
uint8_t ___m_channel_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_level_4_OffsetPadding[4];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_level
uint8_t ___m_level_4;
};
#pragma pack(pop, tp)
struct
{
char ___m_level_4_OffsetPadding_forAlignmentOnly[4];
uint8_t ___m_level_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_opcode_5_OffsetPadding[5];
// System.Byte System.Diagnostics.Tracing.EventDescriptor::m_opcode
uint8_t ___m_opcode_5;
};
#pragma pack(pop, tp)
struct
{
char ___m_opcode_5_OffsetPadding_forAlignmentOnly[5];
uint8_t ___m_opcode_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_task_6_OffsetPadding[6];
// System.UInt16 System.Diagnostics.Tracing.EventDescriptor::m_task
uint16_t ___m_task_6;
};
#pragma pack(pop, tp)
struct
{
char ___m_task_6_OffsetPadding_forAlignmentOnly[6];
uint16_t ___m_task_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___m_keywords_7_OffsetPadding[8];
// System.Int64 System.Diagnostics.Tracing.EventDescriptor::m_keywords
int64_t ___m_keywords_7;
};
#pragma pack(pop, tp)
struct
{
char ___m_keywords_7_OffsetPadding_forAlignmentOnly[8];
int64_t ___m_keywords_7_forAlignmentOnly;
};
};
};
uint8_t EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E__padding[16];
};
public:
inline static int32_t get_offset_of_m_traceloggingId_0() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_traceloggingId_0)); }
inline int32_t get_m_traceloggingId_0() const { return ___m_traceloggingId_0; }
inline int32_t* get_address_of_m_traceloggingId_0() { return &___m_traceloggingId_0; }
inline void set_m_traceloggingId_0(int32_t value)
{
___m_traceloggingId_0 = value;
}
inline static int32_t get_offset_of_m_id_1() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_id_1)); }
inline uint16_t get_m_id_1() const { return ___m_id_1; }
inline uint16_t* get_address_of_m_id_1() { return &___m_id_1; }
inline void set_m_id_1(uint16_t value)
{
___m_id_1 = value;
}
inline static int32_t get_offset_of_m_version_2() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_version_2)); }
inline uint8_t get_m_version_2() const { return ___m_version_2; }
inline uint8_t* get_address_of_m_version_2() { return &___m_version_2; }
inline void set_m_version_2(uint8_t value)
{
___m_version_2 = value;
}
inline static int32_t get_offset_of_m_channel_3() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_channel_3)); }
inline uint8_t get_m_channel_3() const { return ___m_channel_3; }
inline uint8_t* get_address_of_m_channel_3() { return &___m_channel_3; }
inline void set_m_channel_3(uint8_t value)
{
___m_channel_3 = value;
}
inline static int32_t get_offset_of_m_level_4() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_level_4)); }
inline uint8_t get_m_level_4() const { return ___m_level_4; }
inline uint8_t* get_address_of_m_level_4() { return &___m_level_4; }
inline void set_m_level_4(uint8_t value)
{
___m_level_4 = value;
}
inline static int32_t get_offset_of_m_opcode_5() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_opcode_5)); }
inline uint8_t get_m_opcode_5() const { return ___m_opcode_5; }
inline uint8_t* get_address_of_m_opcode_5() { return &___m_opcode_5; }
inline void set_m_opcode_5(uint8_t value)
{
___m_opcode_5 = value;
}
inline static int32_t get_offset_of_m_task_6() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_task_6)); }
inline uint16_t get_m_task_6() const { return ___m_task_6; }
inline uint16_t* get_address_of_m_task_6() { return &___m_task_6; }
inline void set_m_task_6(uint16_t value)
{
___m_task_6 = value;
}
inline static int32_t get_offset_of_m_keywords_7() { return static_cast<int32_t>(offsetof(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E, ___m_keywords_7)); }
inline int64_t get_m_keywords_7() const { return ___m_keywords_7; }
inline int64_t* get_address_of_m_keywords_7() { return &___m_keywords_7; }
inline void set_m_keywords_7(int64_t value)
{
___m_keywords_7 = value;
}
};
// System.Diagnostics.Tracing.EventProvider_SessionInfo
struct SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A
{
public:
// System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::sessionIdBit
int32_t ___sessionIdBit_0;
// System.Int32 System.Diagnostics.Tracing.EventProvider_SessionInfo::etwSessionId
int32_t ___etwSessionId_1;
public:
inline static int32_t get_offset_of_sessionIdBit_0() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___sessionIdBit_0)); }
inline int32_t get_sessionIdBit_0() const { return ___sessionIdBit_0; }
inline int32_t* get_address_of_sessionIdBit_0() { return &___sessionIdBit_0; }
inline void set_sessionIdBit_0(int32_t value)
{
___sessionIdBit_0 = value;
}
inline static int32_t get_offset_of_etwSessionId_1() { return static_cast<int32_t>(offsetof(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A, ___etwSessionId_1)); }
inline int32_t get_etwSessionId_1() const { return ___etwSessionId_1; }
inline int32_t* get_address_of_etwSessionId_1() { return &___etwSessionId_1; }
inline void set_etwSessionId_1(int32_t value)
{
___etwSessionId_1 = value;
}
};
// System.Double
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409
{
public:
// System.Double System.Double::m_value
double ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409, ___m_value_0)); }
inline double get_m_value_0() const { return ___m_value_0; }
inline double* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(double value)
{
___m_value_0 = value;
}
};
struct Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields
{
public:
// System.Double System.Double::NegativeZero
double ___NegativeZero_7;
public:
inline static int32_t get_offset_of_NegativeZero_7() { return static_cast<int32_t>(offsetof(Double_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_StaticFields, ___NegativeZero_7)); }
inline double get_NegativeZero_7() const { return ___NegativeZero_7; }
inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; }
inline void set_NegativeZero_7(double value)
{
___NegativeZero_7 = value;
}
};
// System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521 : public ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF
{
public:
public:
};
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t2AF27C02B8653AE29442467390005ABC74D8F521_marshaled_com
{
};
// System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4
{
public:
// System.UInt16 System.Globalization.InternalCodePageDataItem::codePage
uint16_t ___codePage_0;
// System.UInt16 System.Globalization.InternalCodePageDataItem::uiFamilyCodePage
uint16_t ___uiFamilyCodePage_1;
// System.UInt32 System.Globalization.InternalCodePageDataItem::flags
uint32_t ___flags_2;
// System.String System.Globalization.InternalCodePageDataItem::Names
String_t* ___Names_3;
public:
inline static int32_t get_offset_of_codePage_0() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___codePage_0)); }
inline uint16_t get_codePage_0() const { return ___codePage_0; }
inline uint16_t* get_address_of_codePage_0() { return &___codePage_0; }
inline void set_codePage_0(uint16_t value)
{
___codePage_0 = value;
}
inline static int32_t get_offset_of_uiFamilyCodePage_1() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___uiFamilyCodePage_1)); }
inline uint16_t get_uiFamilyCodePage_1() const { return ___uiFamilyCodePage_1; }
inline uint16_t* get_address_of_uiFamilyCodePage_1() { return &___uiFamilyCodePage_1; }
inline void set_uiFamilyCodePage_1(uint16_t value)
{
___uiFamilyCodePage_1 = value;
}
inline static int32_t get_offset_of_flags_2() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___flags_2)); }
inline uint32_t get_flags_2() const { return ___flags_2; }
inline uint32_t* get_address_of_flags_2() { return &___flags_2; }
inline void set_flags_2(uint32_t value)
{
___flags_2 = value;
}
inline static int32_t get_offset_of_Names_3() { return static_cast<int32_t>(offsetof(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4, ___Names_3)); }
inline String_t* get_Names_3() const { return ___Names_3; }
inline String_t** get_address_of_Names_3() { return &___Names_3; }
inline void set_Names_3(String_t* value)
{
___Names_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Names_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_pinvoke
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
char* ___Names_3;
};
// Native definition for COM marshalling of System.Globalization.InternalCodePageDataItem
struct InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_marshaled_com
{
uint16_t ___codePage_0;
uint16_t ___uiFamilyCodePage_1;
uint32_t ___flags_2;
Il2CppChar* ___Names_3;
};
// System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211
{
public:
// System.String System.Globalization.InternalEncodingDataItem::webName
String_t* ___webName_0;
// System.UInt16 System.Globalization.InternalEncodingDataItem::codePage
uint16_t ___codePage_1;
public:
inline static int32_t get_offset_of_webName_0() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___webName_0)); }
inline String_t* get_webName_0() const { return ___webName_0; }
inline String_t** get_address_of_webName_0() { return &___webName_0; }
inline void set_webName_0(String_t* value)
{
___webName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___webName_0), (void*)value);
}
inline static int32_t get_offset_of_codePage_1() { return static_cast<int32_t>(offsetof(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211, ___codePage_1)); }
inline uint16_t get_codePage_1() const { return ___codePage_1; }
inline uint16_t* get_address_of_codePage_1() { return &___codePage_1; }
inline void set_codePage_1(uint16_t value)
{
___codePage_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_pinvoke
{
char* ___webName_0;
uint16_t ___codePage_1;
};
// Native definition for COM marshalling of System.Globalization.InternalEncodingDataItem
struct InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_marshaled_com
{
Il2CppChar* ___webName_0;
uint16_t ___codePage_1;
};
// System.Guid
struct Guid_t
{
public:
// System.Int32 System.Guid::_a
int32_t ____a_1;
// System.Int16 System.Guid::_b
int16_t ____b_2;
// System.Int16 System.Guid::_c
int16_t ____c_3;
// System.Byte System.Guid::_d
uint8_t ____d_4;
// System.Byte System.Guid::_e
uint8_t ____e_5;
// System.Byte System.Guid::_f
uint8_t ____f_6;
// System.Byte System.Guid::_g
uint8_t ____g_7;
// System.Byte System.Guid::_h
uint8_t ____h_8;
// System.Byte System.Guid::_i
uint8_t ____i_9;
// System.Byte System.Guid::_j
uint8_t ____j_10;
// System.Byte System.Guid::_k
uint8_t ____k_11;
public:
inline static int32_t get_offset_of__a_1() { return static_cast<int32_t>(offsetof(Guid_t, ____a_1)); }
inline int32_t get__a_1() const { return ____a_1; }
inline int32_t* get_address_of__a_1() { return &____a_1; }
inline void set__a_1(int32_t value)
{
____a_1 = value;
}
inline static int32_t get_offset_of__b_2() { return static_cast<int32_t>(offsetof(Guid_t, ____b_2)); }
inline int16_t get__b_2() const { return ____b_2; }
inline int16_t* get_address_of__b_2() { return &____b_2; }
inline void set__b_2(int16_t value)
{
____b_2 = value;
}
inline static int32_t get_offset_of__c_3() { return static_cast<int32_t>(offsetof(Guid_t, ____c_3)); }
inline int16_t get__c_3() const { return ____c_3; }
inline int16_t* get_address_of__c_3() { return &____c_3; }
inline void set__c_3(int16_t value)
{
____c_3 = value;
}
inline static int32_t get_offset_of__d_4() { return static_cast<int32_t>(offsetof(Guid_t, ____d_4)); }
inline uint8_t get__d_4() const { return ____d_4; }
inline uint8_t* get_address_of__d_4() { return &____d_4; }
inline void set__d_4(uint8_t value)
{
____d_4 = value;
}
inline static int32_t get_offset_of__e_5() { return static_cast<int32_t>(offsetof(Guid_t, ____e_5)); }
inline uint8_t get__e_5() const { return ____e_5; }
inline uint8_t* get_address_of__e_5() { return &____e_5; }
inline void set__e_5(uint8_t value)
{
____e_5 = value;
}
inline static int32_t get_offset_of__f_6() { return static_cast<int32_t>(offsetof(Guid_t, ____f_6)); }
inline uint8_t get__f_6() const { return ____f_6; }
inline uint8_t* get_address_of__f_6() { return &____f_6; }
inline void set__f_6(uint8_t value)
{
____f_6 = value;
}
inline static int32_t get_offset_of__g_7() { return static_cast<int32_t>(offsetof(Guid_t, ____g_7)); }
inline uint8_t get__g_7() const { return ____g_7; }
inline uint8_t* get_address_of__g_7() { return &____g_7; }
inline void set__g_7(uint8_t value)
{
____g_7 = value;
}
inline static int32_t get_offset_of__h_8() { return static_cast<int32_t>(offsetof(Guid_t, ____h_8)); }
inline uint8_t get__h_8() const { return ____h_8; }
inline uint8_t* get_address_of__h_8() { return &____h_8; }
inline void set__h_8(uint8_t value)
{
____h_8 = value;
}
inline static int32_t get_offset_of__i_9() { return static_cast<int32_t>(offsetof(Guid_t, ____i_9)); }
inline uint8_t get__i_9() const { return ____i_9; }
inline uint8_t* get_address_of__i_9() { return &____i_9; }
inline void set__i_9(uint8_t value)
{
____i_9 = value;
}
inline static int32_t get_offset_of__j_10() { return static_cast<int32_t>(offsetof(Guid_t, ____j_10)); }
inline uint8_t get__j_10() const { return ____j_10; }
inline uint8_t* get_address_of__j_10() { return &____j_10; }
inline void set__j_10(uint8_t value)
{
____j_10 = value;
}
inline static int32_t get_offset_of__k_11() { return static_cast<int32_t>(offsetof(Guid_t, ____k_11)); }
inline uint8_t get__k_11() const { return ____k_11; }
inline uint8_t* get_address_of__k_11() { return &____k_11; }
inline void set__k_11(uint8_t value)
{
____k_11 = value;
}
};
struct Guid_t_StaticFields
{
public:
// System.Guid System.Guid::Empty
Guid_t ___Empty_0;
// System.Object System.Guid::_rngAccess
RuntimeObject * ____rngAccess_12;
// System.Security.Cryptography.RandomNumberGenerator System.Guid::_rng
RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * ____rng_13;
public:
inline static int32_t get_offset_of_Empty_0() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ___Empty_0)); }
inline Guid_t get_Empty_0() const { return ___Empty_0; }
inline Guid_t * get_address_of_Empty_0() { return &___Empty_0; }
inline void set_Empty_0(Guid_t value)
{
___Empty_0 = value;
}
inline static int32_t get_offset_of__rngAccess_12() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rngAccess_12)); }
inline RuntimeObject * get__rngAccess_12() const { return ____rngAccess_12; }
inline RuntimeObject ** get_address_of__rngAccess_12() { return &____rngAccess_12; }
inline void set__rngAccess_12(RuntimeObject * value)
{
____rngAccess_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rngAccess_12), (void*)value);
}
inline static int32_t get_offset_of__rng_13() { return static_cast<int32_t>(offsetof(Guid_t_StaticFields, ____rng_13)); }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * get__rng_13() const { return ____rng_13; }
inline RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 ** get_address_of__rng_13() { return &____rng_13; }
inline void set__rng_13(RandomNumberGenerator_t12277F7F965BA79C54E4B3BFABD27A5FFB725EE2 * value)
{
____rng_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rng_13), (void*)value);
}
};
// System.IO.TextWriter
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___CoreNewLine_9;
// System.IFormatProvider System.IO.TextWriter::InternalFormatProvider
RuntimeObject* ___InternalFormatProvider_10;
public:
inline static int32_t get_offset_of_CoreNewLine_9() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0, ___CoreNewLine_9)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_CoreNewLine_9() const { return ___CoreNewLine_9; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_CoreNewLine_9() { return &___CoreNewLine_9; }
inline void set_CoreNewLine_9(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___CoreNewLine_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___CoreNewLine_9), (void*)value);
}
inline static int32_t get_offset_of_InternalFormatProvider_10() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0, ___InternalFormatProvider_10)); }
inline RuntimeObject* get_InternalFormatProvider_10() const { return ___InternalFormatProvider_10; }
inline RuntimeObject** get_address_of_InternalFormatProvider_10() { return &___InternalFormatProvider_10; }
inline void set_InternalFormatProvider_10(RuntimeObject* value)
{
___InternalFormatProvider_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___InternalFormatProvider_10), (void*)value);
}
};
struct TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___Null_1;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharDelegate_2;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteStringDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteStringDelegate_3;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteCharArrayRangeDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteCharArrayRangeDelegate_4;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharDelegate_5;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineStringDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineStringDelegate_6;
// System.Action`1<System.Object> System.IO.TextWriter::_WriteLineCharArrayRangeDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____WriteLineCharArrayRangeDelegate_7;
// System.Action`1<System.Object> System.IO.TextWriter::_FlushDelegate
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ____FlushDelegate_8;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ___Null_1)); }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value);
}
inline static int32_t get_offset_of__WriteCharDelegate_2() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharDelegate_2)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharDelegate_2() const { return ____WriteCharDelegate_2; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharDelegate_2() { return &____WriteCharDelegate_2; }
inline void set__WriteCharDelegate_2(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteCharDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharDelegate_2), (void*)value);
}
inline static int32_t get_offset_of__WriteStringDelegate_3() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteStringDelegate_3)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteStringDelegate_3() const { return ____WriteStringDelegate_3; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteStringDelegate_3() { return &____WriteStringDelegate_3; }
inline void set__WriteStringDelegate_3(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteStringDelegate_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteStringDelegate_3), (void*)value);
}
inline static int32_t get_offset_of__WriteCharArrayRangeDelegate_4() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteCharArrayRangeDelegate_4)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteCharArrayRangeDelegate_4() const { return ____WriteCharArrayRangeDelegate_4; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteCharArrayRangeDelegate_4() { return &____WriteCharArrayRangeDelegate_4; }
inline void set__WriteCharArrayRangeDelegate_4(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteCharArrayRangeDelegate_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteCharArrayRangeDelegate_4), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharDelegate_5() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharDelegate_5)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharDelegate_5() const { return ____WriteLineCharDelegate_5; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharDelegate_5() { return &____WriteLineCharDelegate_5; }
inline void set__WriteLineCharDelegate_5(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineCharDelegate_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharDelegate_5), (void*)value);
}
inline static int32_t get_offset_of__WriteLineStringDelegate_6() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineStringDelegate_6)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineStringDelegate_6() const { return ____WriteLineStringDelegate_6; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineStringDelegate_6() { return &____WriteLineStringDelegate_6; }
inline void set__WriteLineStringDelegate_6(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineStringDelegate_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineStringDelegate_6), (void*)value);
}
inline static int32_t get_offset_of__WriteLineCharArrayRangeDelegate_7() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____WriteLineCharArrayRangeDelegate_7)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__WriteLineCharArrayRangeDelegate_7() const { return ____WriteLineCharArrayRangeDelegate_7; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__WriteLineCharArrayRangeDelegate_7() { return &____WriteLineCharArrayRangeDelegate_7; }
inline void set__WriteLineCharArrayRangeDelegate_7(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____WriteLineCharArrayRangeDelegate_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____WriteLineCharArrayRangeDelegate_7), (void*)value);
}
inline static int32_t get_offset_of__FlushDelegate_8() { return static_cast<int32_t>(offsetof(TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0_StaticFields, ____FlushDelegate_8)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get__FlushDelegate_8() const { return ____FlushDelegate_8; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of__FlushDelegate_8() { return &____FlushDelegate_8; }
inline void set__FlushDelegate_8(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
____FlushDelegate_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____FlushDelegate_8), (void*)value);
}
};
// System.Int16
struct Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D
{
public:
// System.Int16 System.Int16::m_value
int16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D, ___m_value_0)); }
inline int16_t get_m_value_0() const { return ___m_value_0; }
inline int16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int16_t value)
{
___m_value_0 = value;
}
};
// System.Int32
struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.Int64
struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436
{
public:
// System.Int64 System.Int64::m_value
int64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); }
inline int64_t get_m_value_0() const { return ___m_value_0; }
inline int64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int64_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// System.Linq.OrderedEnumerable`2<System.Object,System.Object>
struct OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B : public OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D
{
public:
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent
OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * ___parent_1;
// System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___keySelector_2;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer
RuntimeObject* ___comparer_3;
// System.Boolean System.Linq.OrderedEnumerable`2::descending
bool ___descending_4;
public:
inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B, ___parent_1)); }
inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * get_parent_1() const { return ___parent_1; }
inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D ** get_address_of_parent_1() { return &___parent_1; }
inline void set_parent_1(OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * value)
{
___parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value);
}
inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B, ___keySelector_2)); }
inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * get_keySelector_2() const { return ___keySelector_2; }
inline Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 ** get_address_of_keySelector_2() { return &___keySelector_2; }
inline void set_keySelector_2(Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * value)
{
___keySelector_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value);
}
inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B, ___descending_4)); }
inline bool get_descending_4() const { return ___descending_4; }
inline bool* get_address_of_descending_4() { return &___descending_4; }
inline void set_descending_4(bool value)
{
___descending_4 = value;
}
};
// System.Linq.OrderedEnumerable`2<System.Object,System.UInt32>
struct OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 : public OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D
{
public:
// System.Linq.OrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`2::parent
OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * ___parent_1;
// System.Func`2<TElement,TKey> System.Linq.OrderedEnumerable`2::keySelector
Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * ___keySelector_2;
// System.Collections.Generic.IComparer`1<TKey> System.Linq.OrderedEnumerable`2::comparer
RuntimeObject* ___comparer_3;
// System.Boolean System.Linq.OrderedEnumerable`2::descending
bool ___descending_4;
public:
inline static int32_t get_offset_of_parent_1() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5, ___parent_1)); }
inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * get_parent_1() const { return ___parent_1; }
inline OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D ** get_address_of_parent_1() { return &___parent_1; }
inline void set_parent_1(OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * value)
{
___parent_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_1), (void*)value);
}
inline static int32_t get_offset_of_keySelector_2() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5, ___keySelector_2)); }
inline Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * get_keySelector_2() const { return ___keySelector_2; }
inline Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A ** get_address_of_keySelector_2() { return &___keySelector_2; }
inline void set_keySelector_2(Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * value)
{
___keySelector_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___keySelector_2), (void*)value);
}
inline static int32_t get_offset_of_comparer_3() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5, ___comparer_3)); }
inline RuntimeObject* get_comparer_3() const { return ___comparer_3; }
inline RuntimeObject** get_address_of_comparer_3() { return &___comparer_3; }
inline void set_comparer_3(RuntimeObject* value)
{
___comparer_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___comparer_3), (void*)value);
}
inline static int32_t get_offset_of_descending_4() { return static_cast<int32_t>(offsetof(OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5, ___descending_4)); }
inline bool get_descending_4() const { return ___descending_4; }
inline bool* get_address_of_descending_4() { return &___descending_4; }
inline void set_descending_4(bool value)
{
___descending_4 = value;
}
};
// System.ParameterizedStrings_FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800
{
public:
// System.Int32 System.ParameterizedStrings_FormatParam::_int32
int32_t ____int32_0;
// System.String System.ParameterizedStrings_FormatParam::_string
String_t* ____string_1;
public:
inline static int32_t get_offset_of__int32_0() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____int32_0)); }
inline int32_t get__int32_0() const { return ____int32_0; }
inline int32_t* get_address_of__int32_0() { return &____int32_0; }
inline void set__int32_0(int32_t value)
{
____int32_0 = value;
}
inline static int32_t get_offset_of__string_1() { return static_cast<int32_t>(offsetof(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800, ____string_1)); }
inline String_t* get__string_1() const { return ____string_1; }
inline String_t** get_address_of__string_1() { return &____string_1; }
inline void set__string_1(String_t* value)
{
____string_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____string_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_pinvoke
{
int32_t ____int32_0;
char* ____string_1;
};
// Native definition for COM marshalling of System.ParameterizedStrings/FormatParam
struct FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_marshaled_com
{
int32_t ____int32_0;
Il2CppChar* ____string_1;
};
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8
{
public:
// System.Type System.Reflection.CustomAttributeTypedArgument::argumentType
Type_t * ___argumentType_0;
// System.Object System.Reflection.CustomAttributeTypedArgument::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_argumentType_0() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___argumentType_0)); }
inline Type_t * get_argumentType_0() const { return ___argumentType_0; }
inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; }
inline void set_argumentType_0(Type_t * value)
{
___argumentType_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___argumentType_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byRef
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ____byRef_0;
public:
inline static int32_t get_offset_of__byRef_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E, ____byRef_0)); }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* get__byRef_0() const { return ____byRef_0; }
inline BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040** get_address_of__byRef_0() { return &____byRef_0; }
inline void set__byRef_0(BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* value)
{
____byRef_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____byRef_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_pinvoke
{
int32_t* ____byRef_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_marshaled_com
{
int32_t* ____byRef_0;
};
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
public:
public:
};
// System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C
{
public:
// System.Object System.Resources.ResourceLocator::_value
RuntimeObject * ____value_0;
// System.Int32 System.Resources.ResourceLocator::_dataPos
int32_t ____dataPos_1;
public:
inline static int32_t get_offset_of__value_0() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____value_0)); }
inline RuntimeObject * get__value_0() const { return ____value_0; }
inline RuntimeObject ** get_address_of__value_0() { return &____value_0; }
inline void set__value_0(RuntimeObject * value)
{
____value_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&____value_0), (void*)value);
}
inline static int32_t get_offset_of__dataPos_1() { return static_cast<int32_t>(offsetof(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C, ____dataPos_1)); }
inline int32_t get__dataPos_1() const { return ____dataPos_1; }
inline int32_t* get_address_of__dataPos_1() { return &____dataPos_1; }
inline void set__dataPos_1(int32_t value)
{
____dataPos_1 = value;
}
};
// Native definition for P/Invoke marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_pinvoke
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// Native definition for COM marshalling of System.Resources.ResourceLocator
struct ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_marshaled_com
{
Il2CppIUnknown* ____value_0;
int32_t ____dataPos_1;
};
// System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA
{
public:
// System.Object System.Runtime.CompilerServices.Ephemeron::key
RuntimeObject * ___key_0;
// System.Object System.Runtime.CompilerServices.Ephemeron::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_pinvoke
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Runtime.CompilerServices.Ephemeron
struct Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_marshaled_com
{
Il2CppIUnknown* ___key_0;
Il2CppIUnknown* ___value_1;
};
// System.Runtime.InteropServices.GCHandle
struct GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3
{
public:
// System.Int32 System.Runtime.InteropServices.GCHandle::handle
int32_t ___handle_0;
public:
inline static int32_t get_offset_of_handle_0() { return static_cast<int32_t>(offsetof(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3, ___handle_0)); }
inline int32_t get_handle_0() const { return ___handle_0; }
inline int32_t* get_address_of_handle_0() { return &___handle_0; }
inline void set_handle_0(int32_t value)
{
___handle_0 = value;
}
};
// System.SByte
struct SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF
{
public:
// System.SByte System.SByte::m_value
int8_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(SByte_t9070AEA2966184235653CB9B4D33B149CDA831DF, ___m_value_0)); }
inline int8_t get_m_value_0() const { return ___m_value_0; }
inline int8_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int8_t value)
{
___m_value_0 = value;
}
};
// System.Single
struct Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B
{
public:
// System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMin
Il2CppChar ____chMin_0;
// System.Char System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_chMax
Il2CppChar ____chMax_1;
// System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_lcOp
int32_t ____lcOp_2;
// System.Int32 System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping::_data
int32_t ____data_3;
public:
inline static int32_t get_offset_of__chMin_0() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMin_0)); }
inline Il2CppChar get__chMin_0() const { return ____chMin_0; }
inline Il2CppChar* get_address_of__chMin_0() { return &____chMin_0; }
inline void set__chMin_0(Il2CppChar value)
{
____chMin_0 = value;
}
inline static int32_t get_offset_of__chMax_1() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____chMax_1)); }
inline Il2CppChar get__chMax_1() const { return ____chMax_1; }
inline Il2CppChar* get_address_of__chMax_1() { return &____chMax_1; }
inline void set__chMax_1(Il2CppChar value)
{
____chMax_1 = value;
}
inline static int32_t get_offset_of__lcOp_2() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____lcOp_2)); }
inline int32_t get__lcOp_2() const { return ____lcOp_2; }
inline int32_t* get_address_of__lcOp_2() { return &____lcOp_2; }
inline void set__lcOp_2(int32_t value)
{
____lcOp_2 = value;
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B, ____data_3)); }
inline int32_t get__data_3() const { return ____data_3; }
inline int32_t* get_address_of__data_3() { return &____data_3; }
inline void set__data_3(int32_t value)
{
____data_3 = value;
}
};
// Native definition for P/Invoke marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_pinvoke
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// Native definition for COM marshalling of System.Text.RegularExpressions.RegexCharClass/LowerCaseMapping
struct LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_marshaled_com
{
uint8_t ____chMin_0;
uint8_t ____chMax_1;
int32_t ____lcOp_2;
int32_t ____data_3;
};
// System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB
{
public:
// System.Threading.CancellationTokenSource System.Threading.CancellationToken::m_source
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB, ___m_source_0)); }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * get_m_source_0() const { return ___m_source_0; }
inline CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
};
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields
{
public:
// System.Action`1<System.Object> System.Threading.CancellationToken::s_ActionToActionObjShunt
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_ActionToActionObjShunt_1;
public:
inline static int32_t get_offset_of_s_ActionToActionObjShunt_1() { return static_cast<int32_t>(offsetof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_StaticFields, ___s_ActionToActionObjShunt_1)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_ActionToActionObjShunt_1() const { return ___s_ActionToActionObjShunt_1; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_ActionToActionObjShunt_1() { return &___s_ActionToActionObjShunt_1; }
inline void set_s_ActionToActionObjShunt_1(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_ActionToActionObjShunt_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ActionToActionObjShunt_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_pinvoke
{
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
};
// Native definition for COM marshalling of System.Threading.CancellationToken
struct CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB_marshaled_com
{
CancellationTokenSource_tF480B7E74A032667AFBD31F0530D619FB43AD3FE * ___m_source_0;
};
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo>
struct SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE
{
public:
// System.Threading.SparselyPopulatedArrayFragment`1<T> System.Threading.SparselyPopulatedArrayAddInfo`1::m_source
SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * ___m_source_0;
// System.Int32 System.Threading.SparselyPopulatedArrayAddInfo`1::m_index
int32_t ___m_index_1;
public:
inline static int32_t get_offset_of_m_source_0() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_source_0)); }
inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * get_m_source_0() const { return ___m_source_0; }
inline SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 ** get_address_of_m_source_0() { return &___m_source_0; }
inline void set_m_source_0(SparselyPopulatedArrayFragment_1_tA54224D01E2FDC03AC2867CDDC8C53E17FA933D7 * value)
{
___m_source_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_source_0), (void*)value);
}
inline static int32_t get_offset_of_m_index_1() { return static_cast<int32_t>(offsetof(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE, ___m_index_1)); }
inline int32_t get_m_index_1() const { return ___m_index_1; }
inline int32_t* get_address_of_m_index_1() { return &___m_index_1; }
inline void set_m_index_1(int32_t value)
{
___m_index_1 = value;
}
};
// System.UInt16
struct UInt16_tAE45CEF73BF720100519F6867F32145D075F928E
{
public:
// System.UInt16 System.UInt16::m_value
uint16_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt16_tAE45CEF73BF720100519F6867F32145D075F928E, ___m_value_0)); }
inline uint16_t get_m_value_0() const { return ___m_value_0; }
inline uint16_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint16_t value)
{
___m_value_0 = value;
}
};
// System.UInt32
struct UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B
{
public:
// System.UInt32 System.UInt32::m_value
uint32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B, ___m_value_0)); }
inline uint32_t get_m_value_0() const { return ___m_value_0; }
inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint32_t value)
{
___m_value_0 = value;
}
};
// System.UInt64
struct UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E
{
public:
// System.UInt64 System.UInt64::m_value
uint64_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(UInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E, ___m_value_0)); }
inline uint64_t get_m_value_0() const { return ___m_value_0; }
inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(uint64_t value)
{
___m_value_0 = value;
}
};
// System.UIntPtr
struct UIntPtr_t
{
public:
// System.Void* System.UIntPtr::_pointer
void* ____pointer_1;
public:
inline static int32_t get_offset_of__pointer_1() { return static_cast<int32_t>(offsetof(UIntPtr_t, ____pointer_1)); }
inline void* get__pointer_1() const { return ____pointer_1; }
inline void** get_address_of__pointer_1() { return &____pointer_1; }
inline void set__pointer_1(void* value)
{
____pointer_1 = value;
}
};
struct UIntPtr_t_StaticFields
{
public:
// System.UIntPtr System.UIntPtr::Zero
uintptr_t ___Zero_0;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(UIntPtr_t_StaticFields, ___Zero_0)); }
inline uintptr_t get_Zero_0() const { return ___Zero_0; }
inline uintptr_t* get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(uintptr_t value)
{
___Zero_0 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// 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((void**)(&___fontAsset_1), (void*)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((void**)(&___spriteAsset_2), (void*)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((void**)(&___material_3), (void*)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((void**)(&___fallbackMaterial_6), (void*)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;
}
};
// 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;
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame
struct SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04
{
public:
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::x
float ___x_0;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::y
float ___y_1;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::w
float ___w_2;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame::h
float ___h_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___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(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___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_w_2() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___w_2)); }
inline float get_w_2() const { return ___w_2; }
inline float* get_address_of_w_2() { return &___w_2; }
inline void set_w_2(float value)
{
___w_2 = value;
}
inline static int32_t get_offset_of_h_3() { return static_cast<int32_t>(offsetof(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04, ___h_3)); }
inline float get_h_3() const { return ___h_3; }
inline float* get_address_of_h_3() { return &___h_3; }
inline void set_h_3(float value)
{
___h_3 = value;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize
struct SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E
{
public:
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize::w
float ___w_0;
// System.Single TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize::h
float ___h_1;
public:
inline static int32_t get_offset_of_w_0() { return static_cast<int32_t>(offsetof(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E, ___w_0)); }
inline float get_w_0() const { return ___w_0; }
inline float* get_address_of_w_0() { return &___w_0; }
inline void set_w_0(float value)
{
___w_0 = value;
}
inline static int32_t get_offset_of_h_1() { return static_cast<int32_t>(offsetof(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E, ___h_1)); }
inline float get_h_1() const { return ___h_1; }
inline float* get_address_of_h_1() { return &___h_1; }
inline void set_h_1(float value)
{
___h_1 = value;
}
};
// 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((void**)(&___regularTypeface_0), (void*)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((void**)(&___italicTypeface_1), (void*)value);
}
};
// 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;
};
// 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((void**)(&___textComponent_0), (void*)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((void**)(&___linkID_6), (void*)value);
}
};
// 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;
};
// 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;
}
};
// 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;
}
};
// 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((void**)(&___textComponent_0), (void*)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;
}
};
// 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;
};
// UnityEngine.BeforeRenderHelper_OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727
{
public:
// System.Int32 UnityEngine.BeforeRenderHelper_OrderBlock::order
int32_t ___order_0;
// UnityEngine.Events.UnityAction UnityEngine.BeforeRenderHelper_OrderBlock::callback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___callback_1;
public:
inline static int32_t get_offset_of_order_0() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___order_0)); }
inline int32_t get_order_0() const { return ___order_0; }
inline int32_t* get_address_of_order_0() { return &___order_0; }
inline void set_order_0(int32_t value)
{
___order_0 = value;
}
inline static int32_t get_offset_of_callback_1() { return static_cast<int32_t>(offsetof(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727, ___callback_1)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_callback_1() const { return ___callback_1; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_callback_1() { return &___callback_1; }
inline void set_callback_1(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___callback_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___callback_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_pinvoke
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// Native definition for COM marshalling of UnityEngine.BeforeRenderHelper/OrderBlock
struct OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_marshaled_com
{
int32_t ___order_0;
Il2CppMethodPointer ___callback_1;
};
// UnityEngine.Color
struct Color_t119BCA590009762C7223FDD3AF9706653AC84ED2
{
public:
// System.Single UnityEngine.Color::r
float ___r_0;
// System.Single UnityEngine.Color::g
float ___g_1;
// System.Single UnityEngine.Color::b
float ___b_2;
// System.Single UnityEngine.Color::a
float ___a_3;
public:
inline static int32_t get_offset_of_r_0() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___r_0)); }
inline float get_r_0() const { return ___r_0; }
inline float* get_address_of_r_0() { return &___r_0; }
inline void set_r_0(float value)
{
___r_0 = value;
}
inline static int32_t get_offset_of_g_1() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___g_1)); }
inline float get_g_1() const { return ___g_1; }
inline float* get_address_of_g_1() { return &___g_1; }
inline void set_g_1(float value)
{
___g_1 = value;
}
inline static int32_t get_offset_of_b_2() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___b_2)); }
inline float get_b_2() const { return ___b_2; }
inline float* get_address_of_b_2() { return &___b_2; }
inline void set_b_2(float value)
{
___b_2 = value;
}
inline static int32_t get_offset_of_a_3() { return static_cast<int32_t>(offsetof(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2, ___a_3)); }
inline float get_a_3() const { return ___a_3; }
inline float* get_address_of_a_3() { return &___a_3; }
inline void set_a_3(float value)
{
___a_3 = value;
}
};
// UnityEngine.Color32
struct Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.Color32::rgba
int32_t ___rgba_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___rgba_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Byte UnityEngine.Color32::r
uint8_t ___r_1;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___r_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___g_2_OffsetPadding[1];
// System.Byte UnityEngine.Color32::g
uint8_t ___g_2;
};
#pragma pack(pop, tp)
struct
{
char ___g_2_OffsetPadding_forAlignmentOnly[1];
uint8_t ___g_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___b_3_OffsetPadding[2];
// System.Byte UnityEngine.Color32::b
uint8_t ___b_3;
};
#pragma pack(pop, tp)
struct
{
char ___b_3_OffsetPadding_forAlignmentOnly[2];
uint8_t ___b_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___a_4_OffsetPadding[3];
// System.Byte UnityEngine.Color32::a
uint8_t ___a_4;
};
#pragma pack(pop, tp)
struct
{
char ___a_4_OffsetPadding_forAlignmentOnly[3];
uint8_t ___a_4_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_rgba_0() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___rgba_0)); }
inline int32_t get_rgba_0() const { return ___rgba_0; }
inline int32_t* get_address_of_rgba_0() { return &___rgba_0; }
inline void set_rgba_0(int32_t value)
{
___rgba_0 = value;
}
inline static int32_t get_offset_of_r_1() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___r_1)); }
inline uint8_t get_r_1() const { return ___r_1; }
inline uint8_t* get_address_of_r_1() { return &___r_1; }
inline void set_r_1(uint8_t value)
{
___r_1 = value;
}
inline static int32_t get_offset_of_g_2() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___g_2)); }
inline uint8_t get_g_2() const { return ___g_2; }
inline uint8_t* get_address_of_g_2() { return &___g_2; }
inline void set_g_2(uint8_t value)
{
___g_2 = value;
}
inline static int32_t get_offset_of_b_3() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___b_3)); }
inline uint8_t get_b_3() const { return ___b_3; }
inline uint8_t* get_address_of_b_3() { return &___b_3; }
inline void set_b_3(uint8_t value)
{
___b_3 = value;
}
inline static int32_t get_offset_of_a_4() { return static_cast<int32_t>(offsetof(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23, ___a_4)); }
inline uint8_t get_a_4() const { return ___a_4; }
inline uint8_t* get_address_of_a_4() { return &___a_4; }
inline void set_a_4(uint8_t value)
{
___a_4 = value;
}
};
// UnityEngine.EventSystems.BaseEventData
struct BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 : public AbstractEventData_t636F385820C291DAE25897BCEB4FBCADDA3B75F6
{
public:
// UnityEngine.EventSystems.EventSystem UnityEngine.EventSystems.BaseEventData::m_EventSystem
EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * ___m_EventSystem_1;
public:
inline static int32_t get_offset_of_m_EventSystem_1() { return static_cast<int32_t>(offsetof(BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5, ___m_EventSystem_1)); }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * get_m_EventSystem_1() const { return ___m_EventSystem_1; }
inline EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 ** get_address_of_m_EventSystem_1() { return &___m_EventSystem_1; }
inline void set_m_EventSystem_1(EventSystem_t06ACEF1C8D95D44D3A7F57ED4BAA577101B4EA77 * value)
{
___m_EventSystem_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_EventSystem_1), (void*)value);
}
};
// UnityEngine.Experimental.GlobalIllumination.LinearColor
struct LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD
{
public:
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_red
float ___m_red_0;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_green
float ___m_green_1;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_blue
float ___m_blue_2;
// System.Single UnityEngine.Experimental.GlobalIllumination.LinearColor::m_intensity
float ___m_intensity_3;
public:
inline static int32_t get_offset_of_m_red_0() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_red_0)); }
inline float get_m_red_0() const { return ___m_red_0; }
inline float* get_address_of_m_red_0() { return &___m_red_0; }
inline void set_m_red_0(float value)
{
___m_red_0 = value;
}
inline static int32_t get_offset_of_m_green_1() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_green_1)); }
inline float get_m_green_1() const { return ___m_green_1; }
inline float* get_address_of_m_green_1() { return &___m_green_1; }
inline void set_m_green_1(float value)
{
___m_green_1 = value;
}
inline static int32_t get_offset_of_m_blue_2() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_blue_2)); }
inline float get_m_blue_2() const { return ___m_blue_2; }
inline float* get_address_of_m_blue_2() { return &___m_blue_2; }
inline void set_m_blue_2(float value)
{
___m_blue_2 = value;
}
inline static int32_t get_offset_of_m_intensity_3() { return static_cast<int32_t>(offsetof(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD, ___m_intensity_3)); }
inline float get_m_intensity_3() const { return ___m_intensity_3; }
inline float* get_address_of_m_intensity_3() { return &___m_intensity_3; }
inline void set_m_intensity_3(float value)
{
___m_intensity_3 = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord
struct TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA
{
public:
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord::tileX
int32_t ___tileX_0;
// System.Int32 UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord::tileZ
int32_t ___tileZ_1;
public:
inline static int32_t get_offset_of_tileX_0() { return static_cast<int32_t>(offsetof(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, ___tileX_0)); }
inline int32_t get_tileX_0() const { return ___tileX_0; }
inline int32_t* get_address_of_tileX_0() { return &___tileX_0; }
inline void set_tileX_0(int32_t value)
{
___tileX_0 = value;
}
inline static int32_t get_offset_of_tileZ_1() { return static_cast<int32_t>(offsetof(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA, ___tileZ_1)); }
inline int32_t get_tileZ_1() const { return ___tileZ_1; }
inline int32_t* get_address_of_tileZ_1() { return &___tileZ_1; }
inline void set_tileZ_1(int32_t value)
{
___tileZ_1 = value;
}
};
// UnityEngine.Keyframe
struct Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74
{
public:
// System.Single UnityEngine.Keyframe::m_Time
float ___m_Time_0;
// System.Single UnityEngine.Keyframe::m_Value
float ___m_Value_1;
// System.Single UnityEngine.Keyframe::m_InTangent
float ___m_InTangent_2;
// System.Single UnityEngine.Keyframe::m_OutTangent
float ___m_OutTangent_3;
// System.Int32 UnityEngine.Keyframe::m_WeightedMode
int32_t ___m_WeightedMode_4;
// System.Single UnityEngine.Keyframe::m_InWeight
float ___m_InWeight_5;
// System.Single UnityEngine.Keyframe::m_OutWeight
float ___m_OutWeight_6;
public:
inline static int32_t get_offset_of_m_Time_0() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Time_0)); }
inline float get_m_Time_0() const { return ___m_Time_0; }
inline float* get_address_of_m_Time_0() { return &___m_Time_0; }
inline void set_m_Time_0(float value)
{
___m_Time_0 = value;
}
inline static int32_t get_offset_of_m_Value_1() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_Value_1)); }
inline float get_m_Value_1() const { return ___m_Value_1; }
inline float* get_address_of_m_Value_1() { return &___m_Value_1; }
inline void set_m_Value_1(float value)
{
___m_Value_1 = value;
}
inline static int32_t get_offset_of_m_InTangent_2() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InTangent_2)); }
inline float get_m_InTangent_2() const { return ___m_InTangent_2; }
inline float* get_address_of_m_InTangent_2() { return &___m_InTangent_2; }
inline void set_m_InTangent_2(float value)
{
___m_InTangent_2 = value;
}
inline static int32_t get_offset_of_m_OutTangent_3() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutTangent_3)); }
inline float get_m_OutTangent_3() const { return ___m_OutTangent_3; }
inline float* get_address_of_m_OutTangent_3() { return &___m_OutTangent_3; }
inline void set_m_OutTangent_3(float value)
{
___m_OutTangent_3 = value;
}
inline static int32_t get_offset_of_m_WeightedMode_4() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_WeightedMode_4)); }
inline int32_t get_m_WeightedMode_4() const { return ___m_WeightedMode_4; }
inline int32_t* get_address_of_m_WeightedMode_4() { return &___m_WeightedMode_4; }
inline void set_m_WeightedMode_4(int32_t value)
{
___m_WeightedMode_4 = value;
}
inline static int32_t get_offset_of_m_InWeight_5() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_InWeight_5)); }
inline float get_m_InWeight_5() const { return ___m_InWeight_5; }
inline float* get_address_of_m_InWeight_5() { return &___m_InWeight_5; }
inline void set_m_InWeight_5(float value)
{
___m_InWeight_5 = value;
}
inline static int32_t get_offset_of_m_OutWeight_6() { return static_cast<int32_t>(offsetof(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74, ___m_OutWeight_6)); }
inline float get_m_OutWeight_6() const { return ___m_OutWeight_6; }
inline float* get_address_of_m_OutWeight_6() { return &___m_OutWeight_6; }
inline void set_m_OutWeight_6(float value)
{
___m_OutWeight_6 = value;
}
};
// UnityEngine.Matrix4x4
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA
{
public:
// System.Single UnityEngine.Matrix4x4::m00
float ___m00_0;
// System.Single UnityEngine.Matrix4x4::m10
float ___m10_1;
// System.Single UnityEngine.Matrix4x4::m20
float ___m20_2;
// System.Single UnityEngine.Matrix4x4::m30
float ___m30_3;
// System.Single UnityEngine.Matrix4x4::m01
float ___m01_4;
// System.Single UnityEngine.Matrix4x4::m11
float ___m11_5;
// System.Single UnityEngine.Matrix4x4::m21
float ___m21_6;
// System.Single UnityEngine.Matrix4x4::m31
float ___m31_7;
// System.Single UnityEngine.Matrix4x4::m02
float ___m02_8;
// System.Single UnityEngine.Matrix4x4::m12
float ___m12_9;
// System.Single UnityEngine.Matrix4x4::m22
float ___m22_10;
// System.Single UnityEngine.Matrix4x4::m32
float ___m32_11;
// System.Single UnityEngine.Matrix4x4::m03
float ___m03_12;
// System.Single UnityEngine.Matrix4x4::m13
float ___m13_13;
// System.Single UnityEngine.Matrix4x4::m23
float ___m23_14;
// System.Single UnityEngine.Matrix4x4::m33
float ___m33_15;
public:
inline static int32_t get_offset_of_m00_0() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m00_0)); }
inline float get_m00_0() const { return ___m00_0; }
inline float* get_address_of_m00_0() { return &___m00_0; }
inline void set_m00_0(float value)
{
___m00_0 = value;
}
inline static int32_t get_offset_of_m10_1() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m10_1)); }
inline float get_m10_1() const { return ___m10_1; }
inline float* get_address_of_m10_1() { return &___m10_1; }
inline void set_m10_1(float value)
{
___m10_1 = value;
}
inline static int32_t get_offset_of_m20_2() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m20_2)); }
inline float get_m20_2() const { return ___m20_2; }
inline float* get_address_of_m20_2() { return &___m20_2; }
inline void set_m20_2(float value)
{
___m20_2 = value;
}
inline static int32_t get_offset_of_m30_3() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m30_3)); }
inline float get_m30_3() const { return ___m30_3; }
inline float* get_address_of_m30_3() { return &___m30_3; }
inline void set_m30_3(float value)
{
___m30_3 = value;
}
inline static int32_t get_offset_of_m01_4() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m01_4)); }
inline float get_m01_4() const { return ___m01_4; }
inline float* get_address_of_m01_4() { return &___m01_4; }
inline void set_m01_4(float value)
{
___m01_4 = value;
}
inline static int32_t get_offset_of_m11_5() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m11_5)); }
inline float get_m11_5() const { return ___m11_5; }
inline float* get_address_of_m11_5() { return &___m11_5; }
inline void set_m11_5(float value)
{
___m11_5 = value;
}
inline static int32_t get_offset_of_m21_6() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m21_6)); }
inline float get_m21_6() const { return ___m21_6; }
inline float* get_address_of_m21_6() { return &___m21_6; }
inline void set_m21_6(float value)
{
___m21_6 = value;
}
inline static int32_t get_offset_of_m31_7() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m31_7)); }
inline float get_m31_7() const { return ___m31_7; }
inline float* get_address_of_m31_7() { return &___m31_7; }
inline void set_m31_7(float value)
{
___m31_7 = value;
}
inline static int32_t get_offset_of_m02_8() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m02_8)); }
inline float get_m02_8() const { return ___m02_8; }
inline float* get_address_of_m02_8() { return &___m02_8; }
inline void set_m02_8(float value)
{
___m02_8 = value;
}
inline static int32_t get_offset_of_m12_9() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m12_9)); }
inline float get_m12_9() const { return ___m12_9; }
inline float* get_address_of_m12_9() { return &___m12_9; }
inline void set_m12_9(float value)
{
___m12_9 = value;
}
inline static int32_t get_offset_of_m22_10() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m22_10)); }
inline float get_m22_10() const { return ___m22_10; }
inline float* get_address_of_m22_10() { return &___m22_10; }
inline void set_m22_10(float value)
{
___m22_10 = value;
}
inline static int32_t get_offset_of_m32_11() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m32_11)); }
inline float get_m32_11() const { return ___m32_11; }
inline float* get_address_of_m32_11() { return &___m32_11; }
inline void set_m32_11(float value)
{
___m32_11 = value;
}
inline static int32_t get_offset_of_m03_12() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m03_12)); }
inline float get_m03_12() const { return ___m03_12; }
inline float* get_address_of_m03_12() { return &___m03_12; }
inline void set_m03_12(float value)
{
___m03_12 = value;
}
inline static int32_t get_offset_of_m13_13() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m13_13)); }
inline float get_m13_13() const { return ___m13_13; }
inline float* get_address_of_m13_13() { return &___m13_13; }
inline void set_m13_13(float value)
{
___m13_13 = value;
}
inline static int32_t get_offset_of_m23_14() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m23_14)); }
inline float get_m23_14() const { return ___m23_14; }
inline float* get_address_of_m23_14() { return &___m23_14; }
inline void set_m23_14(float value)
{
___m23_14 = value;
}
inline static int32_t get_offset_of_m33_15() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA, ___m33_15)); }
inline float get_m33_15() const { return ___m33_15; }
inline float* get_address_of_m33_15() { return &___m33_15; }
inline void set_m33_15(float value)
{
___m33_15 = value;
}
};
struct Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields
{
public:
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___zeroMatrix_16;
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___identityMatrix_17;
public:
inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___zeroMatrix_16)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_zeroMatrix_16() const { return ___zeroMatrix_16; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; }
inline void set_zeroMatrix_16(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___zeroMatrix_16 = value;
}
inline static int32_t get_offset_of_identityMatrix_17() { return static_cast<int32_t>(offsetof(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_StaticFields, ___identityMatrix_17)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_identityMatrix_17() const { return ___identityMatrix_17; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_identityMatrix_17() { return &___identityMatrix_17; }
inline void set_identityMatrix_17(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___identityMatrix_17 = value;
}
};
// UnityEngine.Quaternion
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357
{
public:
// System.Single UnityEngine.Quaternion::x
float ___x_0;
// System.Single UnityEngine.Quaternion::y
float ___y_1;
// System.Single UnityEngine.Quaternion::z
float ___z_2;
// System.Single UnityEngine.Quaternion::w
float ___w_3;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
inline static int32_t get_offset_of_z_2() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___z_2)); }
inline float get_z_2() const { return ___z_2; }
inline float* get_address_of_z_2() { return &___z_2; }
inline void set_z_2(float value)
{
___z_2 = value;
}
inline static int32_t get_offset_of_w_3() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357, ___w_3)); }
inline float get_w_3() const { return ___w_3; }
inline float* get_address_of_w_3() { return &___w_3; }
inline void set_w_3(float value)
{
___w_3 = value;
}
};
struct Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields
{
public:
// UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___identityQuaternion_4;
public:
inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast<int32_t>(offsetof(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357_StaticFields, ___identityQuaternion_4)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_identityQuaternion_4() const { return ___identityQuaternion_4; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; }
inline void set_identityQuaternion_4(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___identityQuaternion_4 = value;
}
};
// UnityEngine.Rendering.BatchVisibility
struct BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062
{
public:
// System.Int32 UnityEngine.Rendering.BatchVisibility::offset
int32_t ___offset_0;
// System.Int32 UnityEngine.Rendering.BatchVisibility::instancesCount
int32_t ___instancesCount_1;
// System.Int32 UnityEngine.Rendering.BatchVisibility::visibleCount
int32_t ___visibleCount_2;
public:
inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___offset_0)); }
inline int32_t get_offset_0() const { return ___offset_0; }
inline int32_t* get_address_of_offset_0() { return &___offset_0; }
inline void set_offset_0(int32_t value)
{
___offset_0 = value;
}
inline static int32_t get_offset_of_instancesCount_1() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___instancesCount_1)); }
inline int32_t get_instancesCount_1() const { return ___instancesCount_1; }
inline int32_t* get_address_of_instancesCount_1() { return &___instancesCount_1; }
inline void set_instancesCount_1(int32_t value)
{
___instancesCount_1 = value;
}
inline static int32_t get_offset_of_visibleCount_2() { return static_cast<int32_t>(offsetof(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062, ___visibleCount_2)); }
inline int32_t get_visibleCount_2() const { return ___visibleCount_2; }
inline int32_t* get_address_of_visibleCount_2() { return &___visibleCount_2; }
inline void set_visibleCount_2(int32_t value)
{
___visibleCount_2 = value;
}
};
// UnityEngine.SendMouseEvents_HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746
{
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_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___target_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_target_0() const { return ___target_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_target_0() { return &___target_0; }
inline void set_target_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___target_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_0), (void*)value);
}
inline static int32_t get_offset_of_camera_1() { return static_cast<int32_t>(offsetof(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746, ___camera_1)); }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * get_camera_1() const { return ___camera_1; }
inline Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 ** get_address_of_camera_1() { return &___camera_1; }
inline void set_camera_1(Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * value)
{
___camera_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___camera_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// Native definition for COM marshalling of UnityEngine.SendMouseEvents/HitInfo
struct HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_marshaled_com
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target_0;
Camera_t48B2B9ECB3CE6108A98BF949A1CECF0FE3421F34 * ___camera_1;
};
// 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;
}
};
// 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;
}
};
// 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;
}
};
// UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A
{
public:
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_HighlightedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_PressedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_SelectedSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
// UnityEngine.Sprite UnityEngine.UI.SpriteState::m_DisabledSprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
public:
inline static int32_t get_offset_of_m_HighlightedSprite_0() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_HighlightedSprite_0)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_HighlightedSprite_0() const { return ___m_HighlightedSprite_0; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_HighlightedSprite_0() { return &___m_HighlightedSprite_0; }
inline void set_m_HighlightedSprite_0(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_HighlightedSprite_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_HighlightedSprite_0), (void*)value);
}
inline static int32_t get_offset_of_m_PressedSprite_1() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_PressedSprite_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_PressedSprite_1() const { return ___m_PressedSprite_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_PressedSprite_1() { return &___m_PressedSprite_1; }
inline void set_m_PressedSprite_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_PressedSprite_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PressedSprite_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectedSprite_2() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_SelectedSprite_2)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_SelectedSprite_2() const { return ___m_SelectedSprite_2; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_SelectedSprite_2() { return &___m_SelectedSprite_2; }
inline void set_m_SelectedSprite_2(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_SelectedSprite_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectedSprite_2), (void*)value);
}
inline static int32_t get_offset_of_m_DisabledSprite_3() { return static_cast<int32_t>(offsetof(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A, ___m_DisabledSprite_3)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_DisabledSprite_3() const { return ___m_DisabledSprite_3; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_DisabledSprite_3() { return &___m_DisabledSprite_3; }
inline void set_m_DisabledSprite_3(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_DisabledSprite_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DisabledSprite_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_pinvoke
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// Native definition for COM marshalling of UnityEngine.UI.SpriteState
struct SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_marshaled_com
{
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_HighlightedSprite_0;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_PressedSprite_1;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_SelectedSprite_2;
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_DisabledSprite_3;
};
// UnityEngine.UIElements.EventDispatcher_DispatchContext
struct DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA
{
public:
// System.UInt32 UnityEngine.UIElements.EventDispatcher_DispatchContext::m_GateCount
uint32_t ___m_GateCount_0;
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher_EventRecord> UnityEngine.UIElements.EventDispatcher_DispatchContext::m_Queue
Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * ___m_Queue_1;
public:
inline static int32_t get_offset_of_m_GateCount_0() { return static_cast<int32_t>(offsetof(DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA, ___m_GateCount_0)); }
inline uint32_t get_m_GateCount_0() const { return ___m_GateCount_0; }
inline uint32_t* get_address_of_m_GateCount_0() { return &___m_GateCount_0; }
inline void set_m_GateCount_0(uint32_t value)
{
___m_GateCount_0 = value;
}
inline static int32_t get_offset_of_m_Queue_1() { return static_cast<int32_t>(offsetof(DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA, ___m_Queue_1)); }
inline Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * get_m_Queue_1() const { return ___m_Queue_1; }
inline Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 ** get_address_of_m_Queue_1() { return &___m_Queue_1; }
inline void set_m_Queue_1(Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * value)
{
___m_Queue_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Queue_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcher/DispatchContext
struct DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_marshaled_pinvoke
{
uint32_t ___m_GateCount_0;
Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * ___m_Queue_1;
};
// Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcher/DispatchContext
struct DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_marshaled_com
{
uint32_t ___m_GateCount_0;
Queue_1_t8014B4CCF79F7768A767C8013F6E176588BE8871 * ___m_Queue_1;
};
// UnityEngine.UIElements.EventDispatcher_EventRecord
struct EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9
{
public:
// UnityEngine.UIElements.EventBase UnityEngine.UIElements.EventDispatcher_EventRecord::m_Event
EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * ___m_Event_0;
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.EventDispatcher_EventRecord::m_Panel
RuntimeObject* ___m_Panel_1;
public:
inline static int32_t get_offset_of_m_Event_0() { return static_cast<int32_t>(offsetof(EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9, ___m_Event_0)); }
inline EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * get_m_Event_0() const { return ___m_Event_0; }
inline EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD ** get_address_of_m_Event_0() { return &___m_Event_0; }
inline void set_m_Event_0(EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * value)
{
___m_Event_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Event_0), (void*)value);
}
inline static int32_t get_offset_of_m_Panel_1() { return static_cast<int32_t>(offsetof(EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9, ___m_Panel_1)); }
inline RuntimeObject* get_m_Panel_1() const { return ___m_Panel_1; }
inline RuntimeObject** get_address_of_m_Panel_1() { return &___m_Panel_1; }
inline void set_m_Panel_1(RuntimeObject* value)
{
___m_Panel_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Panel_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcher/EventRecord
struct EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_marshaled_pinvoke
{
EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * ___m_Event_0;
RuntimeObject* ___m_Panel_1;
};
// Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcher/EventRecord
struct EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_marshaled_com
{
EventBase_t0292727F923C187143EFD8B7E78B2A3FB5EFF0CD * ___m_Event_0;
RuntimeObject* ___m_Panel_1;
};
// UnityEngine.UIElements.FocusController_FocusedElement
struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070
{
public:
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.FocusController_FocusedElement::m_SubTreeRoot
VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0;
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController_FocusedElement::m_FocusedElement
Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1;
public:
inline static int32_t get_offset_of_m_SubTreeRoot_0() { return static_cast<int32_t>(offsetof(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070, ___m_SubTreeRoot_0)); }
inline VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * get_m_SubTreeRoot_0() const { return ___m_SubTreeRoot_0; }
inline VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 ** get_address_of_m_SubTreeRoot_0() { return &___m_SubTreeRoot_0; }
inline void set_m_SubTreeRoot_0(VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * value)
{
___m_SubTreeRoot_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SubTreeRoot_0), (void*)value);
}
inline static int32_t get_offset_of_m_FocusedElement_1() { return static_cast<int32_t>(offsetof(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070, ___m_FocusedElement_1)); }
inline Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * get_m_FocusedElement_1() const { return ___m_FocusedElement_1; }
inline Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B ** get_address_of_m_FocusedElement_1() { return &___m_FocusedElement_1; }
inline void set_m_FocusedElement_1(Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * value)
{
___m_FocusedElement_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_FocusedElement_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.FocusController/FocusedElement
struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_marshaled_pinvoke
{
VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0;
Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1;
};
// Native definition for COM marshalling of UnityEngine.UIElements.FocusController/FocusedElement
struct FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_marshaled_com
{
VisualElement_t0EB50F3AD9103B6EEB58682651950BE7C7A4AD57 * ___m_SubTreeRoot_0;
Focusable_tE75872B8E11B244036F83AB8FFBB20F782F19C6B * ___m_FocusedElement_1;
};
// UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey
struct SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0
{
public:
// System.Int32 UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey::sheetInstanceID
int32_t ___sheetInstanceID_0;
// System.Int32 UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey::index
int32_t ___index_1;
public:
inline static int32_t get_offset_of_sheetInstanceID_0() { return static_cast<int32_t>(offsetof(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0, ___sheetInstanceID_0)); }
inline int32_t get_sheetInstanceID_0() const { return ___sheetInstanceID_0; }
inline int32_t* get_address_of_sheetInstanceID_0() { return &___sheetInstanceID_0; }
inline void set_sheetInstanceID_0(int32_t value)
{
___sheetInstanceID_0 = value;
}
inline static int32_t get_offset_of_index_1() { return static_cast<int32_t>(offsetof(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0, ___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;
}
};
// UnityEngine.UILineInfo
struct UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6
{
public:
// System.Int32 UnityEngine.UILineInfo::startCharIdx
int32_t ___startCharIdx_0;
// System.Int32 UnityEngine.UILineInfo::height
int32_t ___height_1;
// System.Single UnityEngine.UILineInfo::topY
float ___topY_2;
// System.Single UnityEngine.UILineInfo::leading
float ___leading_3;
public:
inline static int32_t get_offset_of_startCharIdx_0() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___startCharIdx_0)); }
inline int32_t get_startCharIdx_0() const { return ___startCharIdx_0; }
inline int32_t* get_address_of_startCharIdx_0() { return &___startCharIdx_0; }
inline void set_startCharIdx_0(int32_t value)
{
___startCharIdx_0 = value;
}
inline static int32_t get_offset_of_height_1() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___height_1)); }
inline int32_t get_height_1() const { return ___height_1; }
inline int32_t* get_address_of_height_1() { return &___height_1; }
inline void set_height_1(int32_t value)
{
___height_1 = value;
}
inline static int32_t get_offset_of_topY_2() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___topY_2)); }
inline float get_topY_2() const { return ___topY_2; }
inline float* get_address_of_topY_2() { return &___topY_2; }
inline void set_topY_2(float value)
{
___topY_2 = value;
}
inline static int32_t get_offset_of_leading_3() { return static_cast<int32_t>(offsetof(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6, ___leading_3)); }
inline float get_leading_3() const { return ___leading_3; }
inline float* get_address_of_leading_3() { return &___leading_3; }
inline void set_leading_3(float value)
{
___leading_3 = value;
}
};
// UnityEngine.UnitySynchronizationContext_WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94
{
public:
// System.Threading.SendOrPostCallback UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateCallback
SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * ___m_DelagateCallback_0;
// System.Object UnityEngine.UnitySynchronizationContext_WorkRequest::m_DelagateState
RuntimeObject * ___m_DelagateState_1;
// System.Threading.ManualResetEvent UnityEngine.UnitySynchronizationContext_WorkRequest::m_WaitHandle
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
public:
inline static int32_t get_offset_of_m_DelagateCallback_0() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateCallback_0)); }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * get_m_DelagateCallback_0() const { return ___m_DelagateCallback_0; }
inline SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 ** get_address_of_m_DelagateCallback_0() { return &___m_DelagateCallback_0; }
inline void set_m_DelagateCallback_0(SendOrPostCallback_t3F9C0164860E4AA5138DF8B4488DFB0D33147F01 * value)
{
___m_DelagateCallback_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateCallback_0), (void*)value);
}
inline static int32_t get_offset_of_m_DelagateState_1() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_DelagateState_1)); }
inline RuntimeObject * get_m_DelagateState_1() const { return ___m_DelagateState_1; }
inline RuntimeObject ** get_address_of_m_DelagateState_1() { return &___m_DelagateState_1; }
inline void set_m_DelagateState_1(RuntimeObject * value)
{
___m_DelagateState_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DelagateState_1), (void*)value);
}
inline static int32_t get_offset_of_m_WaitHandle_2() { return static_cast<int32_t>(offsetof(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94, ___m_WaitHandle_2)); }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * get_m_WaitHandle_2() const { return ___m_WaitHandle_2; }
inline ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 ** get_address_of_m_WaitHandle_2() { return &___m_WaitHandle_2; }
inline void set_m_WaitHandle_2(ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * value)
{
___m_WaitHandle_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_WaitHandle_2), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_pinvoke
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// Native definition for COM marshalling of UnityEngine.UnitySynchronizationContext/WorkRequest
struct WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_marshaled_com
{
Il2CppMethodPointer ___m_DelagateCallback_0;
Il2CppIUnknown* ___m_DelagateState_1;
ManualResetEvent_tDFAF117B200ECA4CCF4FD09593F949A016D55408 * ___m_WaitHandle_2;
};
// UnityEngine.Vector2
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___zeroVector_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___oneVector_3)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___upVector_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_upVector_4() const { return ___upVector_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___downVector_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_downVector_5() const { return ___downVector_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___leftVector_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___rightVector_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector3
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___zeroVector_5)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___oneVector_6)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___upVector_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_upVector_7() const { return ___upVector_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___downVector_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_downVector_8() const { return ___downVector_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___leftVector_9)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___rightVector_10)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___forwardVector_11)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___backVector_12)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_backVector_12() const { return ___backVector_12; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___negativeInfinityVector_14 = value;
}
};
// UnityEngine.Vector4
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E
{
public:
// System.Single UnityEngine.Vector4::x
float ___x_1;
// System.Single UnityEngine.Vector4::y
float ___y_2;
// System.Single UnityEngine.Vector4::z
float ___z_3;
// System.Single UnityEngine.Vector4::w
float ___w_4;
public:
inline static int32_t get_offset_of_x_1() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___x_1)); }
inline float get_x_1() const { return ___x_1; }
inline float* get_address_of_x_1() { return &___x_1; }
inline void set_x_1(float value)
{
___x_1 = value;
}
inline static int32_t get_offset_of_y_2() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___y_2)); }
inline float get_y_2() const { return ___y_2; }
inline float* get_address_of_y_2() { return &___y_2; }
inline void set_y_2(float value)
{
___y_2 = value;
}
inline static int32_t get_offset_of_z_3() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___z_3)); }
inline float get_z_3() const { return ___z_3; }
inline float* get_address_of_z_3() { return &___z_3; }
inline void set_z_3(float value)
{
___z_3 = value;
}
inline static int32_t get_offset_of_w_4() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E, ___w_4)); }
inline float get_w_4() const { return ___w_4; }
inline float* get_address_of_w_4() { return &___w_4; }
inline void set_w_4(float value)
{
___w_4 = value;
}
};
struct Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields
{
public:
// UnityEngine.Vector4 UnityEngine.Vector4::zeroVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___zeroVector_5;
// UnityEngine.Vector4 UnityEngine.Vector4::oneVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___oneVector_6;
// UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___positiveInfinityVector_7;
// UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___negativeInfinityVector_8;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___zeroVector_5)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___oneVector_6)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_oneVector_6() const { return ___oneVector_6; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___positiveInfinityVector_7)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; }
inline void set_positiveInfinityVector_7(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___positiveInfinityVector_7 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_StaticFields, ___negativeInfinityVector_8)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; }
inline void set_negativeInfinityVector_8(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___negativeInfinityVector_8 = value;
}
};
// UnityEngine.Windows.Speech.SemanticMeaning
struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C
{
public:
// System.String UnityEngine.Windows.Speech.SemanticMeaning::key
String_t* ___key_0;
// System.String[] UnityEngine.Windows.Speech.SemanticMeaning::values
StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___values_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, ___key_0)); }
inline String_t* get_key_0() const { return ___key_0; }
inline String_t** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(String_t* value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_values_1() { return static_cast<int32_t>(offsetof(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C, ___values_1)); }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_values_1() const { return ___values_1; }
inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_values_1() { return &___values_1; }
inline void set_values_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value)
{
___values_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___values_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Windows.Speech.SemanticMeaning
struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_pinvoke
{
char* ___key_0;
char** ___values_1;
};
// Native definition for COM marshalling of UnityEngine.Windows.Speech.SemanticMeaning
struct SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_marshaled_com
{
Il2CppChar* ___key_0;
Il2CppChar** ___values_1;
};
// System.Collections.Generic.Dictionary`2_Entry<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>
struct Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6
{
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
ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D ___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_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6, ___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_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6, ___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_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6, ___key_2)); }
inline ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D get_key_2() const { return ___key_2; }
inline ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_2))->___msgType_0), (void*)NULL);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>
struct Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
RuntimeObject * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D, ___value_3)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_3() const { return ___value_3; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_3() { return &___value_3; }
inline void set_value_3(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_3))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>
struct Entry_t687188C87EF1FD0D50038E634676DBC449857B8E
{
public:
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::hashCode
int32_t ___hashCode_0;
// System.Int32 System.Collections.Generic.Dictionary`2_Entry::next
int32_t ___next_1;
// TKey System.Collections.Generic.Dictionary`2_Entry::key
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
RuntimeObject * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, ___next_1)); }
inline int32_t get_next_1() const { return ___next_1; }
inline int32_t* get_address_of_next_1() { return &___next_1; }
inline void set_next_1(int32_t value)
{
___next_1 = value;
}
inline static int32_t get_offset_of_key_2() { return static_cast<int32_t>(offsetof(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, ___key_2)); }
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA get_key_2() const { return ___key_2; }
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>
struct Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E
{
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
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 ___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_t64D38FA2992140132BE596DFDC676DAAB56D9A1E, ___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_t64D38FA2992140132BE596DFDC676DAAB56D9A1E, ___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_t64D38FA2992140132BE596DFDC676DAAB56D9A1E, ___key_2)); }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 get_key_2() const { return ___key_2; }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>
struct Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8
{
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
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 ___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_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8, ___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_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8, ___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_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8, ___key_2)); }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 get_key_2() const { return ___key_2; }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 * get_address_of_key_2() { return &___key_2; }
inline void set_key_2(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 value)
{
___key_2 = value;
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8, ___value_3)); }
inline RuntimeObject * get_value_3() const { return ___value_3; }
inline RuntimeObject ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(RuntimeObject * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>
struct KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D ___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_t150941F781F5C0219943CA6E47663CDE1CBA4781, ___key_0)); }
inline ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D get_key_0() const { return ___key_0; }
inline ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___key_0))->___msgType_0), (void*)NULL);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>
struct KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
RuntimeObject * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___key_0)); }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 get_key_0() const { return ___key_0; }
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>
struct KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Guid_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_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___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_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.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((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>
struct KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6, ___value_1)); }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C get_value_1() const { return ___value_1; }
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * get_address_of_value_1() { return &___value_1; }
inline void set_value_1(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___value_1))->____value_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>
struct KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342
{
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_t198F3EF99C5CB706B8E678896CA900035FACF342, ___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_t198F3EF99C5CB706B8E678896CA900035FACF342, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>
struct KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 ___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_t72B1B50F3096E7CDC6F0711317B81F69BB278E96, ___key_0)); }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 get_key_0() const { return ___key_0; }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>
struct KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 ___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_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA, ___key_0)); }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 get_key_0() const { return ___key_0; }
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 * get_address_of_key_0() { return &___key_0; }
inline void set_key_0(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 value)
{
___key_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Delegate
struct Delegate_t : public RuntimeObject
{
public:
// System.IntPtr System.Delegate::method_ptr
Il2CppMethodPointer ___method_ptr_0;
// System.IntPtr System.Delegate::invoke_impl
intptr_t ___invoke_impl_1;
// System.Object System.Delegate::m_target
RuntimeObject * ___m_target_2;
// System.IntPtr System.Delegate::method
intptr_t ___method_3;
// System.IntPtr System.Delegate::delegate_trampoline
intptr_t ___delegate_trampoline_4;
// System.IntPtr System.Delegate::extra_arg
intptr_t ___extra_arg_5;
// System.IntPtr System.Delegate::method_code
intptr_t ___method_code_6;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_7;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_8;
// System.DelegateData System.Delegate::data
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
// System.Boolean System.Delegate::method_is_virtual
bool ___method_is_virtual_10;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); }
inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; }
inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; }
inline void set_method_ptr_0(Il2CppMethodPointer value)
{
___method_ptr_0 = value;
}
inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); }
inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; }
inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; }
inline void set_invoke_impl_1(intptr_t value)
{
___invoke_impl_1 = value;
}
inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); }
inline RuntimeObject * get_m_target_2() const { return ___m_target_2; }
inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; }
inline void set_m_target_2(RuntimeObject * value)
{
___m_target_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); }
inline intptr_t get_method_3() const { return ___method_3; }
inline intptr_t* get_address_of_method_3() { return &___method_3; }
inline void set_method_3(intptr_t value)
{
___method_3 = value;
}
inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); }
inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; }
inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; }
inline void set_delegate_trampoline_4(intptr_t value)
{
___delegate_trampoline_4 = value;
}
inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); }
inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; }
inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; }
inline void set_extra_arg_5(intptr_t value)
{
___extra_arg_5 = value;
}
inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); }
inline intptr_t get_method_code_6() const { return ___method_code_6; }
inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; }
inline void set_method_code_6(intptr_t value)
{
___method_code_6 = value;
}
inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); }
inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; }
inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; }
inline void set_method_info_7(MethodInfo_t * value)
{
___method_info_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value);
}
inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); }
inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; }
inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; }
inline void set_original_method_info_8(MethodInfo_t * value)
{
___original_method_info_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value);
}
inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; }
inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; }
inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value)
{
___data_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value);
}
inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); }
inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; }
inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; }
inline void set_method_is_virtual_10(bool value)
{
___method_is_virtual_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Delegate
struct Delegate_t_marshaled_pinvoke
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// Native definition for COM marshalling of System.Delegate
struct Delegate_t_marshaled_com
{
intptr_t ___method_ptr_0;
intptr_t ___invoke_impl_1;
Il2CppIUnknown* ___m_target_2;
intptr_t ___method_3;
intptr_t ___delegate_trampoline_4;
intptr_t ___extra_arg_5;
intptr_t ___method_code_6;
MethodInfo_t * ___method_info_7;
MethodInfo_t * ___original_method_info_8;
DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9;
int32_t ___method_is_virtual_10;
};
// System.Diagnostics.Tracing.EventActivityOptions
struct EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168
{
public:
// System.Int32 System.Diagnostics.Tracing.EventActivityOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventActivityOptions_t929DC56692200C1AE8FD9194A2510B6149D69168, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Diagnostics.Tracing.EventTags
struct EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712
{
public:
// System.Int32 System.Diagnostics.Tracing.EventTags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(EventTags_t886E6B89C75F05A5BA40FBC96790AA6C5F24A712, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.String System.Exception::_className
String_t* ____className_1;
// System.String System.Exception::_message
String_t* ____message_2;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_3;
// System.Exception System.Exception::_innerException
Exception_t * ____innerException_4;
// System.String System.Exception::_helpURL
String_t* ____helpURL_5;
// System.Object System.Exception::_stackTrace
RuntimeObject * ____stackTrace_6;
// System.String System.Exception::_stackTraceString
String_t* ____stackTraceString_7;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_8;
// System.Int32 System.Exception::_remoteStackIndex
int32_t ____remoteStackIndex_9;
// System.Object System.Exception::_dynamicMethods
RuntimeObject * ____dynamicMethods_10;
// System.Int32 System.Exception::_HResult
int32_t ____HResult_11;
// System.String System.Exception::_source
String_t* ____source_12;
// System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
// System.Diagnostics.StackTrace[] System.Exception::captured_traces
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
// System.IntPtr[] System.Exception::native_trace_ips
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15;
public:
inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); }
inline String_t* get__className_1() const { return ____className_1; }
inline String_t** get_address_of__className_1() { return &____className_1; }
inline void set__className_1(String_t* value)
{
____className_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value);
}
inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); }
inline String_t* get__message_2() const { return ____message_2; }
inline String_t** get_address_of__message_2() { return &____message_2; }
inline void set__message_2(String_t* value)
{
____message_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value);
}
inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); }
inline RuntimeObject* get__data_3() const { return ____data_3; }
inline RuntimeObject** get_address_of__data_3() { return &____data_3; }
inline void set__data_3(RuntimeObject* value)
{
____data_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value);
}
inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); }
inline Exception_t * get__innerException_4() const { return ____innerException_4; }
inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; }
inline void set__innerException_4(Exception_t * value)
{
____innerException_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value);
}
inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); }
inline String_t* get__helpURL_5() const { return ____helpURL_5; }
inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; }
inline void set__helpURL_5(String_t* value)
{
____helpURL_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value);
}
inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); }
inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; }
inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; }
inline void set__stackTrace_6(RuntimeObject * value)
{
____stackTrace_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value);
}
inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); }
inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; }
inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; }
inline void set__stackTraceString_7(String_t* value)
{
____stackTraceString_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value);
}
inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); }
inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; }
inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; }
inline void set__remoteStackTraceString_8(String_t* value)
{
____remoteStackTraceString_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value);
}
inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); }
inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; }
inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; }
inline void set__remoteStackIndex_9(int32_t value)
{
____remoteStackIndex_9 = value;
}
inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); }
inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; }
inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; }
inline void set__dynamicMethods_10(RuntimeObject * value)
{
____dynamicMethods_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value);
}
inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); }
inline int32_t get__HResult_11() const { return ____HResult_11; }
inline int32_t* get_address_of__HResult_11() { return &____HResult_11; }
inline void set__HResult_11(int32_t value)
{
____HResult_11 = value;
}
inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); }
inline String_t* get__source_12() const { return ____source_12; }
inline String_t** get_address_of__source_12() { return &____source_12; }
inline void set__source_12(String_t* value)
{
____source_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value);
}
inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; }
inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; }
inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value)
{
____safeSerializationManager_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value);
}
inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; }
inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; }
inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value)
{
___captured_traces_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value);
}
inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; }
inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; }
inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value)
{
___native_trace_ips_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value);
}
};
struct Exception_t_StaticFields
{
public:
// System.Object System.Exception::s_EDILock
RuntimeObject * ___s_EDILock_0;
public:
inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); }
inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; }
inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; }
inline void set_s_EDILock_0(RuntimeObject * value)
{
___s_EDILock_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Exception
struct Exception_t_marshaled_pinvoke
{
char* ____className_1;
char* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_pinvoke* ____innerException_4;
char* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
char* ____stackTraceString_7;
char* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
char* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// Native definition for COM marshalling of System.Exception
struct Exception_t_marshaled_com
{
Il2CppChar* ____className_1;
Il2CppChar* ____message_2;
RuntimeObject* ____data_3;
Exception_t_marshaled_com* ____innerException_4;
Il2CppChar* ____helpURL_5;
Il2CppIUnknown* ____stackTrace_6;
Il2CppChar* ____stackTraceString_7;
Il2CppChar* ____remoteStackTraceString_8;
int32_t ____remoteStackIndex_9;
Il2CppIUnknown* ____dynamicMethods_10;
int32_t ____HResult_11;
Il2CppChar* ____source_12;
SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13;
StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14;
Il2CppSafeArray/*NONE*/* ___native_trace_ips_15;
};
// System.Int32Enum
struct Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD
{
public:
// System.Int32 System.Int32Enum::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Int32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.BindingFlags
struct BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(BindingFlags_tE35C91D046E63A1B92BB9AB909FCF9DA84379ED0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___typedArgument_0;
// System.Reflection.MemberInfo System.Reflection.CustomAttributeNamedArgument::memberInfo
MemberInfo_t * ___memberInfo_1;
public:
inline static int32_t get_offset_of_typedArgument_0() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
___typedArgument_0 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___typedArgument_0))->___value_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E, ___memberInfo_1)); }
inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; }
inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; }
inline void set_memberInfo_1(MemberInfo_t * value)
{
___memberInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___memberInfo_1), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_pinvoke
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_marshaled_com
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// System.Reflection.PInfo
struct PInfo_tACD8A5FBDB18A8362483985E0F90A0D66781986B
{
public:
// System.Int32 System.Reflection.PInfo::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PInfo_tACD8A5FBDB18A8362483985E0F90A0D66781986B, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.PropertyAttributes
struct PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C
{
public:
// System.Int32 System.Reflection.PropertyAttributes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PropertyAttributes_t4301E7E94CEE49B5C03DF6D72B38B7940040FE6C, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.Reflection.RuntimePropertyInfo
struct RuntimePropertyInfo_t241956A29299F26A2F8B8829685E9D1F0345C5E4 : public PropertyInfo_t
{
public:
public:
};
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D
{
public:
// System.IntPtr System.RuntimeTypeHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D, ___value_0)); }
inline intptr_t get_value_0() const { return ___value_0; }
inline intptr_t* get_address_of_value_0() { return &___value_0; }
inline void set_value_0(intptr_t value)
{
___value_0 = value;
}
};
// System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2
{
public:
// System.Threading.CancellationCallbackInfo System.Threading.CancellationTokenRegistration::m_callbackInfo
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
// System.Threading.SparselyPopulatedArrayAddInfo`1<System.Threading.CancellationCallbackInfo> System.Threading.CancellationTokenRegistration::m_registrationInfo
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
public:
inline static int32_t get_offset_of_m_callbackInfo_0() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_callbackInfo_0)); }
inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * get_m_callbackInfo_0() const { return ___m_callbackInfo_0; }
inline CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 ** get_address_of_m_callbackInfo_0() { return &___m_callbackInfo_0; }
inline void set_m_callbackInfo_0(CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * value)
{
___m_callbackInfo_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_callbackInfo_0), (void*)value);
}
inline static int32_t get_offset_of_m_registrationInfo_1() { return static_cast<int32_t>(offsetof(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2, ___m_registrationInfo_1)); }
inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE get_m_registrationInfo_1() const { return ___m_registrationInfo_1; }
inline SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE * get_address_of_m_registrationInfo_1() { return &___m_registrationInfo_1; }
inline void set_m_registrationInfo_1(SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE value)
{
___m_registrationInfo_1 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_registrationInfo_1))->___m_source_0), (void*)NULL);
}
};
// Native definition for P/Invoke marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_pinvoke
{
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
};
// Native definition for COM marshalling of System.Threading.CancellationTokenRegistration
struct CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_marshaled_com
{
CancellationCallbackInfo_t8CDEA0AA9C9D1A2321FE2F88878F4B5E0901CF36 * ___m_callbackInfo_0;
SparselyPopulatedArrayAddInfo_1_t0A76BDD84EBF76BEF894419FC221D25BB3D4FBEE ___m_registrationInfo_1;
};
// System.Threading.Tasks.Task
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 : public RuntimeObject
{
public:
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_taskId
int32_t ___m_taskId_4;
// System.Object System.Threading.Tasks.Task::m_action
RuntimeObject * ___m_action_5;
// System.Object System.Threading.Tasks.Task::m_stateObject
RuntimeObject * ___m_stateObject_6;
// System.Threading.Tasks.TaskScheduler System.Threading.Tasks.Task::m_taskScheduler
TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * ___m_taskScheduler_7;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::m_parent
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___m_parent_8;
// System.Int32 modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_stateFlags
int32_t ___m_stateFlags_9;
// System.Object modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_continuationObject
RuntimeObject * ___m_continuationObject_10;
// System.Threading.Tasks.Task_ContingentProperties modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.Tasks.Task::m_contingentProperties
ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * ___m_contingentProperties_15;
public:
inline static int32_t get_offset_of_m_taskId_4() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskId_4)); }
inline int32_t get_m_taskId_4() const { return ___m_taskId_4; }
inline int32_t* get_address_of_m_taskId_4() { return &___m_taskId_4; }
inline void set_m_taskId_4(int32_t value)
{
___m_taskId_4 = value;
}
inline static int32_t get_offset_of_m_action_5() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_action_5)); }
inline RuntimeObject * get_m_action_5() const { return ___m_action_5; }
inline RuntimeObject ** get_address_of_m_action_5() { return &___m_action_5; }
inline void set_m_action_5(RuntimeObject * value)
{
___m_action_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_action_5), (void*)value);
}
inline static int32_t get_offset_of_m_stateObject_6() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateObject_6)); }
inline RuntimeObject * get_m_stateObject_6() const { return ___m_stateObject_6; }
inline RuntimeObject ** get_address_of_m_stateObject_6() { return &___m_stateObject_6; }
inline void set_m_stateObject_6(RuntimeObject * value)
{
___m_stateObject_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_stateObject_6), (void*)value);
}
inline static int32_t get_offset_of_m_taskScheduler_7() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_taskScheduler_7)); }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * get_m_taskScheduler_7() const { return ___m_taskScheduler_7; }
inline TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 ** get_address_of_m_taskScheduler_7() { return &___m_taskScheduler_7; }
inline void set_m_taskScheduler_7(TaskScheduler_t966F2798F198FA90A0DA8EFC92BAC08297793114 * value)
{
___m_taskScheduler_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_taskScheduler_7), (void*)value);
}
inline static int32_t get_offset_of_m_parent_8() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_parent_8)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_m_parent_8() const { return ___m_parent_8; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_m_parent_8() { return &___m_parent_8; }
inline void set_m_parent_8(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___m_parent_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_parent_8), (void*)value);
}
inline static int32_t get_offset_of_m_stateFlags_9() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_stateFlags_9)); }
inline int32_t get_m_stateFlags_9() const { return ___m_stateFlags_9; }
inline int32_t* get_address_of_m_stateFlags_9() { return &___m_stateFlags_9; }
inline void set_m_stateFlags_9(int32_t value)
{
___m_stateFlags_9 = value;
}
inline static int32_t get_offset_of_m_continuationObject_10() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_continuationObject_10)); }
inline RuntimeObject * get_m_continuationObject_10() const { return ___m_continuationObject_10; }
inline RuntimeObject ** get_address_of_m_continuationObject_10() { return &___m_continuationObject_10; }
inline void set_m_continuationObject_10(RuntimeObject * value)
{
___m_continuationObject_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_continuationObject_10), (void*)value);
}
inline static int32_t get_offset_of_m_contingentProperties_15() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2, ___m_contingentProperties_15)); }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * get_m_contingentProperties_15() const { return ___m_contingentProperties_15; }
inline ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 ** get_address_of_m_contingentProperties_15() { return &___m_contingentProperties_15; }
inline void set_m_contingentProperties_15(ContingentProperties_t7149A27D01507C74E8BDAAA3848B45D2644FDF08 * value)
{
___m_contingentProperties_15 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_contingentProperties_15), (void*)value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields
{
public:
// System.Int32 System.Threading.Tasks.Task::s_taskIdCounter
int32_t ___s_taskIdCounter_2;
// System.Threading.Tasks.TaskFactory System.Threading.Tasks.Task::s_factory
TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * ___s_factory_3;
// System.Object System.Threading.Tasks.Task::s_taskCompletionSentinel
RuntimeObject * ___s_taskCompletionSentinel_11;
// System.Boolean System.Threading.Tasks.Task::s_asyncDebuggingEnabled
bool ___s_asyncDebuggingEnabled_12;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_currentActiveTasks
Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * ___s_currentActiveTasks_13;
// System.Object System.Threading.Tasks.Task::s_activeTasksLock
RuntimeObject * ___s_activeTasksLock_14;
// System.Action`1<System.Object> System.Threading.Tasks.Task::s_taskCancelCallback
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___s_taskCancelCallback_16;
// System.Func`1<System.Threading.Tasks.Task_ContingentProperties> System.Threading.Tasks.Task::s_createContingentProperties
Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * ___s_createContingentProperties_17;
// System.Threading.Tasks.Task System.Threading.Tasks.Task::s_completedTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___s_completedTask_18;
// System.Predicate`1<System.Threading.Tasks.Task> System.Threading.Tasks.Task::s_IsExceptionObservedByParentPredicate
Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * ___s_IsExceptionObservedByParentPredicate_19;
// System.Threading.ContextCallback System.Threading.Tasks.Task::s_ecCallback
ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * ___s_ecCallback_20;
// System.Predicate`1<System.Object> System.Threading.Tasks.Task::s_IsTaskContinuationNullPredicate
Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * ___s_IsTaskContinuationNullPredicate_21;
public:
inline static int32_t get_offset_of_s_taskIdCounter_2() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskIdCounter_2)); }
inline int32_t get_s_taskIdCounter_2() const { return ___s_taskIdCounter_2; }
inline int32_t* get_address_of_s_taskIdCounter_2() { return &___s_taskIdCounter_2; }
inline void set_s_taskIdCounter_2(int32_t value)
{
___s_taskIdCounter_2 = value;
}
inline static int32_t get_offset_of_s_factory_3() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_factory_3)); }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * get_s_factory_3() const { return ___s_factory_3; }
inline TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 ** get_address_of_s_factory_3() { return &___s_factory_3; }
inline void set_s_factory_3(TaskFactory_tF3C6D983390ACFB40B4979E225368F78006D6155 * value)
{
___s_factory_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_factory_3), (void*)value);
}
inline static int32_t get_offset_of_s_taskCompletionSentinel_11() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCompletionSentinel_11)); }
inline RuntimeObject * get_s_taskCompletionSentinel_11() const { return ___s_taskCompletionSentinel_11; }
inline RuntimeObject ** get_address_of_s_taskCompletionSentinel_11() { return &___s_taskCompletionSentinel_11; }
inline void set_s_taskCompletionSentinel_11(RuntimeObject * value)
{
___s_taskCompletionSentinel_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_taskCompletionSentinel_11), (void*)value);
}
inline static int32_t get_offset_of_s_asyncDebuggingEnabled_12() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_asyncDebuggingEnabled_12)); }
inline bool get_s_asyncDebuggingEnabled_12() const { return ___s_asyncDebuggingEnabled_12; }
inline bool* get_address_of_s_asyncDebuggingEnabled_12() { return &___s_asyncDebuggingEnabled_12; }
inline void set_s_asyncDebuggingEnabled_12(bool value)
{
___s_asyncDebuggingEnabled_12 = value;
}
inline static int32_t get_offset_of_s_currentActiveTasks_13() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_currentActiveTasks_13)); }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * get_s_currentActiveTasks_13() const { return ___s_currentActiveTasks_13; }
inline Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F ** get_address_of_s_currentActiveTasks_13() { return &___s_currentActiveTasks_13; }
inline void set_s_currentActiveTasks_13(Dictionary_2_t70161CFEB8DA3C79E19E31D0ED948D3C2925095F * value)
{
___s_currentActiveTasks_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_currentActiveTasks_13), (void*)value);
}
inline static int32_t get_offset_of_s_activeTasksLock_14() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_activeTasksLock_14)); }
inline RuntimeObject * get_s_activeTasksLock_14() const { return ___s_activeTasksLock_14; }
inline RuntimeObject ** get_address_of_s_activeTasksLock_14() { return &___s_activeTasksLock_14; }
inline void set_s_activeTasksLock_14(RuntimeObject * value)
{
___s_activeTasksLock_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_activeTasksLock_14), (void*)value);
}
inline static int32_t get_offset_of_s_taskCancelCallback_16() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_taskCancelCallback_16)); }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * get_s_taskCancelCallback_16() const { return ___s_taskCancelCallback_16; }
inline Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 ** get_address_of_s_taskCancelCallback_16() { return &___s_taskCancelCallback_16; }
inline void set_s_taskCancelCallback_16(Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * value)
{
___s_taskCancelCallback_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_taskCancelCallback_16), (void*)value);
}
inline static int32_t get_offset_of_s_createContingentProperties_17() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_createContingentProperties_17)); }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * get_s_createContingentProperties_17() const { return ___s_createContingentProperties_17; }
inline Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F ** get_address_of_s_createContingentProperties_17() { return &___s_createContingentProperties_17; }
inline void set_s_createContingentProperties_17(Func_1_t48C2978A48CE3F2F6EB5B6DE269D00746483BB1F * value)
{
___s_createContingentProperties_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_createContingentProperties_17), (void*)value);
}
inline static int32_t get_offset_of_s_completedTask_18() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_completedTask_18)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_s_completedTask_18() const { return ___s_completedTask_18; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_s_completedTask_18() { return &___s_completedTask_18; }
inline void set_s_completedTask_18(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___s_completedTask_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_completedTask_18), (void*)value);
}
inline static int32_t get_offset_of_s_IsExceptionObservedByParentPredicate_19() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsExceptionObservedByParentPredicate_19)); }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * get_s_IsExceptionObservedByParentPredicate_19() const { return ___s_IsExceptionObservedByParentPredicate_19; }
inline Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 ** get_address_of_s_IsExceptionObservedByParentPredicate_19() { return &___s_IsExceptionObservedByParentPredicate_19; }
inline void set_s_IsExceptionObservedByParentPredicate_19(Predicate_1_tF4286C34BB184CE5690FDCEBA7F09FC68D229335 * value)
{
___s_IsExceptionObservedByParentPredicate_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_IsExceptionObservedByParentPredicate_19), (void*)value);
}
inline static int32_t get_offset_of_s_ecCallback_20() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_ecCallback_20)); }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * get_s_ecCallback_20() const { return ___s_ecCallback_20; }
inline ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 ** get_address_of_s_ecCallback_20() { return &___s_ecCallback_20; }
inline void set_s_ecCallback_20(ContextCallback_t8AE8A965AC6C7ECD396F527F15CDC8E683BE1676 * value)
{
___s_ecCallback_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_ecCallback_20), (void*)value);
}
inline static int32_t get_offset_of_s_IsTaskContinuationNullPredicate_21() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_StaticFields, ___s_IsTaskContinuationNullPredicate_21)); }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * get_s_IsTaskContinuationNullPredicate_21() const { return ___s_IsTaskContinuationNullPredicate_21; }
inline Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 ** get_address_of_s_IsTaskContinuationNullPredicate_21() { return &___s_IsTaskContinuationNullPredicate_21; }
inline void set_s_IsTaskContinuationNullPredicate_21(Predicate_1_t4AA10EFD4C5497CA1CD0FE35A6AF5990FF5D0979 * value)
{
___s_IsTaskContinuationNullPredicate_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_IsTaskContinuationNullPredicate_21), (void*)value);
}
};
struct Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields
{
public:
// System.Threading.Tasks.Task System.Threading.Tasks.Task::t_currentTask
Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * ___t_currentTask_0;
// System.Threading.Tasks.StackGuard System.Threading.Tasks.Task::t_stackGuard
StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * ___t_stackGuard_1;
public:
inline static int32_t get_offset_of_t_currentTask_0() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_currentTask_0)); }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * get_t_currentTask_0() const { return ___t_currentTask_0; }
inline Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 ** get_address_of_t_currentTask_0() { return &___t_currentTask_0; }
inline void set_t_currentTask_0(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2 * value)
{
___t_currentTask_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_currentTask_0), (void*)value);
}
inline static int32_t get_offset_of_t_stackGuard_1() { return static_cast<int32_t>(offsetof(Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2_ThreadStaticFields, ___t_stackGuard_1)); }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * get_t_stackGuard_1() const { return ___t_stackGuard_1; }
inline StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 ** get_address_of_t_stackGuard_1() { return &___t_stackGuard_1; }
inline void set_t_stackGuard_1(StackGuard_tE431ED3BBD1A18705FEE6F948EBF7FA2E99D64A9 * value)
{
___t_stackGuard_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___t_stackGuard_1), (void*)value);
}
};
// System.Threading.Tasks.TaskCreationOptions
struct TaskCreationOptions_t73D75E64925AACDF2A90DDB3D508192A8E74D375
{
public:
// System.Int32 System.Threading.Tasks.TaskCreationOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TaskCreationOptions_t73D75E64925AACDF2A90DDB3D508192A8E74D375, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// System.TimeSpan
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4
{
public:
// System.Int64 System.TimeSpan::_ticks
int64_t ____ticks_3;
public:
inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); }
inline int64_t get__ticks_3() const { return ____ticks_3; }
inline int64_t* get_address_of__ticks_3() { return &____ticks_3; }
inline void set__ticks_3(int64_t value)
{
____ticks_3 = value;
}
};
struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields
{
public:
// System.TimeSpan System.TimeSpan::Zero
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0;
// System.TimeSpan System.TimeSpan::MaxValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1;
// System.TimeSpan System.TimeSpan::MinValue
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked
bool ____legacyConfigChecked_4;
// System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode
bool ____legacyMode_5;
public:
inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; }
inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___Zero_0 = value;
}
inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; }
inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MaxValue_1 = value;
}
inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; }
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; }
inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
___MinValue_2 = value;
}
inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); }
inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; }
inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; }
inline void set__legacyConfigChecked_4(bool value)
{
____legacyConfigChecked_4 = value;
}
inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); }
inline bool get__legacyMode_5() const { return ____legacyMode_5; }
inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; }
inline void set__legacyMode_5(bool value)
{
____legacyMode_5 = value;
}
};
// System.Tuple`2<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>
struct Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
bool ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252, ___m_Item1_0)); }
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A get_m_Item1_0() const { return ___m_Item1_0; }
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252, ___m_Item2_1)); }
inline bool get_m_Item2_1() const { return ___m_Item2_1; }
inline bool* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(bool value)
{
___m_Item2_1 = value;
}
};
// System.Tuple`2<System.Guid,System.Int32>
struct Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E : public RuntimeObject
{
public:
// T1 System.Tuple`2::m_Item1
Guid_t ___m_Item1_0;
// T2 System.Tuple`2::m_Item2
int32_t ___m_Item2_1;
public:
inline static int32_t get_offset_of_m_Item1_0() { return static_cast<int32_t>(offsetof(Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E, ___m_Item1_0)); }
inline Guid_t get_m_Item1_0() const { return ___m_Item1_0; }
inline Guid_t * get_address_of_m_Item1_0() { return &___m_Item1_0; }
inline void set_m_Item1_0(Guid_t value)
{
___m_Item1_0 = value;
}
inline static int32_t get_offset_of_m_Item2_1() { return static_cast<int32_t>(offsetof(Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E, ___m_Item2_1)); }
inline int32_t get_m_Item2_1() const { return ___m_Item2_1; }
inline int32_t* get_address_of_m_Item2_1() { return &___m_Item2_1; }
inline void set_m_Item2_1(int32_t value)
{
___m_Item2_1 = value;
}
};
// 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;
}
};
// 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;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728
{
public:
// System.String TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::filename
String_t* ___filename_0;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::frame
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
// System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::rotated
bool ___rotated_2;
// System.Boolean TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::trimmed
bool ___trimmed_3;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteFrame TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::spriteSourceSize
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteSize TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::sourceSize
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
// UnityEngine.Vector2 TMPro.SpriteAssetUtilities.TexturePacker_SpriteData::pivot
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
public:
inline static int32_t get_offset_of_filename_0() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___filename_0)); }
inline String_t* get_filename_0() const { return ___filename_0; }
inline String_t** get_address_of_filename_0() { return &___filename_0; }
inline void set_filename_0(String_t* value)
{
___filename_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___filename_0), (void*)value);
}
inline static int32_t get_offset_of_frame_1() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___frame_1)); }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 get_frame_1() const { return ___frame_1; }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 * get_address_of_frame_1() { return &___frame_1; }
inline void set_frame_1(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 value)
{
___frame_1 = value;
}
inline static int32_t get_offset_of_rotated_2() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___rotated_2)); }
inline bool get_rotated_2() const { return ___rotated_2; }
inline bool* get_address_of_rotated_2() { return &___rotated_2; }
inline void set_rotated_2(bool value)
{
___rotated_2 = value;
}
inline static int32_t get_offset_of_trimmed_3() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___trimmed_3)); }
inline bool get_trimmed_3() const { return ___trimmed_3; }
inline bool* get_address_of_trimmed_3() { return &___trimmed_3; }
inline void set_trimmed_3(bool value)
{
___trimmed_3 = value;
}
inline static int32_t get_offset_of_spriteSourceSize_4() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___spriteSourceSize_4)); }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 get_spriteSourceSize_4() const { return ___spriteSourceSize_4; }
inline SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 * get_address_of_spriteSourceSize_4() { return &___spriteSourceSize_4; }
inline void set_spriteSourceSize_4(SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 value)
{
___spriteSourceSize_4 = value;
}
inline static int32_t get_offset_of_sourceSize_5() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___sourceSize_5)); }
inline SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E get_sourceSize_5() const { return ___sourceSize_5; }
inline SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E * get_address_of_sourceSize_5() { return &___sourceSize_5; }
inline void set_sourceSize_5(SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E value)
{
___sourceSize_5 = value;
}
inline static int32_t get_offset_of_pivot_6() { return static_cast<int32_t>(offsetof(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728, ___pivot_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_pivot_6() const { return ___pivot_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_pivot_6() { return &___pivot_6; }
inline void set_pivot_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___pivot_6 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.SpriteAssetUtilities.TexturePacker/SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_marshaled_pinvoke
{
char* ___filename_0;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
int32_t ___rotated_2;
int32_t ___trimmed_3;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
};
// Native definition for COM marshalling of TMPro.SpriteAssetUtilities.TexturePacker/SpriteData
struct SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_marshaled_com
{
Il2CppChar* ___filename_0;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___frame_1;
int32_t ___rotated_2;
int32_t ___trimmed_3;
SpriteFrame_tDB681A7461FA0C10DA42E9A984BDDD0199AB2C04 ___spriteSourceSize_4;
SpriteSize_t143F23923B1D48E84CB38DCDD532F408936AB67E ___sourceSize_5;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_6;
};
// 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;
}
};
// 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;
}
};
// 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;
}
};
// 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;
}
};
// 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;
}
};
// UnityEngine.Bounds
struct Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890
{
public:
// UnityEngine.Vector3 UnityEngine.Bounds::m_Center
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Center_0;
// UnityEngine.Vector3 UnityEngine.Bounds::m_Extents
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Extents_1;
public:
inline static int32_t get_offset_of_m_Center_0() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Center_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Center_0() const { return ___m_Center_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Center_0() { return &___m_Center_0; }
inline void set_m_Center_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Center_0 = value;
}
inline static int32_t get_offset_of_m_Extents_1() { return static_cast<int32_t>(offsetof(Bounds_tA2716F5212749C61B0E7B7B77E0CD3D79B742890, ___m_Extents_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Extents_1() const { return ___m_Extents_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Extents_1() { return &___m_Extents_1; }
inline void set_m_Extents_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Extents_1 = value;
}
};
// UnityEngine.ContactPoint
struct ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515
{
public:
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.ContactPoint::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.Int32 UnityEngine.ContactPoint::m_ThisColliderInstanceID
int32_t ___m_ThisColliderInstanceID_2;
// System.Int32 UnityEngine.ContactPoint::m_OtherColliderInstanceID
int32_t ___m_OtherColliderInstanceID_3;
// System.Single UnityEngine.ContactPoint::m_Separation
float ___m_Separation_4;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_ThisColliderInstanceID_2() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_ThisColliderInstanceID_2)); }
inline int32_t get_m_ThisColliderInstanceID_2() const { return ___m_ThisColliderInstanceID_2; }
inline int32_t* get_address_of_m_ThisColliderInstanceID_2() { return &___m_ThisColliderInstanceID_2; }
inline void set_m_ThisColliderInstanceID_2(int32_t value)
{
___m_ThisColliderInstanceID_2 = value;
}
inline static int32_t get_offset_of_m_OtherColliderInstanceID_3() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_OtherColliderInstanceID_3)); }
inline int32_t get_m_OtherColliderInstanceID_3() const { return ___m_OtherColliderInstanceID_3; }
inline int32_t* get_address_of_m_OtherColliderInstanceID_3() { return &___m_OtherColliderInstanceID_3; }
inline void set_m_OtherColliderInstanceID_3(int32_t value)
{
___m_OtherColliderInstanceID_3 = value;
}
inline static int32_t get_offset_of_m_Separation_4() { return static_cast<int32_t>(offsetof(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515, ___m_Separation_4)); }
inline float get_m_Separation_4() const { return ___m_Separation_4; }
inline float* get_address_of_m_Separation_4() { return &___m_Separation_4; }
inline void set_m_Separation_4(float value)
{
___m_Separation_4 = value;
}
};
// UnityEngine.ContactPoint2D
struct ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0
{
public:
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_0;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_1;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_RelativeVelocity
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_RelativeVelocity_2;
// System.Single UnityEngine.ContactPoint2D::m_Separation
float ___m_Separation_3;
// System.Single UnityEngine.ContactPoint2D::m_NormalImpulse
float ___m_NormalImpulse_4;
// System.Single UnityEngine.ContactPoint2D::m_TangentImpulse
float ___m_TangentImpulse_5;
// System.Int32 UnityEngine.ContactPoint2D::m_Collider
int32_t ___m_Collider_6;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherCollider
int32_t ___m_OtherCollider_7;
// System.Int32 UnityEngine.ContactPoint2D::m_Rigidbody
int32_t ___m_Rigidbody_8;
// System.Int32 UnityEngine.ContactPoint2D::m_OtherRigidbody
int32_t ___m_OtherRigidbody_9;
// System.Int32 UnityEngine.ContactPoint2D::m_Enabled
int32_t ___m_Enabled_10;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Point_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_0() const { return ___m_Point_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Normal_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_RelativeVelocity_2() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_RelativeVelocity_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_RelativeVelocity_2() const { return ___m_RelativeVelocity_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_RelativeVelocity_2() { return &___m_RelativeVelocity_2; }
inline void set_m_RelativeVelocity_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_RelativeVelocity_2 = value;
}
inline static int32_t get_offset_of_m_Separation_3() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Separation_3)); }
inline float get_m_Separation_3() const { return ___m_Separation_3; }
inline float* get_address_of_m_Separation_3() { return &___m_Separation_3; }
inline void set_m_Separation_3(float value)
{
___m_Separation_3 = value;
}
inline static int32_t get_offset_of_m_NormalImpulse_4() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_NormalImpulse_4)); }
inline float get_m_NormalImpulse_4() const { return ___m_NormalImpulse_4; }
inline float* get_address_of_m_NormalImpulse_4() { return &___m_NormalImpulse_4; }
inline void set_m_NormalImpulse_4(float value)
{
___m_NormalImpulse_4 = value;
}
inline static int32_t get_offset_of_m_TangentImpulse_5() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_TangentImpulse_5)); }
inline float get_m_TangentImpulse_5() const { return ___m_TangentImpulse_5; }
inline float* get_address_of_m_TangentImpulse_5() { return &___m_TangentImpulse_5; }
inline void set_m_TangentImpulse_5(float value)
{
___m_TangentImpulse_5 = value;
}
inline static int32_t get_offset_of_m_Collider_6() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Collider_6)); }
inline int32_t get_m_Collider_6() const { return ___m_Collider_6; }
inline int32_t* get_address_of_m_Collider_6() { return &___m_Collider_6; }
inline void set_m_Collider_6(int32_t value)
{
___m_Collider_6 = value;
}
inline static int32_t get_offset_of_m_OtherCollider_7() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherCollider_7)); }
inline int32_t get_m_OtherCollider_7() const { return ___m_OtherCollider_7; }
inline int32_t* get_address_of_m_OtherCollider_7() { return &___m_OtherCollider_7; }
inline void set_m_OtherCollider_7(int32_t value)
{
___m_OtherCollider_7 = value;
}
inline static int32_t get_offset_of_m_Rigidbody_8() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Rigidbody_8)); }
inline int32_t get_m_Rigidbody_8() const { return ___m_Rigidbody_8; }
inline int32_t* get_address_of_m_Rigidbody_8() { return &___m_Rigidbody_8; }
inline void set_m_Rigidbody_8(int32_t value)
{
___m_Rigidbody_8 = value;
}
inline static int32_t get_offset_of_m_OtherRigidbody_9() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_OtherRigidbody_9)); }
inline int32_t get_m_OtherRigidbody_9() const { return ___m_OtherRigidbody_9; }
inline int32_t* get_address_of_m_OtherRigidbody_9() { return &___m_OtherRigidbody_9; }
inline void set_m_OtherRigidbody_9(int32_t value)
{
___m_OtherRigidbody_9 = value;
}
inline static int32_t get_offset_of_m_Enabled_10() { return static_cast<int32_t>(offsetof(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0, ___m_Enabled_10)); }
inline int32_t get_m_Enabled_10() const { return ___m_Enabled_10; }
inline int32_t* get_address_of_m_Enabled_10() { return &___m_Enabled_10; }
inline void set_m_Enabled_10(int32_t value)
{
___m_Enabled_10 = value;
}
};
// UnityEngine.EventSystems.PointerEventData_InputButton
struct InputButton_tCC7470F9FD2AFE525243394F0215B47D4BF86AB0
{
public:
// System.Int32 UnityEngine.EventSystems.PointerEventData_InputButton::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(InputButton_tCC7470F9FD2AFE525243394F0215B47D4BF86AB0, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.RaycastResult::m_GameObject
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
// UnityEngine.EventSystems.BaseRaycaster UnityEngine.EventSystems.RaycastResult::module
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
// System.Single UnityEngine.EventSystems.RaycastResult::distance
float ___distance_2;
// System.Single UnityEngine.EventSystems.RaycastResult::index
float ___index_3;
// System.Int32 UnityEngine.EventSystems.RaycastResult::depth
int32_t ___depth_4;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingLayer
int32_t ___sortingLayer_5;
// System.Int32 UnityEngine.EventSystems.RaycastResult::sortingOrder
int32_t ___sortingOrder_6;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldPosition
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
// UnityEngine.Vector3 UnityEngine.EventSystems.RaycastResult::worldNormal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
// UnityEngine.Vector2 UnityEngine.EventSystems.RaycastResult::screenPosition
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
// System.Int32 UnityEngine.EventSystems.RaycastResult::displayIndex
int32_t ___displayIndex_10;
public:
inline static int32_t get_offset_of_m_GameObject_0() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___m_GameObject_0)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_GameObject_0() const { return ___m_GameObject_0; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_GameObject_0() { return &___m_GameObject_0; }
inline void set_m_GameObject_0(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_GameObject_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_GameObject_0), (void*)value);
}
inline static int32_t get_offset_of_module_1() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___module_1)); }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * get_module_1() const { return ___module_1; }
inline BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 ** get_address_of_module_1() { return &___module_1; }
inline void set_module_1(BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * value)
{
___module_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___module_1), (void*)value);
}
inline static int32_t get_offset_of_distance_2() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___distance_2)); }
inline float get_distance_2() const { return ___distance_2; }
inline float* get_address_of_distance_2() { return &___distance_2; }
inline void set_distance_2(float value)
{
___distance_2 = value;
}
inline static int32_t get_offset_of_index_3() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___index_3)); }
inline float get_index_3() const { return ___index_3; }
inline float* get_address_of_index_3() { return &___index_3; }
inline void set_index_3(float value)
{
___index_3 = value;
}
inline static int32_t get_offset_of_depth_4() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___depth_4)); }
inline int32_t get_depth_4() const { return ___depth_4; }
inline int32_t* get_address_of_depth_4() { return &___depth_4; }
inline void set_depth_4(int32_t value)
{
___depth_4 = value;
}
inline static int32_t get_offset_of_sortingLayer_5() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingLayer_5)); }
inline int32_t get_sortingLayer_5() const { return ___sortingLayer_5; }
inline int32_t* get_address_of_sortingLayer_5() { return &___sortingLayer_5; }
inline void set_sortingLayer_5(int32_t value)
{
___sortingLayer_5 = value;
}
inline static int32_t get_offset_of_sortingOrder_6() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___sortingOrder_6)); }
inline int32_t get_sortingOrder_6() const { return ___sortingOrder_6; }
inline int32_t* get_address_of_sortingOrder_6() { return &___sortingOrder_6; }
inline void set_sortingOrder_6(int32_t value)
{
___sortingOrder_6 = value;
}
inline static int32_t get_offset_of_worldPosition_7() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldPosition_7)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldPosition_7() const { return ___worldPosition_7; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldPosition_7() { return &___worldPosition_7; }
inline void set_worldPosition_7(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldPosition_7 = value;
}
inline static int32_t get_offset_of_worldNormal_8() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___worldNormal_8)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_worldNormal_8() const { return ___worldNormal_8; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_worldNormal_8() { return &___worldNormal_8; }
inline void set_worldNormal_8(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___worldNormal_8 = value;
}
inline static int32_t get_offset_of_screenPosition_9() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___screenPosition_9)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_screenPosition_9() const { return ___screenPosition_9; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_screenPosition_9() { return &___screenPosition_9; }
inline void set_screenPosition_9(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___screenPosition_9 = value;
}
inline static int32_t get_offset_of_displayIndex_10() { return static_cast<int32_t>(offsetof(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91, ___displayIndex_10)); }
inline int32_t get_displayIndex_10() const { return ___displayIndex_10; }
inline int32_t* get_address_of_displayIndex_10() { return &___displayIndex_10; }
inline void set_displayIndex_10(int32_t value)
{
___displayIndex_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.EventSystems.RaycastResult
struct RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_marshaled_pinvoke
{
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_GameObject_0;
BaseRaycaster_tC7F6105A89F54A38FBFC2659901855FDBB0E3966 * ___module_1;
float ___distance_2;
float ___index_3;
int32_t ___depth_4;
int32_t ___sortingLayer_5;
int32_t ___sortingOrder_6;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldPosition_7;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___worldNormal_8;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___screenPosition_9;
int32_t ___displayIndex_10;
};
// 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;
int32_t ___displayIndex_10;
};
// UnityEngine.Experimental.GlobalIllumination.FalloffType
struct FalloffType_t7875E80627449B25D89C044D11A2BA22AB4996E9
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.FalloffType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FalloffType_t7875E80627449B25D89C044D11A2BA22AB4996E9, ___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;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightMode
struct LightMode_t2EFF26B7FB14FB7D2ACF550C591375B5A95A854A
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightMode::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightMode_t2EFF26B7FB14FB7D2ACF550C591375B5A95A854A, ___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;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightType
struct LightType_t684FE1E4FB26D1A27EFCDB36446F55984C414E88
{
public:
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LightType_t684FE1E4FB26D1A27EFCDB36446F55984C414E88, ___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;
}
};
// UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93
{
public:
// System.Type UnityEngine.LowLevel.PlayerLoopSystem::type
Type_t * ___type_0;
// UnityEngine.LowLevel.PlayerLoopSystem[] UnityEngine.LowLevel.PlayerLoopSystem::subSystemList
PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77* ___subSystemList_1;
// UnityEngine.LowLevel.PlayerLoopSystem_UpdateFunction UnityEngine.LowLevel.PlayerLoopSystem::updateDelegate
UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E * ___updateDelegate_2;
// System.IntPtr UnityEngine.LowLevel.PlayerLoopSystem::updateFunction
intptr_t ___updateFunction_3;
// System.IntPtr UnityEngine.LowLevel.PlayerLoopSystem::loopConditionFunction
intptr_t ___loopConditionFunction_4;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___type_0)); }
inline Type_t * get_type_0() const { return ___type_0; }
inline Type_t ** get_address_of_type_0() { return &___type_0; }
inline void set_type_0(Type_t * value)
{
___type_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_0), (void*)value);
}
inline static int32_t get_offset_of_subSystemList_1() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___subSystemList_1)); }
inline PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77* get_subSystemList_1() const { return ___subSystemList_1; }
inline PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77** get_address_of_subSystemList_1() { return &___subSystemList_1; }
inline void set_subSystemList_1(PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77* value)
{
___subSystemList_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___subSystemList_1), (void*)value);
}
inline static int32_t get_offset_of_updateDelegate_2() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___updateDelegate_2)); }
inline UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E * get_updateDelegate_2() const { return ___updateDelegate_2; }
inline UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E ** get_address_of_updateDelegate_2() { return &___updateDelegate_2; }
inline void set_updateDelegate_2(UpdateFunction_tD84FFC4AEE25C3DEBD3AB85700E096090FC7995E * value)
{
___updateDelegate_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___updateDelegate_2), (void*)value);
}
inline static int32_t get_offset_of_updateFunction_3() { return static_cast<int32_t>(offsetof(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___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_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93, ___loopConditionFunction_4)); }
inline intptr_t get_loopConditionFunction_4() const { return ___loopConditionFunction_4; }
inline intptr_t* get_address_of_loopConditionFunction_4() { return &___loopConditionFunction_4; }
inline void set_loopConditionFunction_4(intptr_t value)
{
___loopConditionFunction_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_pinvoke
{
Type_t * ___type_0;
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_pinvoke* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// Native definition for COM marshalling of UnityEngine.LowLevel.PlayerLoopSystem
struct PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_com
{
Type_t * ___type_0;
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_marshaled_com* ___subSystemList_1;
Il2CppMethodPointer ___updateDelegate_2;
intptr_t ___updateFunction_3;
intptr_t ___loopConditionFunction_4;
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Plane
struct Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED
{
public:
// UnityEngine.Vector3 UnityEngine.Plane::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_0;
// System.Single UnityEngine.Plane::m_Distance
float ___m_Distance_1;
public:
inline static int32_t get_offset_of_m_Normal_0() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Normal_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_0() const { return ___m_Normal_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_0() { return &___m_Normal_0; }
inline void set_m_Normal_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_0 = value;
}
inline static int32_t get_offset_of_m_Distance_1() { return static_cast<int32_t>(offsetof(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED, ___m_Distance_1)); }
inline float get_m_Distance_1() const { return ___m_Distance_1; }
inline float* get_address_of_m_Distance_1() { return &___m_Distance_1; }
inline void set_m_Distance_1(float value)
{
___m_Distance_1 = value;
}
};
// UnityEngine.RaycastHit
struct RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3
{
public:
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Point_0;
// UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___m_Normal_1;
// System.UInt32 UnityEngine.RaycastHit::m_FaceID
uint32_t ___m_FaceID_2;
// System.Single UnityEngine.RaycastHit::m_Distance
float ___m_Distance_3;
// UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_UV_4;
// System.Int32 UnityEngine.RaycastHit::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Point_0() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Point_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Point_0() const { return ___m_Point_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_FaceID_2() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_FaceID_2)); }
inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; }
inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; }
inline void set_m_FaceID_2(uint32_t value)
{
___m_FaceID_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_UV_4() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_UV_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_UV_4() const { return ___m_UV_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_UV_4() { return &___m_UV_4; }
inline void set_m_UV_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_UV_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___m_Normal_2;
// System.Single UnityEngine.RaycastHit2D::m_Distance
float ___m_Distance_3;
// System.Single UnityEngine.RaycastHit2D::m_Fraction
float ___m_Fraction_4;
// System.Int32 UnityEngine.RaycastHit2D::m_Collider
int32_t ___m_Collider_5;
public:
inline static int32_t get_offset_of_m_Centroid_0() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Centroid_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Point_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Normal_2)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Distance_3)); }
inline float get_m_Distance_3() const { return ___m_Distance_3; }
inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; }
inline void set_m_Distance_3(float value)
{
___m_Distance_3 = value;
}
inline static int32_t get_offset_of_m_Fraction_4() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Fraction_4)); }
inline float get_m_Fraction_4() const { return ___m_Fraction_4; }
inline float* get_address_of_m_Fraction_4() { return &___m_Fraction_4; }
inline void set_m_Fraction_4(float value)
{
___m_Fraction_4 = value;
}
inline static int32_t get_offset_of_m_Collider_5() { return static_cast<int32_t>(offsetof(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.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;
}
};
// 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;
}
};
// UnityEngine.UI.ColorBlock
struct ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA
{
public:
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_NormalColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_NormalColor_0;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_HighlightedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_HighlightedColor_1;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_PressedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_PressedColor_2;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_SelectedColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_SelectedColor_3;
// UnityEngine.Color UnityEngine.UI.ColorBlock::m_DisabledColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_DisabledColor_4;
// System.Single UnityEngine.UI.ColorBlock::m_ColorMultiplier
float ___m_ColorMultiplier_5;
// System.Single UnityEngine.UI.ColorBlock::m_FadeDuration
float ___m_FadeDuration_6;
public:
inline static int32_t get_offset_of_m_NormalColor_0() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_NormalColor_0)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_NormalColor_0() const { return ___m_NormalColor_0; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_NormalColor_0() { return &___m_NormalColor_0; }
inline void set_m_NormalColor_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_NormalColor_0 = value;
}
inline static int32_t get_offset_of_m_HighlightedColor_1() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_HighlightedColor_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_HighlightedColor_1() const { return ___m_HighlightedColor_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_HighlightedColor_1() { return &___m_HighlightedColor_1; }
inline void set_m_HighlightedColor_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_HighlightedColor_1 = value;
}
inline static int32_t get_offset_of_m_PressedColor_2() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_PressedColor_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_PressedColor_2() const { return ___m_PressedColor_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_PressedColor_2() { return &___m_PressedColor_2; }
inline void set_m_PressedColor_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_PressedColor_2 = value;
}
inline static int32_t get_offset_of_m_SelectedColor_3() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_SelectedColor_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_SelectedColor_3() const { return ___m_SelectedColor_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_SelectedColor_3() { return &___m_SelectedColor_3; }
inline void set_m_SelectedColor_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_SelectedColor_3 = value;
}
inline static int32_t get_offset_of_m_DisabledColor_4() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_DisabledColor_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_DisabledColor_4() const { return ___m_DisabledColor_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_DisabledColor_4() { return &___m_DisabledColor_4; }
inline void set_m_DisabledColor_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_DisabledColor_4 = value;
}
inline static int32_t get_offset_of_m_ColorMultiplier_5() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_ColorMultiplier_5)); }
inline float get_m_ColorMultiplier_5() const { return ___m_ColorMultiplier_5; }
inline float* get_address_of_m_ColorMultiplier_5() { return &___m_ColorMultiplier_5; }
inline void set_m_ColorMultiplier_5(float value)
{
___m_ColorMultiplier_5 = value;
}
inline static int32_t get_offset_of_m_FadeDuration_6() { return static_cast<int32_t>(offsetof(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA, ___m_FadeDuration_6)); }
inline float get_m_FadeDuration_6() const { return ___m_FadeDuration_6; }
inline float* get_address_of_m_FadeDuration_6() { return &___m_FadeDuration_6; }
inline void set_m_FadeDuration_6(float value)
{
___m_FadeDuration_6 = value;
}
};
// UnityEngine.UI.Navigation_Mode
struct Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26
{
public:
// System.Int32 UnityEngine.UI.Navigation_Mode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Mode_t93F92BD50B147AE38D82BA33FA77FD247A59FE26, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UICharInfo
struct UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A
{
public:
// UnityEngine.Vector2 UnityEngine.UICharInfo::cursorPos
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___cursorPos_0;
// System.Single UnityEngine.UICharInfo::charWidth
float ___charWidth_1;
public:
inline static int32_t get_offset_of_cursorPos_0() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___cursorPos_0)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_cursorPos_0() const { return ___cursorPos_0; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_cursorPos_0() { return &___cursorPos_0; }
inline void set_cursorPos_0(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___cursorPos_0 = value;
}
inline static int32_t get_offset_of_charWidth_1() { return static_cast<int32_t>(offsetof(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A, ___charWidth_1)); }
inline float get_charWidth_1() const { return ___charWidth_1; }
inline float* get_address_of_charWidth_1() { return &___charWidth_1; }
inline void set_charWidth_1(float value)
{
___charWidth_1 = value;
}
};
// UnityEngine.UIElements.LengthUnit
struct LengthUnit_t72096DC46DF6AE7521ACB61C839C57915F7282BC
{
public:
// System.Int32 UnityEngine.UIElements.LengthUnit::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(LengthUnit_t72096DC46DF6AE7521ACB61C839C57915F7282BC, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UIElements.StyleKeyword
struct StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560
{
public:
// System.Int32 UnityEngine.UIElements.StyleKeyword::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UIElements.StyleSheets.StylePropertyID
struct StylePropertyID_t58A0361000DC58339920E7CBBB5FFFE06B4B7A13
{
public:
// System.Int32 UnityEngine.UIElements.StyleSheets.StylePropertyID::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StylePropertyID_t58A0361000DC58339920E7CBBB5FFFE06B4B7A13, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.UIVertex
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577
{
public:
// UnityEngine.Vector3 UnityEngine.UIVertex::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_0;
// UnityEngine.Vector3 UnityEngine.UIVertex::normal
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___normal_1;
// UnityEngine.Vector4 UnityEngine.UIVertex::tangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___tangent_2;
// UnityEngine.Color32 UnityEngine.UIVertex::color
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___color_3;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv0
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv0_4;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv1
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv1_5;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv2_6;
// UnityEngine.Vector2 UnityEngine.UIVertex::uv3
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___uv3_7;
public:
inline static int32_t get_offset_of_position_0() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___position_0)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_0() const { return ___position_0; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_0() { return &___position_0; }
inline void set_position_0(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_0 = value;
}
inline static int32_t get_offset_of_normal_1() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___normal_1)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_normal_1() const { return ___normal_1; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_normal_1() { return &___normal_1; }
inline void set_normal_1(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___normal_1 = value;
}
inline static int32_t get_offset_of_tangent_2() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___tangent_2)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_tangent_2() const { return ___tangent_2; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_tangent_2() { return &___tangent_2; }
inline void set_tangent_2(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___tangent_2 = value;
}
inline static int32_t get_offset_of_color_3() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___color_3)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_color_3() const { return ___color_3; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_color_3() { return &___color_3; }
inline void set_color_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___color_3 = value;
}
inline static int32_t get_offset_of_uv0_4() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv0_4)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv0_4() const { return ___uv0_4; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv0_4() { return &___uv0_4; }
inline void set_uv0_4(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv0_4 = value;
}
inline static int32_t get_offset_of_uv1_5() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv1_5)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv1_5() const { return ___uv1_5; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv1_5() { return &___uv1_5; }
inline void set_uv1_5(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv1_5 = value;
}
inline static int32_t get_offset_of_uv2_6() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv2_6)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv2_6() const { return ___uv2_6; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv2_6() { return &___uv2_6; }
inline void set_uv2_6(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv2_6 = value;
}
inline static int32_t get_offset_of_uv3_7() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577, ___uv3_7)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_uv3_7() const { return ___uv3_7; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_uv3_7() { return &___uv3_7; }
inline void set_uv3_7(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___uv3_7 = value;
}
};
struct UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields
{
public:
// UnityEngine.Color32 UnityEngine.UIVertex::s_DefaultColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_DefaultColor_8;
// UnityEngine.Vector4 UnityEngine.UIVertex::s_DefaultTangent
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___s_DefaultTangent_9;
// UnityEngine.UIVertex UnityEngine.UIVertex::simpleVert
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___simpleVert_10;
public:
inline static int32_t get_offset_of_s_DefaultColor_8() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultColor_8)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_DefaultColor_8() const { return ___s_DefaultColor_8; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_DefaultColor_8() { return &___s_DefaultColor_8; }
inline void set_s_DefaultColor_8(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___s_DefaultColor_8 = value;
}
inline static int32_t get_offset_of_s_DefaultTangent_9() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___s_DefaultTangent_9)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_s_DefaultTangent_9() const { return ___s_DefaultTangent_9; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_s_DefaultTangent_9() { return &___s_DefaultTangent_9; }
inline void set_s_DefaultTangent_9(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___s_DefaultTangent_9 = value;
}
inline static int32_t get_offset_of_simpleVert_10() { return static_cast<int32_t>(offsetof(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_StaticFields, ___simpleVert_10)); }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 get_simpleVert_10() const { return ___simpleVert_10; }
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * get_address_of_simpleVert_10() { return &___simpleVert_10; }
inline void set_simpleVert_10(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
___simpleVert_10 = value;
}
};
// UnityEngine.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// System.Boolean UnityEngine.jvalue::z
bool ___z_0;
};
#pragma pack(pop, tp)
struct
{
bool ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.SByte UnityEngine.jvalue::b
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Char UnityEngine.jvalue::c
Il2CppChar ___c_2;
};
#pragma pack(pop, tp)
struct
{
Il2CppChar ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int16 UnityEngine.jvalue::s
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int32 UnityEngine.jvalue::i
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Int64 UnityEngine.jvalue::j
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Single UnityEngine.jvalue::f
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.Double UnityEngine.jvalue::d
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
// System.IntPtr UnityEngine.jvalue::l
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_z_0() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___z_0)); }
inline bool get_z_0() const { return ___z_0; }
inline bool* get_address_of_z_0() { return &___z_0; }
inline void set_z_0(bool value)
{
___z_0 = value;
}
inline static int32_t get_offset_of_b_1() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___b_1)); }
inline int8_t get_b_1() const { return ___b_1; }
inline int8_t* get_address_of_b_1() { return &___b_1; }
inline void set_b_1(int8_t value)
{
___b_1 = value;
}
inline static int32_t get_offset_of_c_2() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___c_2)); }
inline Il2CppChar get_c_2() const { return ___c_2; }
inline Il2CppChar* get_address_of_c_2() { return &___c_2; }
inline void set_c_2(Il2CppChar value)
{
___c_2 = value;
}
inline static int32_t get_offset_of_s_3() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___s_3)); }
inline int16_t get_s_3() const { return ___s_3; }
inline int16_t* get_address_of_s_3() { return &___s_3; }
inline void set_s_3(int16_t value)
{
___s_3 = value;
}
inline static int32_t get_offset_of_i_4() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___i_4)); }
inline int32_t get_i_4() const { return ___i_4; }
inline int32_t* get_address_of_i_4() { return &___i_4; }
inline void set_i_4(int32_t value)
{
___i_4 = value;
}
inline static int32_t get_offset_of_j_5() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___j_5)); }
inline int64_t get_j_5() const { return ___j_5; }
inline int64_t* get_address_of_j_5() { return &___j_5; }
inline void set_j_5(int64_t value)
{
___j_5 = value;
}
inline static int32_t get_offset_of_f_6() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___f_6)); }
inline float get_f_6() const { return ___f_6; }
inline float* get_address_of_f_6() { return &___f_6; }
inline void set_f_6(float value)
{
___f_6 = value;
}
inline static int32_t get_offset_of_d_7() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___d_7)); }
inline double get_d_7() const { return ___d_7; }
inline double* get_address_of_d_7() { return &___d_7; }
inline void set_d_7(double value)
{
___d_7 = value;
}
inline static int32_t get_offset_of_l_8() { return static_cast<int32_t>(offsetof(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37, ___l_8)); }
inline intptr_t get_l_8() const { return ___l_8; }
inline intptr_t* get_address_of_l_8() { return &___l_8; }
inline void set_l_8(intptr_t value)
{
___l_8 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_marshaled_pinvoke
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// Native definition for COM marshalling of UnityEngine.jvalue
struct jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_marshaled_com
{
union
{
#pragma pack(push, tp, 1)
struct
{
int32_t ___z_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___z_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int8_t ___b_1;
};
#pragma pack(pop, tp)
struct
{
int8_t ___b_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
uint8_t ___c_2;
};
#pragma pack(pop, tp)
struct
{
uint8_t ___c_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int16_t ___s_3;
};
#pragma pack(pop, tp)
struct
{
int16_t ___s_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int32_t ___i_4;
};
#pragma pack(pop, tp)
struct
{
int32_t ___i_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
int64_t ___j_5;
};
#pragma pack(pop, tp)
struct
{
int64_t ___j_5_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
float ___f_6;
};
#pragma pack(pop, tp)
struct
{
float ___f_6_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
double ___d_7;
};
#pragma pack(pop, tp)
struct
{
double ___d_7_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
intptr_t ___l_8;
};
#pragma pack(pop, tp)
struct
{
intptr_t ___l_8_forAlignmentOnly;
};
};
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32Enum>
struct Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A
{
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_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A, ___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_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A, ___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_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A, ___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_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>
struct Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF
{
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_t4AF80C1385EAC25480F16E4599985179C47EA8DF, ___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_t4AF80C1385EAC25480F16E4599985179C47EA8DF, ___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_t4AF80C1385EAC25480F16E4599985179C47EA8DF, ___key_2)); }
inline RuntimeObject * get_key_2() const { return ___key_2; }
inline RuntimeObject ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(RuntimeObject * value)
{
___key_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_2), (void*)value);
}
inline static int32_t get_offset_of_value_3() { return static_cast<int32_t>(offsetof(Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF, ___value_3)); }
inline int32_t get_value_3() const { return ___value_3; }
inline int32_t* get_address_of_value_3() { return &___value_3; }
inline void set_value_3(int32_t value)
{
___value_3 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>
struct KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E
{
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_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E, ___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_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>
struct KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
RuntimeObject * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
int32_t ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___key_0)); }
inline RuntimeObject * get_key_0() const { return ___key_0; }
inline RuntimeObject ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(RuntimeObject * value)
{
___key_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___key_0), (void*)value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5, ___value_1)); }
inline int32_t get_value_1() const { return ___value_1; }
inline int32_t* get_address_of_value_1() { return &___value_1; }
inline void set_value_1(int32_t value)
{
___value_1 = value;
}
};
// System.Diagnostics.Tracing.EventSource_EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B
{
public:
// System.Diagnostics.Tracing.EventDescriptor System.Diagnostics.Tracing.EventSource_EventMetadata::Descriptor
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
// System.Diagnostics.Tracing.EventTags System.Diagnostics.Tracing.EventSource_EventMetadata::Tags
int32_t ___Tags_1;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForAnyListener
bool ___EnabledForAnyListener_2;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::EnabledForETW
bool ___EnabledForETW_3;
// System.Boolean System.Diagnostics.Tracing.EventSource_EventMetadata::HasRelatedActivityID
bool ___HasRelatedActivityID_4;
// System.Byte System.Diagnostics.Tracing.EventSource_EventMetadata::TriggersActivityTracking
uint8_t ___TriggersActivityTracking_5;
// System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Name
String_t* ___Name_6;
// System.String System.Diagnostics.Tracing.EventSource_EventMetadata::Message
String_t* ___Message_7;
// System.Reflection.ParameterInfo[] System.Diagnostics.Tracing.EventSource_EventMetadata::Parameters
ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* ___Parameters_8;
// System.Diagnostics.Tracing.TraceLoggingEventTypes System.Diagnostics.Tracing.EventSource_EventMetadata::TraceLoggingEventTypes
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
// System.Diagnostics.Tracing.EventActivityOptions System.Diagnostics.Tracing.EventSource_EventMetadata::ActivityOptions
int32_t ___ActivityOptions_10;
public:
inline static int32_t get_offset_of_Descriptor_0() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Descriptor_0)); }
inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E get_Descriptor_0() const { return ___Descriptor_0; }
inline EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E * get_address_of_Descriptor_0() { return &___Descriptor_0; }
inline void set_Descriptor_0(EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E value)
{
___Descriptor_0 = value;
}
inline static int32_t get_offset_of_Tags_1() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Tags_1)); }
inline int32_t get_Tags_1() const { return ___Tags_1; }
inline int32_t* get_address_of_Tags_1() { return &___Tags_1; }
inline void set_Tags_1(int32_t value)
{
___Tags_1 = value;
}
inline static int32_t get_offset_of_EnabledForAnyListener_2() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForAnyListener_2)); }
inline bool get_EnabledForAnyListener_2() const { return ___EnabledForAnyListener_2; }
inline bool* get_address_of_EnabledForAnyListener_2() { return &___EnabledForAnyListener_2; }
inline void set_EnabledForAnyListener_2(bool value)
{
___EnabledForAnyListener_2 = value;
}
inline static int32_t get_offset_of_EnabledForETW_3() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___EnabledForETW_3)); }
inline bool get_EnabledForETW_3() const { return ___EnabledForETW_3; }
inline bool* get_address_of_EnabledForETW_3() { return &___EnabledForETW_3; }
inline void set_EnabledForETW_3(bool value)
{
___EnabledForETW_3 = value;
}
inline static int32_t get_offset_of_HasRelatedActivityID_4() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___HasRelatedActivityID_4)); }
inline bool get_HasRelatedActivityID_4() const { return ___HasRelatedActivityID_4; }
inline bool* get_address_of_HasRelatedActivityID_4() { return &___HasRelatedActivityID_4; }
inline void set_HasRelatedActivityID_4(bool value)
{
___HasRelatedActivityID_4 = value;
}
inline static int32_t get_offset_of_TriggersActivityTracking_5() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TriggersActivityTracking_5)); }
inline uint8_t get_TriggersActivityTracking_5() const { return ___TriggersActivityTracking_5; }
inline uint8_t* get_address_of_TriggersActivityTracking_5() { return &___TriggersActivityTracking_5; }
inline void set_TriggersActivityTracking_5(uint8_t value)
{
___TriggersActivityTracking_5 = value;
}
inline static int32_t get_offset_of_Name_6() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Name_6)); }
inline String_t* get_Name_6() const { return ___Name_6; }
inline String_t** get_address_of_Name_6() { return &___Name_6; }
inline void set_Name_6(String_t* value)
{
___Name_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_6), (void*)value);
}
inline static int32_t get_offset_of_Message_7() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Message_7)); }
inline String_t* get_Message_7() const { return ___Message_7; }
inline String_t** get_address_of_Message_7() { return &___Message_7; }
inline void set_Message_7(String_t* value)
{
___Message_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Message_7), (void*)value);
}
inline static int32_t get_offset_of_Parameters_8() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___Parameters_8)); }
inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* get_Parameters_8() const { return ___Parameters_8; }
inline ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694** get_address_of_Parameters_8() { return &___Parameters_8; }
inline void set_Parameters_8(ParameterInfoU5BU5D_t9F6F38E4A0B0A78E2F463D1B2C0031716CA7A694* value)
{
___Parameters_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Parameters_8), (void*)value);
}
inline static int32_t get_offset_of_TraceLoggingEventTypes_9() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___TraceLoggingEventTypes_9)); }
inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * get_TraceLoggingEventTypes_9() const { return ___TraceLoggingEventTypes_9; }
inline TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 ** get_address_of_TraceLoggingEventTypes_9() { return &___TraceLoggingEventTypes_9; }
inline void set_TraceLoggingEventTypes_9(TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * value)
{
___TraceLoggingEventTypes_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TraceLoggingEventTypes_9), (void*)value);
}
inline static int32_t get_offset_of_ActivityOptions_10() { return static_cast<int32_t>(offsetof(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B, ___ActivityOptions_10)); }
inline int32_t get_ActivityOptions_10() const { return ___ActivityOptions_10; }
inline int32_t* get_address_of_ActivityOptions_10() { return &___ActivityOptions_10; }
inline void set_ActivityOptions_10(int32_t value)
{
___ActivityOptions_10 = value;
}
};
// Native definition for P/Invoke marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_pinvoke
{
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
int32_t ___Tags_1;
int32_t ___EnabledForAnyListener_2;
int32_t ___EnabledForETW_3;
int32_t ___HasRelatedActivityID_4;
uint8_t ___TriggersActivityTracking_5;
char* ___Name_6;
char* ___Message_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_pinvoke** ___Parameters_8;
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
int32_t ___ActivityOptions_10;
};
// Native definition for COM marshalling of System.Diagnostics.Tracing.EventSource/EventMetadata
struct EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_marshaled_com
{
EventDescriptor_t0DB21DFB13157AE81D79A01C853DF3729072B38E ___Descriptor_0;
int32_t ___Tags_1;
int32_t ___EnabledForAnyListener_2;
int32_t ___EnabledForETW_3;
int32_t ___HasRelatedActivityID_4;
uint8_t ___TriggersActivityTracking_5;
Il2CppChar* ___Name_6;
Il2CppChar* ___Message_7;
ParameterInfo_t37AB8D79D44E14C48CDA9004CB696E240C3FD4DB_marshaled_com** ___Parameters_8;
TraceLoggingEventTypes_t9CC0B45F554DBE11BA54227A704E1AC027E5DD25 * ___TraceLoggingEventTypes_9;
int32_t ___ActivityOptions_10;
};
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t
{
public:
// System.Delegate[] System.MulticastDelegate::delegates
DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11;
public:
inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; }
inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; }
inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value)
{
___delegates_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
{
Delegate_t_marshaled_pinvoke** ___delegates_11;
};
// Native definition for COM marshalling of System.MulticastDelegate
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
{
Delegate_t_marshaled_com** ___delegates_11;
};
// System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F
{
public:
// System.Type System.Reflection.MonoPropertyInfo::parent
Type_t * ___parent_0;
// System.Type System.Reflection.MonoPropertyInfo::declaring_type
Type_t * ___declaring_type_1;
// System.String System.Reflection.MonoPropertyInfo::name
String_t* ___name_2;
// System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::get_method
MethodInfo_t * ___get_method_3;
// System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::set_method
MethodInfo_t * ___set_method_4;
// System.Reflection.PropertyAttributes System.Reflection.MonoPropertyInfo::attrs
int32_t ___attrs_5;
public:
inline static int32_t get_offset_of_parent_0() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___parent_0)); }
inline Type_t * get_parent_0() const { return ___parent_0; }
inline Type_t ** get_address_of_parent_0() { return &___parent_0; }
inline void set_parent_0(Type_t * value)
{
___parent_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___parent_0), (void*)value);
}
inline static int32_t get_offset_of_declaring_type_1() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___declaring_type_1)); }
inline Type_t * get_declaring_type_1() const { return ___declaring_type_1; }
inline Type_t ** get_address_of_declaring_type_1() { return &___declaring_type_1; }
inline void set_declaring_type_1(Type_t * value)
{
___declaring_type_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___declaring_type_1), (void*)value);
}
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___name_2)); }
inline String_t* get_name_2() const { return ___name_2; }
inline String_t** get_address_of_name_2() { return &___name_2; }
inline void set_name_2(String_t* value)
{
___name_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_2), (void*)value);
}
inline static int32_t get_offset_of_get_method_3() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___get_method_3)); }
inline MethodInfo_t * get_get_method_3() const { return ___get_method_3; }
inline MethodInfo_t ** get_address_of_get_method_3() { return &___get_method_3; }
inline void set_get_method_3(MethodInfo_t * value)
{
___get_method_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___get_method_3), (void*)value);
}
inline static int32_t get_offset_of_set_method_4() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___set_method_4)); }
inline MethodInfo_t * get_set_method_4() const { return ___set_method_4; }
inline MethodInfo_t ** get_address_of_set_method_4() { return &___set_method_4; }
inline void set_set_method_4(MethodInfo_t * value)
{
___set_method_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___set_method_4), (void*)value);
}
inline static int32_t get_offset_of_attrs_5() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F, ___attrs_5)); }
inline int32_t get_attrs_5() const { return ___attrs_5; }
inline int32_t* get_address_of_attrs_5() { return &___attrs_5; }
inline void set_attrs_5(int32_t value)
{
___attrs_5 = value;
}
};
// Native definition for P/Invoke marshalling of System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_marshaled_pinvoke
{
Type_t * ___parent_0;
Type_t * ___declaring_type_1;
char* ___name_2;
MethodInfo_t * ___get_method_3;
MethodInfo_t * ___set_method_4;
int32_t ___attrs_5;
};
// Native definition for COM marshalling of System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F_marshaled_com
{
Type_t * ___parent_0;
Type_t * ___declaring_type_1;
Il2CppChar* ___name_2;
MethodInfo_t * ___get_method_3;
MethodInfo_t * ___set_method_4;
int32_t ___attrs_5;
};
// System.SystemException
struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t
{
public:
public:
};
// System.Threading.Tasks.Task`1<System.Boolean>
struct Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
bool ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439, ___m_result_22)); }
inline bool get_m_result_22() const { return ___m_result_22; }
inline bool* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(bool value)
{
___m_result_22 = value;
}
};
struct Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t90DBF289FBDBB845B0FA55E1773164F06FBDEA17 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_t185FBBAFD46813778C35A8D4A5FA3AFB4FC0E14C * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value);
}
};
// System.Threading.Tasks.Task`1<System.Int32>
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
int32_t ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87, ___m_result_22)); }
inline int32_t get_m_result_22() const { return ___m_result_22; }
inline int32_t* get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(int32_t value)
{
___m_result_22 = value;
}
};
struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_t35BBF03CDA9AA94D2BE8CB805D2C764236F56CC7 * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_tBCA034BF330CE1C3008C166BF27F309CD4C41C24 * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value);
}
};
// System.Threading.Tasks.Task`1<System.Object>
struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 : public Task_t1F48C203E163126EBC69ACCA679D1A462DEE9EB2
{
public:
// TResult System.Threading.Tasks.Task`1::m_result
RuntimeObject * ___m_result_22;
public:
inline static int32_t get_offset_of_m_result_22() { return static_cast<int32_t>(offsetof(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09, ___m_result_22)); }
inline RuntimeObject * get_m_result_22() const { return ___m_result_22; }
inline RuntimeObject ** get_address_of_m_result_22() { return &___m_result_22; }
inline void set_m_result_22(RuntimeObject * value)
{
___m_result_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_result_22), (void*)value);
}
};
struct Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09_StaticFields
{
public:
// System.Threading.Tasks.TaskFactory`1<TResult> System.Threading.Tasks.Task`1::s_Factory
TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * ___s_Factory_23;
// System.Func`2<System.Threading.Tasks.Task`1<System.Threading.Tasks.Task>,System.Threading.Tasks.Task`1<TResult>> System.Threading.Tasks.Task`1::TaskWhenAnyCast
Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD * ___TaskWhenAnyCast_24;
public:
inline static int32_t get_offset_of_s_Factory_23() { return static_cast<int32_t>(offsetof(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09_StaticFields, ___s_Factory_23)); }
inline TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * get_s_Factory_23() const { return ___s_Factory_23; }
inline TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C ** get_address_of_s_Factory_23() { return &___s_Factory_23; }
inline void set_s_Factory_23(TaskFactory_1_tA50D9207CAE2C505277DD5F03CBE64700177257C * value)
{
___s_Factory_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Factory_23), (void*)value);
}
inline static int32_t get_offset_of_TaskWhenAnyCast_24() { return static_cast<int32_t>(offsetof(Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09_StaticFields, ___TaskWhenAnyCast_24)); }
inline Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD * get_TaskWhenAnyCast_24() const { return ___TaskWhenAnyCast_24; }
inline Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD ** get_address_of_TaskWhenAnyCast_24() { return &___TaskWhenAnyCast_24; }
inline void set_TaskWhenAnyCast_24(Func_2_tDAE4310E42C13AE378CDF0371BD31D6BF4E61EBD * value)
{
___TaskWhenAnyCast_24 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TaskWhenAnyCast_24), (void*)value);
}
};
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ____impl_9;
public:
inline static int32_t get_offset_of__impl_9() { return static_cast<int32_t>(offsetof(Type_t, ____impl_9)); }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D get__impl_9() const { return ____impl_9; }
inline RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D * get_address_of__impl_9() { return &____impl_9; }
inline void set__impl_9(RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D value)
{
____impl_9 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterAttribute_0;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterName_1;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * ___FilterNameIgnoreCase_2;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_3;
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_4;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* ___EmptyTypes_5;
// System.Reflection.Binder System.Type::defaultBinder
Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * ___defaultBinder_6;
public:
inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterAttribute_0() const { return ___FilterAttribute_0; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; }
inline void set_FilterAttribute_0(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterAttribute_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value);
}
inline static int32_t get_offset_of_FilterName_1() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_1)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterName_1() const { return ___FilterName_1; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterName_1() { return &___FilterName_1; }
inline void set_FilterName_1(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterName_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; }
inline MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; }
inline void set_FilterNameIgnoreCase_2(MemberFilter_t25C1BD92C42BE94426E300787C13C452CB89B381 * value)
{
___FilterNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value);
}
inline static int32_t get_offset_of_Missing_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_3)); }
inline RuntimeObject * get_Missing_3() const { return ___Missing_3; }
inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; }
inline void set_Missing_3(RuntimeObject * value)
{
___Missing_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value);
}
inline static int32_t get_offset_of_Delimiter_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_4)); }
inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; }
inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; }
inline void set_Delimiter_4(Il2CppChar value)
{
___Delimiter_4 = value;
}
inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* get_EmptyTypes_5() const { return ___EmptyTypes_5; }
inline TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; }
inline void set_EmptyTypes_5(TypeU5BU5D_t7FE623A666B49176DE123306221193E888A12F5F* value)
{
___EmptyTypes_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value);
}
inline static int32_t get_offset_of_defaultBinder_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___defaultBinder_6)); }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * get_defaultBinder_6() const { return ___defaultBinder_6; }
inline Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; }
inline void set_defaultBinder_6(Binder_t4D5CB06963501D32847C057B57157D6DC49CA759 * value)
{
___defaultBinder_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value);
}
};
// 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;
}
};
// 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((void**)(&___textElement_4), (void*)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((void**)(&___fontAsset_5), (void*)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((void**)(&___spriteAsset_6), (void*)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((void**)(&___material_8), (void*)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;
}
};
// 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;
};
// 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;
}
};
// 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((void**)(&___mesh_4), (void*)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((void**)(&___vertices_6), (void*)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((void**)(&___normals_7), (void*)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((void**)(&___tangents_8), (void*)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((void**)(&___uvs0_9), (void*)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((void**)(&___uvs2_10), (void*)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((void**)(&___colors32_11), (void*)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((void**)(&___triangles_12), (void*)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;
}
};
// 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;
Il2CppSafeArray/*NONE*/* ___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;
Il2CppSafeArray/*NONE*/* ___triangles_12;
};
// UnityEngine.EventSystems.PointerEventData
struct PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 : public BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5
{
public:
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerEnter>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CpointerEnterU3Ek__BackingField_2;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::m_PointerPress
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___m_PointerPress_3;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<lastPress>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3ClastPressU3Ek__BackingField_4;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<rawPointerPress>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CrawPointerPressU3Ek__BackingField_5;
// UnityEngine.GameObject UnityEngine.EventSystems.PointerEventData::<pointerDrag>k__BackingField
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___U3CpointerDragU3Ek__BackingField_6;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerCurrentRaycast>k__BackingField
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___U3CpointerCurrentRaycastU3Ek__BackingField_7;
// UnityEngine.EventSystems.RaycastResult UnityEngine.EventSystems.PointerEventData::<pointerPressRaycast>k__BackingField
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___U3CpointerPressRaycastU3Ek__BackingField_8;
// System.Collections.Generic.List`1<UnityEngine.GameObject> UnityEngine.EventSystems.PointerEventData::hovered
List_1_t0087C02D52C7E5CFF8C0C55FC0453A28FD5F055B * ___hovered_9;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<eligibleForClick>k__BackingField
bool ___U3CeligibleForClickU3Ek__BackingField_10;
// System.Int32 UnityEngine.EventSystems.PointerEventData::<pointerId>k__BackingField
int32_t ___U3CpointerIdU3Ek__BackingField_11;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<position>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CpositionU3Ek__BackingField_12;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<delta>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CdeltaU3Ek__BackingField_13;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<pressPosition>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CpressPositionU3Ek__BackingField_14;
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldPosition>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CworldPositionU3Ek__BackingField_15;
// UnityEngine.Vector3 UnityEngine.EventSystems.PointerEventData::<worldNormal>k__BackingField
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___U3CworldNormalU3Ek__BackingField_16;
// System.Single UnityEngine.EventSystems.PointerEventData::<clickTime>k__BackingField
float ___U3CclickTimeU3Ek__BackingField_17;
// System.Int32 UnityEngine.EventSystems.PointerEventData::<clickCount>k__BackingField
int32_t ___U3CclickCountU3Ek__BackingField_18;
// UnityEngine.Vector2 UnityEngine.EventSystems.PointerEventData::<scrollDelta>k__BackingField
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___U3CscrollDeltaU3Ek__BackingField_19;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<useDragThreshold>k__BackingField
bool ___U3CuseDragThresholdU3Ek__BackingField_20;
// System.Boolean UnityEngine.EventSystems.PointerEventData::<dragging>k__BackingField
bool ___U3CdraggingU3Ek__BackingField_21;
// UnityEngine.EventSystems.PointerEventData_InputButton UnityEngine.EventSystems.PointerEventData::<button>k__BackingField
int32_t ___U3CbuttonU3Ek__BackingField_22;
public:
inline static int32_t get_offset_of_U3CpointerEnterU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerEnterU3Ek__BackingField_2)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CpointerEnterU3Ek__BackingField_2() const { return ___U3CpointerEnterU3Ek__BackingField_2; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CpointerEnterU3Ek__BackingField_2() { return &___U3CpointerEnterU3Ek__BackingField_2; }
inline void set_U3CpointerEnterU3Ek__BackingField_2(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3CpointerEnterU3Ek__BackingField_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerEnterU3Ek__BackingField_2), (void*)value);
}
inline static int32_t get_offset_of_m_PointerPress_3() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___m_PointerPress_3)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_m_PointerPress_3() const { return ___m_PointerPress_3; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_m_PointerPress_3() { return &___m_PointerPress_3; }
inline void set_m_PointerPress_3(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___m_PointerPress_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_PointerPress_3), (void*)value);
}
inline static int32_t get_offset_of_U3ClastPressU3Ek__BackingField_4() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3ClastPressU3Ek__BackingField_4)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3ClastPressU3Ek__BackingField_4() const { return ___U3ClastPressU3Ek__BackingField_4; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3ClastPressU3Ek__BackingField_4() { return &___U3ClastPressU3Ek__BackingField_4; }
inline void set_U3ClastPressU3Ek__BackingField_4(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3ClastPressU3Ek__BackingField_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3ClastPressU3Ek__BackingField_4), (void*)value);
}
inline static int32_t get_offset_of_U3CrawPointerPressU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CrawPointerPressU3Ek__BackingField_5)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CrawPointerPressU3Ek__BackingField_5() const { return ___U3CrawPointerPressU3Ek__BackingField_5; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CrawPointerPressU3Ek__BackingField_5() { return &___U3CrawPointerPressU3Ek__BackingField_5; }
inline void set_U3CrawPointerPressU3Ek__BackingField_5(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3CrawPointerPressU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CrawPointerPressU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerDragU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerDragU3Ek__BackingField_6)); }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * get_U3CpointerDragU3Ek__BackingField_6() const { return ___U3CpointerDragU3Ek__BackingField_6; }
inline GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F ** get_address_of_U3CpointerDragU3Ek__BackingField_6() { return &___U3CpointerDragU3Ek__BackingField_6; }
inline void set_U3CpointerDragU3Ek__BackingField_6(GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * value)
{
___U3CpointerDragU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CpointerDragU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CpointerCurrentRaycastU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerCurrentRaycastU3Ek__BackingField_7)); }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 get_U3CpointerCurrentRaycastU3Ek__BackingField_7() const { return ___U3CpointerCurrentRaycastU3Ek__BackingField_7; }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * get_address_of_U3CpointerCurrentRaycastU3Ek__BackingField_7() { return &___U3CpointerCurrentRaycastU3Ek__BackingField_7; }
inline void set_U3CpointerCurrentRaycastU3Ek__BackingField_7(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
___U3CpointerCurrentRaycastU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerCurrentRaycastU3Ek__BackingField_7))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerCurrentRaycastU3Ek__BackingField_7))->___module_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_U3CpointerPressRaycastU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerPressRaycastU3Ek__BackingField_8)); }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 get_U3CpointerPressRaycastU3Ek__BackingField_8() const { return ___U3CpointerPressRaycastU3Ek__BackingField_8; }
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * get_address_of_U3CpointerPressRaycastU3Ek__BackingField_8() { return &___U3CpointerPressRaycastU3Ek__BackingField_8; }
inline void set_U3CpointerPressRaycastU3Ek__BackingField_8(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
___U3CpointerPressRaycastU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerPressRaycastU3Ek__BackingField_8))->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___U3CpointerPressRaycastU3Ek__BackingField_8))->___module_1), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_hovered_9() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___hovered_9)); }
inline List_1_t0087C02D52C7E5CFF8C0C55FC0453A28FD5F055B * get_hovered_9() const { return ___hovered_9; }
inline List_1_t0087C02D52C7E5CFF8C0C55FC0453A28FD5F055B ** get_address_of_hovered_9() { return &___hovered_9; }
inline void set_hovered_9(List_1_t0087C02D52C7E5CFF8C0C55FC0453A28FD5F055B * value)
{
___hovered_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___hovered_9), (void*)value);
}
inline static int32_t get_offset_of_U3CeligibleForClickU3Ek__BackingField_10() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CeligibleForClickU3Ek__BackingField_10)); }
inline bool get_U3CeligibleForClickU3Ek__BackingField_10() const { return ___U3CeligibleForClickU3Ek__BackingField_10; }
inline bool* get_address_of_U3CeligibleForClickU3Ek__BackingField_10() { return &___U3CeligibleForClickU3Ek__BackingField_10; }
inline void set_U3CeligibleForClickU3Ek__BackingField_10(bool value)
{
___U3CeligibleForClickU3Ek__BackingField_10 = value;
}
inline static int32_t get_offset_of_U3CpointerIdU3Ek__BackingField_11() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpointerIdU3Ek__BackingField_11)); }
inline int32_t get_U3CpointerIdU3Ek__BackingField_11() const { return ___U3CpointerIdU3Ek__BackingField_11; }
inline int32_t* get_address_of_U3CpointerIdU3Ek__BackingField_11() { return &___U3CpointerIdU3Ek__BackingField_11; }
inline void set_U3CpointerIdU3Ek__BackingField_11(int32_t value)
{
___U3CpointerIdU3Ek__BackingField_11 = value;
}
inline static int32_t get_offset_of_U3CpositionU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpositionU3Ek__BackingField_12)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CpositionU3Ek__BackingField_12() const { return ___U3CpositionU3Ek__BackingField_12; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CpositionU3Ek__BackingField_12() { return &___U3CpositionU3Ek__BackingField_12; }
inline void set_U3CpositionU3Ek__BackingField_12(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CpositionU3Ek__BackingField_12 = value;
}
inline static int32_t get_offset_of_U3CdeltaU3Ek__BackingField_13() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CdeltaU3Ek__BackingField_13)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CdeltaU3Ek__BackingField_13() const { return ___U3CdeltaU3Ek__BackingField_13; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CdeltaU3Ek__BackingField_13() { return &___U3CdeltaU3Ek__BackingField_13; }
inline void set_U3CdeltaU3Ek__BackingField_13(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CdeltaU3Ek__BackingField_13 = value;
}
inline static int32_t get_offset_of_U3CpressPositionU3Ek__BackingField_14() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CpressPositionU3Ek__BackingField_14)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CpressPositionU3Ek__BackingField_14() const { return ___U3CpressPositionU3Ek__BackingField_14; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CpressPositionU3Ek__BackingField_14() { return &___U3CpressPositionU3Ek__BackingField_14; }
inline void set_U3CpressPositionU3Ek__BackingField_14(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CpressPositionU3Ek__BackingField_14 = value;
}
inline static int32_t get_offset_of_U3CworldPositionU3Ek__BackingField_15() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CworldPositionU3Ek__BackingField_15)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CworldPositionU3Ek__BackingField_15() const { return ___U3CworldPositionU3Ek__BackingField_15; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CworldPositionU3Ek__BackingField_15() { return &___U3CworldPositionU3Ek__BackingField_15; }
inline void set_U3CworldPositionU3Ek__BackingField_15(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CworldPositionU3Ek__BackingField_15 = value;
}
inline static int32_t get_offset_of_U3CworldNormalU3Ek__BackingField_16() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CworldNormalU3Ek__BackingField_16)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_U3CworldNormalU3Ek__BackingField_16() const { return ___U3CworldNormalU3Ek__BackingField_16; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_U3CworldNormalU3Ek__BackingField_16() { return &___U3CworldNormalU3Ek__BackingField_16; }
inline void set_U3CworldNormalU3Ek__BackingField_16(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___U3CworldNormalU3Ek__BackingField_16 = value;
}
inline static int32_t get_offset_of_U3CclickTimeU3Ek__BackingField_17() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CclickTimeU3Ek__BackingField_17)); }
inline float get_U3CclickTimeU3Ek__BackingField_17() const { return ___U3CclickTimeU3Ek__BackingField_17; }
inline float* get_address_of_U3CclickTimeU3Ek__BackingField_17() { return &___U3CclickTimeU3Ek__BackingField_17; }
inline void set_U3CclickTimeU3Ek__BackingField_17(float value)
{
___U3CclickTimeU3Ek__BackingField_17 = value;
}
inline static int32_t get_offset_of_U3CclickCountU3Ek__BackingField_18() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CclickCountU3Ek__BackingField_18)); }
inline int32_t get_U3CclickCountU3Ek__BackingField_18() const { return ___U3CclickCountU3Ek__BackingField_18; }
inline int32_t* get_address_of_U3CclickCountU3Ek__BackingField_18() { return &___U3CclickCountU3Ek__BackingField_18; }
inline void set_U3CclickCountU3Ek__BackingField_18(int32_t value)
{
___U3CclickCountU3Ek__BackingField_18 = value;
}
inline static int32_t get_offset_of_U3CscrollDeltaU3Ek__BackingField_19() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CscrollDeltaU3Ek__BackingField_19)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_U3CscrollDeltaU3Ek__BackingField_19() const { return ___U3CscrollDeltaU3Ek__BackingField_19; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_U3CscrollDeltaU3Ek__BackingField_19() { return &___U3CscrollDeltaU3Ek__BackingField_19; }
inline void set_U3CscrollDeltaU3Ek__BackingField_19(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___U3CscrollDeltaU3Ek__BackingField_19 = value;
}
inline static int32_t get_offset_of_U3CuseDragThresholdU3Ek__BackingField_20() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CuseDragThresholdU3Ek__BackingField_20)); }
inline bool get_U3CuseDragThresholdU3Ek__BackingField_20() const { return ___U3CuseDragThresholdU3Ek__BackingField_20; }
inline bool* get_address_of_U3CuseDragThresholdU3Ek__BackingField_20() { return &___U3CuseDragThresholdU3Ek__BackingField_20; }
inline void set_U3CuseDragThresholdU3Ek__BackingField_20(bool value)
{
___U3CuseDragThresholdU3Ek__BackingField_20 = value;
}
inline static int32_t get_offset_of_U3CdraggingU3Ek__BackingField_21() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CdraggingU3Ek__BackingField_21)); }
inline bool get_U3CdraggingU3Ek__BackingField_21() const { return ___U3CdraggingU3Ek__BackingField_21; }
inline bool* get_address_of_U3CdraggingU3Ek__BackingField_21() { return &___U3CdraggingU3Ek__BackingField_21; }
inline void set_U3CdraggingU3Ek__BackingField_21(bool value)
{
___U3CdraggingU3Ek__BackingField_21 = value;
}
inline static int32_t get_offset_of_U3CbuttonU3Ek__BackingField_22() { return static_cast<int32_t>(offsetof(PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63, ___U3CbuttonU3Ek__BackingField_22)); }
inline int32_t get_U3CbuttonU3Ek__BackingField_22() const { return ___U3CbuttonU3Ek__BackingField_22; }
inline int32_t* get_address_of_U3CbuttonU3Ek__BackingField_22() { return &___U3CbuttonU3Ek__BackingField_22; }
inline void set_U3CbuttonU3Ek__BackingField_22(int32_t value)
{
___U3CbuttonU3Ek__BackingField_22 = value;
}
};
// UnityEngine.Experimental.GlobalIllumination.LightDataGI
struct LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2
{
public:
// System.Int32 UnityEngine.Experimental.GlobalIllumination.LightDataGI::instanceID
int32_t ___instanceID_0;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::color
LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD ___color_1;
// UnityEngine.Experimental.GlobalIllumination.LinearColor UnityEngine.Experimental.GlobalIllumination.LightDataGI::indirectColor
LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD ___indirectColor_2;
// UnityEngine.Quaternion UnityEngine.Experimental.GlobalIllumination.LightDataGI::orientation
Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 ___orientation_3;
// UnityEngine.Vector3 UnityEngine.Experimental.GlobalIllumination.LightDataGI::position
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___position_4;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::range
float ___range_5;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::coneAngle
float ___coneAngle_6;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::innerConeAngle
float ___innerConeAngle_7;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape0
float ___shape0_8;
// System.Single UnityEngine.Experimental.GlobalIllumination.LightDataGI::shape1
float ___shape1_9;
// UnityEngine.Experimental.GlobalIllumination.LightType UnityEngine.Experimental.GlobalIllumination.LightDataGI::type
uint8_t ___type_10;
// UnityEngine.Experimental.GlobalIllumination.LightMode UnityEngine.Experimental.GlobalIllumination.LightDataGI::mode
uint8_t ___mode_11;
// System.Byte UnityEngine.Experimental.GlobalIllumination.LightDataGI::shadow
uint8_t ___shadow_12;
// UnityEngine.Experimental.GlobalIllumination.FalloffType UnityEngine.Experimental.GlobalIllumination.LightDataGI::falloff
uint8_t ___falloff_13;
public:
inline static int32_t get_offset_of_instanceID_0() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___instanceID_0)); }
inline int32_t get_instanceID_0() const { return ___instanceID_0; }
inline int32_t* get_address_of_instanceID_0() { return &___instanceID_0; }
inline void set_instanceID_0(int32_t value)
{
___instanceID_0 = value;
}
inline static int32_t get_offset_of_color_1() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___color_1)); }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD get_color_1() const { return ___color_1; }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD * get_address_of_color_1() { return &___color_1; }
inline void set_color_1(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD value)
{
___color_1 = value;
}
inline static int32_t get_offset_of_indirectColor_2() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___indirectColor_2)); }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD get_indirectColor_2() const { return ___indirectColor_2; }
inline LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD * get_address_of_indirectColor_2() { return &___indirectColor_2; }
inline void set_indirectColor_2(LinearColor_tB8D05FA20CBA5254EA4D27D2B47D7B067FE506CD value)
{
___indirectColor_2 = value;
}
inline static int32_t get_offset_of_orientation_3() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___orientation_3)); }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 get_orientation_3() const { return ___orientation_3; }
inline Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 * get_address_of_orientation_3() { return &___orientation_3; }
inline void set_orientation_3(Quaternion_t319F3319A7D43FFA5D819AD6C0A98851F0095357 value)
{
___orientation_3 = value;
}
inline static int32_t get_offset_of_position_4() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___position_4)); }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 get_position_4() const { return ___position_4; }
inline Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * get_address_of_position_4() { return &___position_4; }
inline void set_position_4(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 value)
{
___position_4 = value;
}
inline static int32_t get_offset_of_range_5() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___range_5)); }
inline float get_range_5() const { return ___range_5; }
inline float* get_address_of_range_5() { return &___range_5; }
inline void set_range_5(float value)
{
___range_5 = value;
}
inline static int32_t get_offset_of_coneAngle_6() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___coneAngle_6)); }
inline float get_coneAngle_6() const { return ___coneAngle_6; }
inline float* get_address_of_coneAngle_6() { return &___coneAngle_6; }
inline void set_coneAngle_6(float value)
{
___coneAngle_6 = value;
}
inline static int32_t get_offset_of_innerConeAngle_7() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___innerConeAngle_7)); }
inline float get_innerConeAngle_7() const { return ___innerConeAngle_7; }
inline float* get_address_of_innerConeAngle_7() { return &___innerConeAngle_7; }
inline void set_innerConeAngle_7(float value)
{
___innerConeAngle_7 = value;
}
inline static int32_t get_offset_of_shape0_8() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shape0_8)); }
inline float get_shape0_8() const { return ___shape0_8; }
inline float* get_address_of_shape0_8() { return &___shape0_8; }
inline void set_shape0_8(float value)
{
___shape0_8 = value;
}
inline static int32_t get_offset_of_shape1_9() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shape1_9)); }
inline float get_shape1_9() const { return ___shape1_9; }
inline float* get_address_of_shape1_9() { return &___shape1_9; }
inline void set_shape1_9(float value)
{
___shape1_9 = value;
}
inline static int32_t get_offset_of_type_10() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___type_10)); }
inline uint8_t get_type_10() const { return ___type_10; }
inline uint8_t* get_address_of_type_10() { return &___type_10; }
inline void set_type_10(uint8_t value)
{
___type_10 = value;
}
inline static int32_t get_offset_of_mode_11() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___mode_11)); }
inline uint8_t get_mode_11() const { return ___mode_11; }
inline uint8_t* get_address_of_mode_11() { return &___mode_11; }
inline void set_mode_11(uint8_t value)
{
___mode_11 = value;
}
inline static int32_t get_offset_of_shadow_12() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___shadow_12)); }
inline uint8_t get_shadow_12() const { return ___shadow_12; }
inline uint8_t* get_address_of_shadow_12() { return &___shadow_12; }
inline void set_shadow_12(uint8_t value)
{
___shadow_12 = value;
}
inline static int32_t get_offset_of_falloff_13() { return static_cast<int32_t>(offsetof(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2, ___falloff_13)); }
inline uint8_t get_falloff_13() const { return ___falloff_13; }
inline uint8_t* get_address_of_falloff_13() { return &___falloff_13; }
inline void set_falloff_13(uint8_t value)
{
___falloff_13 = value;
}
};
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8
{
public:
// System.String UnityEngine.Playables.PlayableBinding::m_StreamName
String_t* ___m_StreamName_0;
// UnityEngine.Object UnityEngine.Playables.PlayableBinding::m_SourceObject
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * ___m_SourceObject_1;
// System.Type UnityEngine.Playables.PlayableBinding::m_SourceBindingType
Type_t * ___m_SourceBindingType_2;
// UnityEngine.Playables.PlayableBinding_CreateOutputMethod UnityEngine.Playables.PlayableBinding::m_CreateOutputMethod
CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * ___m_CreateOutputMethod_3;
public:
inline static int32_t get_offset_of_m_StreamName_0() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_StreamName_0)); }
inline String_t* get_m_StreamName_0() const { return ___m_StreamName_0; }
inline String_t** get_address_of_m_StreamName_0() { return &___m_StreamName_0; }
inline void set_m_StreamName_0(String_t* value)
{
___m_StreamName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_StreamName_0), (void*)value);
}
inline static int32_t get_offset_of_m_SourceObject_1() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceObject_1)); }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * get_m_SourceObject_1() const { return ___m_SourceObject_1; }
inline Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 ** get_address_of_m_SourceObject_1() { return &___m_SourceObject_1; }
inline void set_m_SourceObject_1(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * value)
{
___m_SourceObject_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceObject_1), (void*)value);
}
inline static int32_t get_offset_of_m_SourceBindingType_2() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_SourceBindingType_2)); }
inline Type_t * get_m_SourceBindingType_2() const { return ___m_SourceBindingType_2; }
inline Type_t ** get_address_of_m_SourceBindingType_2() { return &___m_SourceBindingType_2; }
inline void set_m_SourceBindingType_2(Type_t * value)
{
___m_SourceBindingType_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SourceBindingType_2), (void*)value);
}
inline static int32_t get_offset_of_m_CreateOutputMethod_3() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8, ___m_CreateOutputMethod_3)); }
inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * get_m_CreateOutputMethod_3() const { return ___m_CreateOutputMethod_3; }
inline CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 ** get_address_of_m_CreateOutputMethod_3() { return &___m_CreateOutputMethod_3; }
inline void set_m_CreateOutputMethod_3(CreateOutputMethod_tA7B649F49822FC5DD0B0D9F17247C73CAECB1CA3 * value)
{
___m_CreateOutputMethod_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CreateOutputMethod_3), (void*)value);
}
};
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields
{
public:
// UnityEngine.Playables.PlayableBinding[] UnityEngine.Playables.PlayableBinding::None
PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* ___None_4;
// System.Double UnityEngine.Playables.PlayableBinding::DefaultDuration
double ___DefaultDuration_5;
public:
inline static int32_t get_offset_of_None_4() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___None_4)); }
inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* get_None_4() const { return ___None_4; }
inline PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB** get_address_of_None_4() { return &___None_4; }
inline void set_None_4(PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* value)
{
___None_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___None_4), (void*)value);
}
inline static int32_t get_offset_of_DefaultDuration_5() { return static_cast<int32_t>(offsetof(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_StaticFields, ___DefaultDuration_5)); }
inline double get_DefaultDuration_5() const { return ___DefaultDuration_5; }
inline double* get_address_of_DefaultDuration_5() { return &___DefaultDuration_5; }
inline void set_DefaultDuration_5(double value)
{
___DefaultDuration_5 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_pinvoke
{
char* ___m_StreamName_0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// Native definition for COM marshalling of UnityEngine.Playables.PlayableBinding
struct PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_marshaled_com
{
Il2CppChar* ___m_StreamName_0;
Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com* ___m_SourceObject_1;
Type_t * ___m_SourceBindingType_2;
Il2CppMethodPointer ___m_CreateOutputMethod_3;
};
// UnityEngine.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;
}
};
// UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07
{
public:
// UnityEngine.UI.Navigation_Mode UnityEngine.UI.Navigation::m_Mode
int32_t ___m_Mode_0;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnUp
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnDown
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnLeft
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
// UnityEngine.UI.Selectable UnityEngine.UI.Navigation::m_SelectOnRight
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
public:
inline static int32_t get_offset_of_m_Mode_0() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_Mode_0)); }
inline int32_t get_m_Mode_0() const { return ___m_Mode_0; }
inline int32_t* get_address_of_m_Mode_0() { return &___m_Mode_0; }
inline void set_m_Mode_0(int32_t value)
{
___m_Mode_0 = value;
}
inline static int32_t get_offset_of_m_SelectOnUp_1() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnUp_1)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnUp_1() const { return ___m_SelectOnUp_1; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnUp_1() { return &___m_SelectOnUp_1; }
inline void set_m_SelectOnUp_1(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnUp_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnUp_1), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnDown_2() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnDown_2)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnDown_2() const { return ___m_SelectOnDown_2; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnDown_2() { return &___m_SelectOnDown_2; }
inline void set_m_SelectOnDown_2(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnDown_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnDown_2), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnLeft_3() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnLeft_3)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnLeft_3() const { return ___m_SelectOnLeft_3; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnLeft_3() { return &___m_SelectOnLeft_3; }
inline void set_m_SelectOnLeft_3(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnLeft_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnLeft_3), (void*)value);
}
inline static int32_t get_offset_of_m_SelectOnRight_4() { return static_cast<int32_t>(offsetof(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07, ___m_SelectOnRight_4)); }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * get_m_SelectOnRight_4() const { return ___m_SelectOnRight_4; }
inline Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A ** get_address_of_m_SelectOnRight_4() { return &___m_SelectOnRight_4; }
inline void set_m_SelectOnRight_4(Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * value)
{
___m_SelectOnRight_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_SelectOnRight_4), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_pinvoke
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// Native definition for COM marshalling of UnityEngine.UI.Navigation
struct Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_marshaled_com
{
int32_t ___m_Mode_0;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnUp_1;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnDown_2;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnLeft_3;
Selectable_tAA9065030FE0468018DEC880302F95FEA9C0133A * ___m_SelectOnRight_4;
};
// UnityEngine.UIElements.Length
struct Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300
{
public:
// System.Single UnityEngine.UIElements.Length::m_Value
float ___m_Value_0;
// UnityEngine.UIElements.LengthUnit UnityEngine.UIElements.Length::m_Unit
int32_t ___m_Unit_1;
public:
inline static int32_t get_offset_of_m_Value_0() { return static_cast<int32_t>(offsetof(Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300, ___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;
}
inline static int32_t get_offset_of_m_Unit_1() { return static_cast<int32_t>(offsetof(Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300, ___m_Unit_1)); }
inline int32_t get_m_Unit_1() const { return ___m_Unit_1; }
inline int32_t* get_address_of_m_Unit_1() { return &___m_Unit_1; }
inline void set_m_Unit_1(int32_t value)
{
___m_Unit_1 = value;
}
};
// GvrEventExecutor_EventDelegate
struct EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<System.Object>
struct Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 : public MulticastDelegate_t
{
public:
public:
};
// System.ArgumentException
struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
// System.String System.ArgumentException::m_paramName
String_t* ___m_paramName_17;
public:
inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); }
inline String_t* get_m_paramName_17() const { return ___m_paramName_17; }
inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; }
inline void set_m_paramName_17(String_t* value)
{
___m_paramName_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_paramName_17), (void*)value);
}
};
// System.Func`2<System.Object,System.Object>
struct Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 : public MulticastDelegate_t
{
public:
public:
};
// System.Func`2<System.Object,System.UInt32>
struct Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A : public MulticastDelegate_t
{
public:
public:
};
// System.NotSupportedException
struct NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.RankException
struct RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782
{
public:
public:
};
// System.Reflection.MonoProperty
struct MonoProperty_t : public RuntimePropertyInfo_t241956A29299F26A2F8B8829685E9D1F0345C5E4
{
public:
// System.IntPtr System.Reflection.MonoProperty::klass
intptr_t ___klass_0;
// System.IntPtr System.Reflection.MonoProperty::prop
intptr_t ___prop_1;
// System.Reflection.MonoPropertyInfo System.Reflection.MonoProperty::info
MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F ___info_2;
// System.Reflection.PInfo System.Reflection.MonoProperty::cached
int32_t ___cached_3;
// System.Reflection.MonoProperty_GetterAdapter System.Reflection.MonoProperty::cached_getter
GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * ___cached_getter_4;
public:
inline static int32_t get_offset_of_klass_0() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___klass_0)); }
inline intptr_t get_klass_0() const { return ___klass_0; }
inline intptr_t* get_address_of_klass_0() { return &___klass_0; }
inline void set_klass_0(intptr_t value)
{
___klass_0 = value;
}
inline static int32_t get_offset_of_prop_1() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___prop_1)); }
inline intptr_t get_prop_1() const { return ___prop_1; }
inline intptr_t* get_address_of_prop_1() { return &___prop_1; }
inline void set_prop_1(intptr_t value)
{
___prop_1 = value;
}
inline static int32_t get_offset_of_info_2() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___info_2)); }
inline MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F get_info_2() const { return ___info_2; }
inline MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F * get_address_of_info_2() { return &___info_2; }
inline void set_info_2(MonoPropertyInfo_tC5EFF918A3DCFB6A5DBAFB9B7DE3DEB56C72885F value)
{
___info_2 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___parent_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___declaring_type_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___name_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___get_method_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___info_2))->___set_method_4), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_cached_3() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___cached_3)); }
inline int32_t get_cached_3() const { return ___cached_3; }
inline int32_t* get_address_of_cached_3() { return &___cached_3; }
inline void set_cached_3(int32_t value)
{
___cached_3 = value;
}
inline static int32_t get_offset_of_cached_getter_4() { return static_cast<int32_t>(offsetof(MonoProperty_t, ___cached_getter_4)); }
inline GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * get_cached_getter_4() const { return ___cached_getter_4; }
inline GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 ** get_address_of_cached_getter_4() { return &___cached_getter_4; }
inline void set_cached_getter_4(GetterAdapter_t74BFEC5259F2A8BF1BD37E9AA4232A397F4BC711 * value)
{
___cached_getter_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___cached_getter_4), (void*)value);
}
};
// System.Reflection.MonoProperty_Getter`2<System.Object,System.Object>
struct Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C : public MulticastDelegate_t
{
public:
public:
};
// System.Reflection.MonoProperty_StaticGetter`1<System.Object>
struct StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 : public MulticastDelegate_t
{
public:
public:
};
// UnityEngine.UIElements.StyleSheets.StyleValue
struct StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371
{
public:
union
{
#pragma pack(push, tp, 1)
struct
{
// UnityEngine.UIElements.StyleSheets.StylePropertyID UnityEngine.UIElements.StyleSheets.StyleValue::id
int32_t ___id_0;
};
#pragma pack(pop, tp)
struct
{
int32_t ___id_0_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___keyword_1_OffsetPadding[4];
// UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.StyleSheets.StyleValue::keyword
int32_t ___keyword_1;
};
#pragma pack(pop, tp)
struct
{
char ___keyword_1_OffsetPadding_forAlignmentOnly[4];
int32_t ___keyword_1_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___number_2_OffsetPadding[8];
// System.Single UnityEngine.UIElements.StyleSheets.StyleValue::number
float ___number_2;
};
#pragma pack(pop, tp)
struct
{
char ___number_2_OffsetPadding_forAlignmentOnly[8];
float ___number_2_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___length_3_OffsetPadding[8];
// UnityEngine.UIElements.Length UnityEngine.UIElements.StyleSheets.StyleValue::length
Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 ___length_3;
};
#pragma pack(pop, tp)
struct
{
char ___length_3_OffsetPadding_forAlignmentOnly[8];
Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 ___length_3_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___color_4_OffsetPadding[8];
// UnityEngine.Color UnityEngine.UIElements.StyleSheets.StyleValue::color
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_4;
};
#pragma pack(pop, tp)
struct
{
char ___color_4_OffsetPadding_forAlignmentOnly[8];
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___color_4_forAlignmentOnly;
};
#pragma pack(push, tp, 1)
struct
{
char ___resource_5_OffsetPadding[8];
// System.Runtime.InteropServices.GCHandle UnityEngine.UIElements.StyleSheets.StyleValue::resource
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___resource_5;
};
#pragma pack(pop, tp)
struct
{
char ___resource_5_OffsetPadding_forAlignmentOnly[8];
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___resource_5_forAlignmentOnly;
};
};
public:
inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___id_0)); }
inline int32_t get_id_0() const { return ___id_0; }
inline int32_t* get_address_of_id_0() { return &___id_0; }
inline void set_id_0(int32_t value)
{
___id_0 = value;
}
inline static int32_t get_offset_of_keyword_1() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___keyword_1)); }
inline int32_t get_keyword_1() const { return ___keyword_1; }
inline int32_t* get_address_of_keyword_1() { return &___keyword_1; }
inline void set_keyword_1(int32_t value)
{
___keyword_1 = value;
}
inline static int32_t get_offset_of_number_2() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___number_2)); }
inline float get_number_2() const { return ___number_2; }
inline float* get_address_of_number_2() { return &___number_2; }
inline void set_number_2(float value)
{
___number_2 = value;
}
inline static int32_t get_offset_of_length_3() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___length_3)); }
inline Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 get_length_3() const { return ___length_3; }
inline Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 * get_address_of_length_3() { return &___length_3; }
inline void set_length_3(Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 value)
{
___length_3 = value;
}
inline static int32_t get_offset_of_color_4() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___color_4)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_color_4() const { return ___color_4; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_color_4() { return &___color_4; }
inline void set_color_4(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___color_4 = value;
}
inline static int32_t get_offset_of_resource_5() { return static_cast<int32_t>(offsetof(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371, ___resource_5)); }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 get_resource_5() const { return ___resource_5; }
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * get_address_of_resource_5() { return &___resource_5; }
inline void set_resource_5(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value)
{
___resource_5 = value;
}
};
// System.ArgumentNullException
struct ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
public:
};
// System.ArgumentOutOfRangeException
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA : public ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1
{
public:
// System.Object System.ArgumentOutOfRangeException::m_actualValue
RuntimeObject * ___m_actualValue_19;
public:
inline static int32_t get_offset_of_m_actualValue_19() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA, ___m_actualValue_19)); }
inline RuntimeObject * get_m_actualValue_19() const { return ___m_actualValue_19; }
inline RuntimeObject ** get_address_of_m_actualValue_19() { return &___m_actualValue_19; }
inline void set_m_actualValue_19(RuntimeObject * value)
{
___m_actualValue_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_actualValue_19), (void*)value);
}
};
struct ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields
{
public:
// System.String modreq(System.Runtime.CompilerServices.IsVolatile) System.ArgumentOutOfRangeException::_rangeMessage
String_t* ____rangeMessage_18;
public:
inline static int32_t get_offset_of__rangeMessage_18() { return static_cast<int32_t>(offsetof(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_StaticFields, ____rangeMessage_18)); }
inline String_t* get__rangeMessage_18() const { return ____rangeMessage_18; }
inline String_t** get_address_of__rangeMessage_18() { return &____rangeMessage_18; }
inline void set__rangeMessage_18(String_t* value)
{
____rangeMessage_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&____rangeMessage_18), (void*)value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// System.Object[]
struct ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair[]
struct ExtensionIntPairU5BU5D_t886F4A34B6FDE4624A466A603D613C6861EE057E : public RuntimeArray
{
public:
ALIGN_FIELD (8) ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D m_Items[1];
public:
inline ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D * 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, ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___msgType_0), (void*)NULL);
}
inline ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___msgType_0), (void*)NULL);
}
};
// Gvr.Internal.EmulatorTouchEvent_Pointer[]
struct PointerU5BU5D_t96866546CDEB1FE2B19AC7BF16BC33BFD08262DA : public RuntimeArray
{
public:
ALIGN_FIELD (8) Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F m_Items[1];
public:
inline Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F * 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, Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F value)
{
m_Items[index] = value;
}
};
// GvrControllerVisual_VisualAssets[]
struct VisualAssetsU5BU5D_t21AE5F549BC318C43336B54D1B04BC6BDD177311 : public RuntimeArray
{
public:
ALIGN_FIELD (8) VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC m_Items[1];
public:
inline VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC * 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, VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___mesh_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material_1), (void*)NULL);
#endif
}
inline VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___mesh_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material_1), (void*)NULL);
#endif
}
};
// Mono.Globalization.Unicode.CodePointIndexer_TableRange[]
struct TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A : public RuntimeArray
{
public:
ALIGN_FIELD (8) TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 m_Items[1];
public:
inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 * 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, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 value)
{
m_Items[index] = value;
}
};
// Mono.Security.Uri_UriScheme[]
struct UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C : public RuntimeArray
{
public:
ALIGN_FIELD (8) UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 m_Items[1];
public:
inline UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 * 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, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___scheme_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___delimiter_1), (void*)NULL);
#endif
}
inline UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___scheme_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___delimiter_1), (void*)NULL);
#endif
}
};
// 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.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.Collections.DictionaryEntry[]
struct DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 m_Items[1];
public:
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * 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, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_1), (void*)NULL);
#endif
}
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>[]
struct EntryU5BU5D_t30D5EB8C995ED896E0ADEA87F347F424D86AB1E0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 m_Items[1];
public:
inline Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___msgType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
#endif
}
inline Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_2))->___msgType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>[]
struct EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 m_Items[1];
public:
inline Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>[]
struct EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A m_Items[1];
public:
inline Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>[]
struct EntryU5BU5D_tA93CC0D3D3F601A01A462F4E82167104C9F63E37 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 m_Items[1];
public:
inline Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32Enum>[]
struct EntryU5BU5D_t7EB03C2429C4535344F6F745BDC0400570F0EA9E : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A m_Items[1];
public:
inline Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>[]
struct EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A m_Items[1];
public:
inline Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>[]
struct EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D m_Items[1];
public:
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>[]
struct EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 m_Items[1];
public:
inline Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
inline Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>[]
struct EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE m_Items[1];
public:
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>[]
struct EntryU5BU5D_t1A0116D04DC3E0F3519E158F660E851AAFC09FF7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF m_Items[1];
public:
inline Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
inline Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>[]
struct EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA m_Items[1];
public:
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
#endif
}
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>[]
struct EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D m_Items[1];
public:
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL);
#endif
}
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_2), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_3))->____value_0), (void*)NULL);
#endif
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>[]
struct EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 m_Items[1];
public:
inline Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>[]
struct EntryU5BU5D_tA3DE6559C7D1057EE7FD32925DC1D3187112AB3B : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A m_Items[1];
public:
inline Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
inline Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>[]
struct EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 m_Items[1];
public:
inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>[]
struct EntryU5BU5D_t50748B96662D70C34AB62339BEB0FBCFD115A7C3 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t687188C87EF1FD0D50038E634676DBC449857B8E m_Items[1];
public:
inline Entry_t687188C87EF1FD0D50038E634676DBC449857B8E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t687188C87EF1FD0D50038E634676DBC449857B8E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
inline Entry_t687188C87EF1FD0D50038E634676DBC449857B8E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t687188C87EF1FD0D50038E634676DBC449857B8E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>[]
struct EntryU5BU5D_tACA587DE043730DBEEF9EECD04FE179D7974F9A6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E m_Items[1];
public:
inline Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>[]
struct EntryU5BU5D_t0D1584C97CB839440D73C71D270E0712AC664709 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 m_Items[1];
public:
inline Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
inline Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// System.Collections.Generic.HashSet`1_Slot<System.Object>[]
struct SlotU5BU5D_t9C4FFBCC974570D24EDC1028CCD0269BE774B36C : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 m_Items[1];
public:
inline Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 * 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, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_2), (void*)NULL);
}
inline Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_2), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>[]
struct KeyValuePair_2U5BU5D_t130F904919E00A0F5BD91F2BAD7626CCDA61ABBF : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 m_Items[1];
public:
inline KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 * 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_t150941F781F5C0219943CA6E47663CDE1CBA4781 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_0))->___msgType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___key_0))->___msgType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>[]
struct KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 m_Items[1];
public:
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 * 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_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>[]
struct KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 m_Items[1];
public:
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * 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_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>[]
struct KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 m_Items[1];
public:
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 * 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_t411E4248A20D0FDB15190B13EA12EBCB69500C82 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>[]
struct KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F m_Items[1];
public:
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F * 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_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>[]
struct KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 m_Items[1];
public:
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * 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_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>[]
struct KeyValuePair_2U5BU5D_tF57C1701FA2CB38EF64FD6039903B4EB5D3C013E : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E m_Items[1];
public:
inline KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E * 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_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>[]
struct KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 m_Items[1];
public:
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 * 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_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>[]
struct KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE m_Items[1];
public:
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE * 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_t86464C52F9602337EAC68825E6BE06951D7530CE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>[]
struct KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA m_Items[1];
public:
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA * 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_t01369E536C15A7A1AF58F260AD740C479FBFC4EA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>[]
struct KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E m_Items[1];
public:
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * 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_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>[]
struct KeyValuePair_2U5BU5D_t3A413F0268AB366611BCB5688C157768FCD1B85A : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 m_Items[1];
public:
inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * 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_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>[]
struct KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE m_Items[1];
public:
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * 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_t23481547E419E16E3B96A303578C1EB685C99EEE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>[]
struct KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 m_Items[1];
public:
inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * 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_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_1))->____value_0), (void*)NULL);
#endif
}
inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___value_1))->____value_0), (void*)NULL);
#endif
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>[]
struct KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C m_Items[1];
public:
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C * 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_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>[]
struct KeyValuePair_2U5BU5D_tFF83EB73DF79412BBDF99182ADBCE71EBF101EE8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 m_Items[1];
public:
inline KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 * 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_tB806C2F98E1E3559B07973D57F289EAD64113D67 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>[]
struct KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 m_Items[1];
public:
inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 * 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_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>[]
struct KeyValuePair_2U5BU5D_t6A43305072C9AA017F5C3B4E4B2953AE5C85A27E : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 m_Items[1];
public:
inline KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 * 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_t198F3EF99C5CB706B8E678896CA900035FACF342 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>[]
struct KeyValuePair_2U5BU5D_tF7650E1C358CD17F3EE16DF6F841B83A2C1FCD31 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 m_Items[1];
public:
inline KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 * 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_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 value)
{
m_Items[index] = value;
}
};
// System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>[]
struct KeyValuePair_2U5BU5D_t8AF2A040BD67A77CB9AB2B14EE463382950C36DF : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA m_Items[1];
public:
inline KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA * 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_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
inline KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// System.Collections.Hashtable_bucket[]
struct bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A : public RuntimeArray
{
public:
ALIGN_FIELD (8) bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 m_Items[1];
public:
inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 * 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, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___val_1), (void*)NULL);
#endif
}
inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___val_1), (void*)NULL);
#endif
}
};
// System.DateTime[]
struct DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 m_Items[1];
public:
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * 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, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 value)
{
m_Items[index] = value;
}
};
// System.Decimal[]
struct DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F : public RuntimeArray
{
public:
ALIGN_FIELD (8) Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 m_Items[1];
public:
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * 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, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 value)
{
m_Items[index] = value;
}
};
// System.Diagnostics.Tracing.EventProvider_SessionInfo[]
struct SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A m_Items[1];
public:
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * 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, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A value)
{
m_Items[index] = value;
}
};
// System.Diagnostics.Tracing.EventSource_EventMetadata[]
struct EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94 : public RuntimeArray
{
public:
ALIGN_FIELD (8) EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B m_Items[1];
public:
inline EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B * 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, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_6), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Message_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Parameters_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___TraceLoggingEventTypes_9), (void*)NULL);
#endif
}
inline EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_6), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Message_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Parameters_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___TraceLoggingEventTypes_9), (void*)NULL);
#endif
}
};
// System.Double[]
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D : public RuntimeArray
{
public:
ALIGN_FIELD (8) double m_Items[1];
public:
inline double GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline double* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, double value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline double GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline double* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, double value)
{
m_Items[index] = value;
}
};
// System.Globalization.InternalCodePageDataItem[]
struct InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834 : public RuntimeArray
{
public:
ALIGN_FIELD (8) InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 m_Items[1];
public:
inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Names_3), (void*)NULL);
}
inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Names_3), (void*)NULL);
}
};
// System.Globalization.InternalEncodingDataItem[]
struct InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68 : public RuntimeArray
{
public:
ALIGN_FIELD (8) InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 m_Items[1];
public:
inline InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 * 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, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___webName_0), (void*)NULL);
}
inline InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___webName_0), (void*)NULL);
}
};
// System.Guid[]
struct GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF : public RuntimeArray
{
public:
ALIGN_FIELD (8) Guid_t m_Items[1];
public:
inline Guid_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Guid_t * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Guid_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Guid_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Guid_t * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Guid_t value)
{
m_Items[index] = value;
}
};
// System.Int16[]
struct Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int16_t m_Items[1];
public:
inline int16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int16_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value)
{
m_Items[index] = value;
}
};
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int32_t m_Items[1];
public:
inline int32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
{
m_Items[index] = value;
}
};
// System.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.Int64[]
struct Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F : public RuntimeArray
{
public:
ALIGN_FIELD (8) int64_t m_Items[1];
public:
inline int64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
{
m_Items[index] = value;
}
};
// System.IntPtr[]
struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD : public RuntimeArray
{
public:
ALIGN_FIELD (8) intptr_t m_Items[1];
public:
inline intptr_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline intptr_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, intptr_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline intptr_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline intptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, intptr_t value)
{
m_Items[index] = value;
}
};
// System.ParameterizedStrings_FormatParam[]
struct FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 m_Items[1];
public:
inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 * 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, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____string_1), (void*)NULL);
}
inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____string_1), (void*)NULL);
}
};
// System.Reflection.CustomAttributeNamedArgument[]
struct CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E m_Items[1];
public:
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___typedArgument_0))->___value_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___memberInfo_1), (void*)NULL);
#endif
}
};
// System.Reflection.CustomAttributeTypedArgument[]
struct CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05 : public RuntimeArray
{
public:
ALIGN_FIELD (8) CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 m_Items[1];
public:
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___argumentType_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// System.Reflection.ParameterModifier[]
struct ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA : public RuntimeArray
{
public:
ALIGN_FIELD (8) ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E m_Items[1];
public:
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * 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, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____byRef_0), (void*)NULL);
}
};
// System.Resources.ResourceLocator[]
struct ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC : public RuntimeArray
{
public:
ALIGN_FIELD (8) ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C m_Items[1];
public:
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * 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, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_0), (void*)NULL);
}
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value_0), (void*)NULL);
}
};
// System.Runtime.CompilerServices.Ephemeron[]
struct EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA m_Items[1];
public:
inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA * GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
#endif
}
};
// System.Runtime.InteropServices.GCHandle[]
struct GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 m_Items[1];
public:
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * 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, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 value)
{
m_Items[index] = value;
}
};
// System.SByte[]
struct SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889 : public RuntimeArray
{
public:
ALIGN_FIELD (8) int8_t m_Items[1];
public:
inline int8_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline int8_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, int8_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value)
{
m_Items[index] = value;
}
};
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) float m_Items[1];
public:
inline float GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline float* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, float value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline float GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
{
m_Items[index] = value;
}
};
// System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping[]
struct LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D : public RuntimeArray
{
public:
ALIGN_FIELD (8) LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B m_Items[1];
public:
inline LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B * 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, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B value)
{
m_Items[index] = value;
}
};
// System.Threading.CancellationTokenRegistration[]
struct CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B : public RuntimeArray
{
public:
ALIGN_FIELD (8) CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 m_Items[1];
public:
inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * 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, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_callbackInfo_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___m_registrationInfo_1))->___m_source_0), (void*)NULL);
#endif
}
inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_callbackInfo_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___m_registrationInfo_1))->___m_source_0), (void*)NULL);
#endif
}
};
// System.TimeSpan[]
struct TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 m_Items[1];
public:
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * 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, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value)
{
m_Items[index] = value;
}
};
// System.UInt16[]
struct UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint16_t m_Items[1];
public:
inline uint16_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint16_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint16_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint16_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint16_t value)
{
m_Items[index] = value;
}
};
// System.UInt32[]
struct UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint32_t m_Items[1];
public:
inline uint32_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint32_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint32_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint32_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint32_t value)
{
m_Items[index] = value;
}
};
// System.UInt64[]
struct UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) uint64_t m_Items[1];
public:
inline uint64_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uint64_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uint64_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uint64_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uint64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uint64_t value)
{
m_Items[index] = value;
}
};
// System.UIntPtr[]
struct UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E : public RuntimeArray
{
public:
ALIGN_FIELD (8) uintptr_t m_Items[1];
public:
inline uintptr_t GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline uintptr_t* GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, uintptr_t value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline uintptr_t GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline uintptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, uintptr_t value)
{
m_Items[index] = value;
}
};
// 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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___fontAsset_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___fallbackMaterial_6), (void*)NULL);
#endif
}
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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___fontAsset_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___fallbackMaterial_6), (void*)NULL);
#endif
}
};
// TMPro.RichTextTagAttribute[]
struct RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 m_Items[1];
public:
inline RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 * 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, RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 value)
{
m_Items[index] = value;
}
};
// TMPro.SpriteAssetUtilities.TexturePacker_SpriteData[]
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 m_Items[1];
public:
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 * 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, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___filename_0), (void*)NULL);
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___filename_0), (void*)NULL);
}
};
// 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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textElement_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___fontAsset_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___spriteAsset_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material_8), (void*)NULL);
#endif
}
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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textElement_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___fontAsset_5), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___spriteAsset_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___material_8), (void*)NULL);
#endif
}
};
// TMPro.TMP_FontWeightPair[]
struct TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 m_Items[1];
public:
inline TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 * 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_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___regularTypeface_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___italicTypeface_1), (void*)NULL);
#endif
}
inline TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___regularTypeface_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___italicTypeface_1), (void*)NULL);
#endif
}
};
// TMPro.TMP_LineInfo[]
struct TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 m_Items[1];
public:
inline TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 * 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_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textComponent_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___linkID_6), (void*)NULL);
#endif
}
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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textComponent_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___linkID_6), (void*)NULL);
#endif
}
};
// 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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___mesh_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___vertices_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___normals_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___tangents_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___uvs0_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___uvs2_10), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___colors32_11), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___triangles_12), (void*)NULL);
#endif
}
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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___mesh_4), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___vertices_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___normals_7), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___tangents_8), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___uvs0_9), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___uvs2_10), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___colors32_11), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___triangles_12), (void*)NULL);
#endif
}
};
// 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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textComponent_0), (void*)NULL);
}
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;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___textComponent_0), (void*)NULL);
}
};
// UnityEngine.BeforeRenderHelper_OrderBlock[]
struct OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101 : public RuntimeArray
{
public:
ALIGN_FIELD (8) OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 m_Items[1];
public:
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * 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, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___callback_1), (void*)NULL);
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___callback_1), (void*)NULL);
}
};
// 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.Color[]
struct ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 m_Items[1];
public:
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * 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, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
m_Items[index] = value;
}
};
// UnityEngine.ContactPoint2D[]
struct ContactPoint2DU5BU5D_t390B6CBF0673E9C408A97BC093462A33516F2C32 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 m_Items[1];
public:
inline ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 * 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, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 value)
{
m_Items[index] = value;
}
};
// UnityEngine.ContactPoint[]
struct ContactPointU5BU5D_t10BB5D5BFFFA3C919FD97DFDEDB49D954AFB8EAA : public RuntimeArray
{
public:
ALIGN_FIELD (8) ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 m_Items[1];
public:
inline ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 * 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, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 value)
{
m_Items[index] = value;
}
};
// UnityEngine.EventSystems.RaycastResult[]
struct RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 m_Items[1];
public:
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * 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, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_GameObject_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___module_1), (void*)NULL);
#endif
}
};
// UnityEngine.Experimental.GlobalIllumination.LightDataGI[]
struct LightDataGIU5BU5D_t32090CD353F0F6CDAC73FAFCC2D3F5EF78251B8A : public RuntimeArray
{
public:
ALIGN_FIELD (8) LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 m_Items[1];
public:
inline LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 * 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, LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord[]
struct TileCoordU5BU5D_t5C91F6A2350FCA55BAD893C1C4ECAF553A8070F7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA m_Items[1];
public:
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * 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, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA value)
{
m_Items[index] = value;
}
};
// UnityEngine.Keyframe[]
struct KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D : public RuntimeArray
{
public:
ALIGN_FIELD (8) Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 m_Items[1];
public:
inline Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 * 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, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 value)
{
m_Items[index] = value;
}
};
// UnityEngine.LowLevel.PlayerLoopSystem[]
struct PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77 : public RuntimeArray
{
public:
ALIGN_FIELD (8) PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 m_Items[1];
public:
inline PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 * 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, PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___type_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___subSystemList_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___updateDelegate_2), (void*)NULL);
#endif
}
inline PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___type_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___subSystemList_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___updateDelegate_2), (void*)NULL);
#endif
}
};
// UnityEngine.Plane[]
struct PlaneU5BU5D_t79471E0ABE147C3018D88A036897B6DB49A782AA : public RuntimeArray
{
public:
ALIGN_FIELD (8) Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED m_Items[1];
public:
inline Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED * 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, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED value)
{
m_Items[index] = value;
}
};
// UnityEngine.Playables.PlayableBinding[]
struct PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB : public RuntimeArray
{
public:
ALIGN_FIELD (8) PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 m_Items[1];
public:
inline PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 * 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, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_StreamName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SourceObject_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SourceBindingType_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_CreateOutputMethod_3), (void*)NULL);
#endif
}
inline PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_StreamName_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SourceObject_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SourceBindingType_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_CreateOutputMethod_3), (void*)NULL);
#endif
}
};
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE m_Items[1];
public:
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * 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, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE value)
{
m_Items[index] = value;
}
};
// UnityEngine.RaycastHit[]
struct RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 m_Items[1];
public:
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * 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, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 value)
{
m_Items[index] = value;
}
};
// UnityEngine.Rendering.BatchVisibility[]
struct BatchVisibilityU5BU5D_t1594EA24FEB32F1AE80229DED3C45FF7F2DF0AA4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 m_Items[1];
public:
inline BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 * 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, BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 value)
{
m_Items[index] = value;
}
};
// UnityEngine.SendMouseEvents_HitInfo[]
struct HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 m_Items[1];
public:
inline HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 * 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, HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___target_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___camera_1), (void*)NULL);
#endif
}
inline HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___target_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___camera_1), (void*)NULL);
#endif
}
};
// UnityEngine.TextCore.GlyphRect[]
struct GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C m_Items[1];
public:
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * 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, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
m_Items[index] = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct[]
struct GlyphMarshallingStructU5BU5D_tB5E281DB809E6848B7CC9F02763B5E5AAE5E5662 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 m_Items[1];
public:
inline GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 * 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, GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 value)
{
m_Items[index] = value;
}
};
// UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord[]
struct GlyphPairAdjustmentRecordU5BU5D_tE4D7700D820175D7726010904F8477E90C1823E7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C m_Items[1];
public:
inline GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C * 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, GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C value)
{
m_Items[index] = value;
}
};
// UnityEngine.UI.ColorBlock[]
struct ColorBlockU5BU5D_tD84A362F1D993005D8CA9E0B5AB8967468418DE7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA m_Items[1];
public:
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * 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, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA value)
{
m_Items[index] = value;
}
};
// UnityEngine.UI.Navigation[]
struct NavigationU5BU5D_tED2679638506D7BDA5062C2FE17EC5F169233A6D : public RuntimeArray
{
public:
ALIGN_FIELD (8) Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 m_Items[1];
public:
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * 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, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnUp_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnDown_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnLeft_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnRight_4), (void*)NULL);
#endif
}
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnUp_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnDown_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnLeft_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectOnRight_4), (void*)NULL);
#endif
}
};
// UnityEngine.UI.SpriteState[]
struct SpriteStateU5BU5D_t6452EE17737027DABCA2DCEC11461C3CBF40FCDC : public RuntimeArray
{
public:
ALIGN_FIELD (8) SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A m_Items[1];
public:
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A * 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, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_HighlightedSprite_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_PressedSprite_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectedSprite_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DisabledSprite_3), (void*)NULL);
#endif
}
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_HighlightedSprite_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_PressedSprite_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SelectedSprite_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DisabledSprite_3), (void*)NULL);
#endif
}
};
// UnityEngine.UICharInfo[]
struct UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482 : public RuntimeArray
{
public:
ALIGN_FIELD (8) UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A m_Items[1];
public:
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A * 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, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A value)
{
m_Items[index] = value;
}
};
// UnityEngine.UIElements.EventDispatcher_DispatchContext[]
struct DispatchContextU5BU5D_t4467426EBDEB3B12C25D99303F7B67A6411B1BC8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA m_Items[1];
public:
inline DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA * 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, DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Queue_1), (void*)NULL);
}
inline DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Queue_1), (void*)NULL);
}
};
// UnityEngine.UIElements.EventDispatcher_EventRecord[]
struct EventRecordU5BU5D_tCCE77A3C5C7FBB76F0BAC802BD005880513F5A94 : public RuntimeArray
{
public:
ALIGN_FIELD (8) EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 m_Items[1];
public:
inline EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 * 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, EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Event_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Panel_1), (void*)NULL);
#endif
}
inline EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Event_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_Panel_1), (void*)NULL);
#endif
}
};
// UnityEngine.UIElements.FocusController_FocusedElement[]
struct FocusedElementU5BU5D_t64FC9A029ED86FA4C46BC885D17EB0FCE386BB13 : public RuntimeArray
{
public:
ALIGN_FIELD (8) FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 m_Items[1];
public:
inline FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 * 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, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SubTreeRoot_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_FocusedElement_1), (void*)NULL);
#endif
}
inline FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_SubTreeRoot_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_FocusedElement_1), (void*)NULL);
#endif
}
};
// UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey[]
struct SheetHandleKeyU5BU5D_t3A34A624E16C7EEEE288315CA38FFD82DEE42C14 : public RuntimeArray
{
public:
ALIGN_FIELD (8) SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 m_Items[1];
public:
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 * 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, SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UIElements.StyleSheets.StyleValue[]
struct StyleValueU5BU5D_t510329266B7162817A9059A6EF69BC3EF02A0D3D : public RuntimeArray
{
public:
ALIGN_FIELD (8) StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 m_Items[1];
public:
inline StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 * 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, StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UILineInfo[]
struct UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC : public RuntimeArray
{
public:
ALIGN_FIELD (8) UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 m_Items[1];
public:
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 * 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, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UIVertex[]
struct UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A : public RuntimeArray
{
public:
ALIGN_FIELD (8) UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 m_Items[1];
public:
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * 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, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 value)
{
m_Items[index] = value;
}
};
// UnityEngine.UnitySynchronizationContext_WorkRequest[]
struct WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 m_Items[1];
public:
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * 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, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateCallback_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_DelagateState_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___m_WaitHandle_2), (void*)NULL);
#endif
}
};
// 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;
}
};
// UnityEngine.Windows.Speech.SemanticMeaning[]
struct SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D : public RuntimeArray
{
public:
ALIGN_FIELD (8) SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C m_Items[1];
public:
inline SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C * 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, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___values_1), (void*)NULL);
#endif
}
inline SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___values_1), (void*)NULL);
#endif
}
};
// UnityEngine.jvalue[]
struct jvalueU5BU5D_t9AA52DD48CAF5296AE8A2F758A488A2B14B820E3 : public RuntimeArray
{
public:
ALIGN_FIELD (8) jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 m_Items[1];
public:
inline jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 * 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, jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 value)
{
m_Items[index] = value;
}
};
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::TryGetValue(!0,!1&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject ** ___value1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, RuntimeObject * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Remove(!0)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * ___key0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Rank()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1 (RuntimeArray * __this, const RuntimeMethod* method);
// System.String Locale::GetText(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324 (String_t* ___msg0, const RuntimeMethod* method);
// System.Void System.RankException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Int32 System.Array::get_Length()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D (RuntimeArray * __this, const RuntimeMethod* method);
// System.Int32 System.Array::GetLowerBound(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B (RuntimeArray * __this, int32_t ___dimension0, const RuntimeMethod* method);
// System.Boolean System.Boolean::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7 (bool* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Byte::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF (uint8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Char::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8 (Il2CppChar* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.DateTime::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Boolean System.Decimal::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Decimal_Equals_mCEF3806BE2E8CA730568C45CF90E129159DC476A (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Boolean System.Double::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33 (double* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Guid::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Guid_Equals_m60BF5DC8994BB5189C703CD997EC6A2E0C491F8A (Guid_t * __this, RuntimeObject * ___o0, const RuntimeMethod* method);
// System.Boolean System.Int16::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024 (int16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int32::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C (int32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Int64::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C (int64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.IntPtr::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D (intptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Reflection.CustomAttributeNamedArgument::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CustomAttributeNamedArgument_Equals_mDA255630CA97FF60745C1B0440ACF44B3E94998B (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Reflection.CustomAttributeTypedArgument::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CustomAttributeTypedArgument_Equals_mCBC1A766B39E8BE8BAE5B85F0C9B18797366CC88 (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Runtime.InteropServices.GCHandle::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GCHandle_Equals_m9F3AFCE77E2A8601073DA0D0C158BF618369A842 (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 * __this, RuntimeObject * ___o0, const RuntimeMethod* method);
// System.Boolean System.SByte::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SByte_Equals_m4B25C5FC7403EB2480D9F70F9B48C5619C6DD144 (int8_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Single::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Single_Equals_mF4C7AEA9D216B3C9CB735BF327D07BF50F101A16 (float* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationTokenRegistration::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationTokenRegistration_Equals_m10EEB16AA8BC130896117762D369A9F4BA60D212 (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.TimeSpan::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70 (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * __this, RuntimeObject * ___value0, const RuntimeMethod* method);
// System.Boolean System.UInt16::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt16_Equals_mBCD7FC4A11D0CEEFF4BC6559137A9E397D7017B8 (uint16_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.UInt32::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt32_Equals_m44E796DB35F5DB4E5D4C98EC6AB5053242A320C3 (uint32_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.UInt64::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UInt64_Equals_mE61D24B984F0B91A2FC1094402F1532A0F82C232 (uint64_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean System.UIntPtr::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool UIntPtr_Equals_m8C135DEDA578597066AB67C1DD5A5A34E4F860EB (uintptr_t* __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Color::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Color_Equals_m63ECBA87A0F27CD7D09EEA36BCB697652E076F4E (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.TextCore.GlyphRect::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GlyphRect_Equals_m0AC7F5A910EDE18B48500657446BD514CA555114 (GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.UI.ColorBlock::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ColorBlock_Equals_m5F50CD8C86A89B8EFA4E878BD914656ECEB0177D (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA * __this, RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector2::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector2_Equals_m4A2A75BC3D09933321220BCEF21219B38AF643AE (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector3::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector3_Equals_m1F74B1FB7EE51589FFFA61D894F616B8F258C056 (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.Vector4::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Vector4_Equals_m552ECA9ECD220D6526D8ECC9902016B6FC6D49B5 (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String,System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, String_t* ___message1, const RuntimeMethod* method);
// System.Type System.Object::GetType()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60 (RuntimeObject * __this, const RuntimeMethod* method);
// System.Int32 System.Runtime.InteropServices.Marshal::SizeOf(System.Type)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Marshal_SizeOf_m4F7DA827FA7A720395E6FDD2ABE78D4B00D43130 (Type_t * ___t0, const RuntimeMethod* method);
// System.Int32 UnityEngine.Object::GetInstanceID()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Object_GetInstanceID_m33A817CEE904B3362C8BAAF02DB45976575CBEF4 (Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 * __this, const RuntimeMethod* method);
// System.IntPtr System.Runtime.InteropServices.Marshal::GetFunctionPointerForDelegateInternal(System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Marshal_GetFunctionPointerForDelegateInternal_m066BAA3D0374CDB64AF23184986FD4D9DA211994 (Delegate_t * ___d0, const RuntimeMethod* method);
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID(System.IntPtr,System.String,System.String,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43 (intptr_t ___javaClass0, String_t* ___methodName1, String_t* ___signature2, bool ___isStatic3, const RuntimeMethod* method);
// System.Exception System.Linq.Error::ArgumentNull(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Exception_t * Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7 (String_t* ___s0, const RuntimeMethod* method);
// System.String System.String::Format(System.String,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA (String_t* ___format0, RuntimeObject * ___arg01, const RuntimeMethod* method);
// System.Void System.Text.StringBuilder::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E (StringBuilder_t * __this, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar ___value0, const RuntimeMethod* method);
// System.String UnityEngine._AndroidJNIHelper::GetSignature(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B (RuntimeObject * ___obj0, const RuntimeMethod* method);
// System.Text.StringBuilder System.Text.StringBuilder::Append(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method);
// System.Type System.Type::GetTypeFromHandle(System.RuntimeTypeHandle)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6 (RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D ___handle0, const RuntimeMethod* method);
// System.Boolean System.Threading.CancellationToken::get_IsCancellationRequested()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB * __this, const RuntimeMethod* method);
// System.Void System.ArgumentOutOfRangeException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6 (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * __this, String_t* ___paramName0, const RuntimeMethod* method);
// System.Void Google.ProtocolBuffers.CodedInputStream::ReadMessage(Google.ProtocolBuffers.IBuilderLite,Google.ProtocolBuffers.ExtensionRegistry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodedInputStream_ReadMessage_m06AF1DDDC81E6C3859B900E2456C1DF2D99F5CB2 (CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816 * __this, RuntimeObject* ___builder0, ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 * ___extensionRegistry1, const RuntimeMethod* method);
// System.Boolean Google.ProtocolBuffers.CodedInputStream::ContinueArray(System.UInt32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool CodedInputStream_ContinueArray_m2697736DF82E5C8DCE4CB6FE5FCFA7A57D7A9B7A (CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816 * __this, uint32_t ___currentTag0, const RuntimeMethod* method);
// System.Void Google.ProtocolBuffers.CodedOutputStream::WriteMessage(System.Int32,System.String,Google.ProtocolBuffers.IMessageLite)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodedOutputStream_WriteMessage_m02B93FB2D780DF632F276A3BD7ABC34FED4F6570 (CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5 * __this, int32_t ___fieldNumber0, String_t* ___fieldName1, RuntimeObject* ___value2, const RuntimeMethod* method);
// System.Void System.ArgumentNullException::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510 (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * __this, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,GvrEventExecutor/EventDelegate>::TryGetValue(!0,!1&)
inline bool Dictionary_2_TryGetValue_m52C57CA7F53B7216B84CE1D164896D0756E470DD (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * __this, Type_t * ___key0, EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 ** ___value1, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *, Type_t *, EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 **, const RuntimeMethod*))Dictionary_2_TryGetValue_m3455807C552312C60038DF52EF328C3687442DE3_gshared)(__this, ___key0, ___value1, method);
}
// System.Delegate System.Delegate::Combine(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1 (Delegate_t * ___a0, Delegate_t * ___b1, const RuntimeMethod* method);
// System.Void System.Collections.Generic.Dictionary`2<System.Type,GvrEventExecutor/EventDelegate>::set_Item(!0,!1)
inline void Dictionary_2_set_Item_m91A3BDD60842621406838EB3A46C9FD5D0E320FB (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * __this, Type_t * ___key0, EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * ___value1, const RuntimeMethod* method)
{
(( void (*) (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *, Type_t *, EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, ___key0, ___value1, method);
}
// System.Void UnityEngine.Debug::LogError(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29 (RuntimeObject * ___message0, const RuntimeMethod* method);
// System.Void GvrEventExecutor/EventDelegate::Invoke(UnityEngine.GameObject,UnityEngine.EventSystems.PointerEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDelegate_Invoke_m2CC074CE09CB43749571E8A373D272B1F9E019AA (EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * ___eventData1, const RuntimeMethod* method);
// System.Delegate System.Delegate::Remove(System.Delegate,System.Delegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Delegate_t * Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D (Delegate_t * ___source0, Delegate_t * ___value1, const RuntimeMethod* method);
// System.Boolean System.Collections.Generic.Dictionary`2<System.Type,GvrEventExecutor/EventDelegate>::Remove(!0)
inline bool Dictionary_2_Remove_m47ABCF90B5038DB37833A59B3D86D005FADC6597 (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * __this, Type_t * ___key0, const RuntimeMethod* method)
{
return (( bool (*) (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *, Type_t *, const RuntimeMethod*))Dictionary_2_Remove_m0FCCD33CE2C6A7589E52A2AB0872FE361BF5EF60_gshared)(__this, ___key0, method);
}
// System.Void System.NotSupportedException::.ctor(System.String)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mD023A89A5C1F740F43F0A9CD6C49DC21230B3CEE (NotSupportedException_tE75B318D6590A02A5D9B29FD97409B1750FA0010 * __this, String_t* ___message0, const RuntimeMethod* method);
// System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32)
IL2CPP_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.Int32 System.Array::InternalArray__IndexOf<Gvr.Internal.EmulatorTouchEvent_Pointer>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mB47688B84BCCC2DA2DA4F8EB0B84C9BB4BE5761B_gshared (RuntimeArray * __this, Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mB47688B84BCCC2DA2DA4F8EB0B84C9BB4BE5761B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mB47688B84BCCC2DA2DA4F8EB0B84C9BB4BE5761B_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F *)(Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F L_9 = ___item0;
Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<GvrControllerVisual_VisualAssets>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m3BCAC45BBFF80147157A9F1771A45374311326C9_gshared (RuntimeArray * __this, VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m3BCAC45BBFF80147157A9F1771A45374311326C9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m3BCAC45BBFF80147157A9F1771A45374311326C9_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC *)(VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC L_9 = ___item0;
VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_gshared (RuntimeArray * __this, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m293EA28BAD3E4A83929BAE545B1011CC6143CEBB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_9 = ___item0;
TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<Mono.Security.Uri_UriScheme>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_gshared (RuntimeArray * __this, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mB660489B728CE8C089645F41EEC79DFE051FCF77_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 L_9 = ___item0;
UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Boolean>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_gshared (RuntimeArray * __this, bool ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bool V_2 = false;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mC20BDC11F0575D4DDACD88DEAB020A75B564F11A_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (bool*)(bool*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
bool L_9 = ___item0;
bool L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Boolean_Equals_mB97E1CE732F7A08D8F45C86B8994FB67222C99E7((bool*)(bool*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Byte>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint8_t V_2 = 0x0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m29830CD9ACA0126B5E56A827D3E7C1EEFDAFFB8D_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint8_t*)(uint8_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
uint8_t L_9 = ___item0;
uint8_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Byte_Equals_m5B72B20F4E6E41D9D288EE528274D5DA6AAADCDF((uint8_t*)(uint8_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Char>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_gshared (RuntimeArray * __this, Il2CppChar ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Il2CppChar V_2 = 0x0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m8F737294D199447E8600FE272EF4B479D43BB930_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Il2CppChar*)(Il2CppChar*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Il2CppChar L_9 = ___item0;
Il2CppChar L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Char_Equals_mE3AD655E668CAE1B4AD8444B746166FD80C662D8((Il2CppChar*)(Il2CppChar*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.DictionaryEntry>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_gshared (RuntimeArray * __this, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m9B747BA30199C9DEF5EFC5DDDCC6B41417445BD0_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_9 = ___item0;
DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m1498289D808C1C9BFF1EFAD70061F25CB87E5F0F_gshared (RuntimeArray * __this, Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m1498289D808C1C9BFF1EFAD70061F25CB87E5F0F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m1498289D808C1C9BFF1EFAD70061F25CB87E5F0F_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 *)(Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 L_9 = ___item0;
Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_gshared (RuntimeArray * __this, Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m29D2C81E85706E37680406C712B7C8D7059BC4C1_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_9 = ___item0;
Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_gshared (RuntimeArray * __this, Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m0002994DEEB217F54EC3111A86BCBEF435DA2B1F_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_9 = ___item0;
Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_gshared (RuntimeArray * __this, Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m66CF6D3513851813DD6659C268BB12FBC88DA4BA_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_9 = ___item0;
Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32Enum>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m1D41E412ADFFA7B56929AFFD8C2EF7076C82D39E_gshared (RuntimeArray * __this, Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m1D41E412ADFFA7B56929AFFD8C2EF7076C82D39E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m1D41E412ADFFA7B56929AFFD8C2EF7076C82D39E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A *)(Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A L_9 = ___item0;
Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_gshared (RuntimeArray * __this, Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m967EB5C1814D8B4BCE2F049D793A283FD40F8ECB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_9 = ___item0;
Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_gshared (RuntimeArray * __this, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m3AECD5FB3B18910B3F0C8107C6EF08B1CEA10CCF_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_9 = ___item0;
Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_gshared (RuntimeArray * __this, Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mA54FCEA16D773F3AE200B75CF17100952E5701A6_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 *)(Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_9 = ___item0;
Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_gshared (RuntimeArray * __this, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m9E5B158A4C9B0A5FA3027E4177DA98DA6264A56C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_9 = ___item0;
Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m572A9DB3F0798A254071755598C32FFB154C6ADE_gshared (RuntimeArray * __this, Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m572A9DB3F0798A254071755598C32FFB154C6ADE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m572A9DB3F0798A254071755598C32FFB154C6ADE_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF *)(Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF L_9 = ___item0;
Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_gshared (RuntimeArray * __this, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m17FA206B6160A89ECE120941608D1B89D499203C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_9 = ___item0;
Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_gshared (RuntimeArray * __this, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBB075A2082A735C0ECB89547222A737D30DBBCC4_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_9 = ___item0;
Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_gshared (RuntimeArray * __this, Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m6492CFA1AD01D223CA6A09D9969C2DFA2E2522BB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_9 = ___item0;
Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m3D387436CAFA61E6AA323BDA172922DAE0052ED2_gshared (RuntimeArray * __this, Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m3D387436CAFA61E6AA323BDA172922DAE0052ED2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m3D387436CAFA61E6AA323BDA172922DAE0052ED2_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A *)(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A L_9 = ___item0;
Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_gshared (RuntimeArray * __this, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_mFCE0B6A27B30770A4B512BEDB254E192D5280D29_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_9 = ___item0;
Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_gshared (RuntimeArray * __this, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m5A0BC17921AC35849670855347808D9393DF8B16_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_9 = ___item0;
Entry_t687188C87EF1FD0D50038E634676DBC449857B8E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t687188C87EF1FD0D50038E634676DBC449857B8E *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_mBC7248980A4BF11E8B3494D6B0F1BD3525E78B80_gshared (RuntimeArray * __this, Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_mBC7248980A4BF11E8B3494D6B0F1BD3525E78B80_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_mBC7248980A4BF11E8B3494D6B0F1BD3525E78B80_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E *)(Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E L_9 = ___item0;
Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m335135BC9D839DDE0D6AE6F497F307BCA1EA3494_gshared (RuntimeArray * __this, Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m335135BC9D839DDE0D6AE6F497F307BCA1EA3494_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m335135BC9D839DDE0D6AE6F497F307BCA1EA3494_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 *)(Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 L_9 = ___item0;
Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.HashSet`1_Slot<System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_gshared (RuntimeArray * __this, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mEB90B7E039CD88096D8235EBC77043B201D089F8_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_9 = ___item0;
Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m882858E2DFC6E1A0B2122BAFCECFB19BEC8372A0_gshared (RuntimeArray * __this, KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m882858E2DFC6E1A0B2122BAFCECFB19BEC8372A0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m882858E2DFC6E1A0B2122BAFCECFB19BEC8372A0_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 *)(KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 L_9 = ___item0;
KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_gshared (RuntimeArray * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_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));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m739A55FED52BC421DC9BDA024BE349CD2D135C19_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_9 = ___item0;
KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_gshared (RuntimeArray * __this, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m4918F1A608A3EFBAE42BA98870BAF1D3F2F66072_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_9 = ___item0;
KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_gshared (RuntimeArray * __this, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_m4B25A8A2624679B8A2C001D9CD3912AB9A711E26_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_9 = ___item0;
KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m91E23B11710DC8CF847237CDBA4D423BEAC8EE0D_gshared (RuntimeArray * __this, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m91E23B11710DC8CF847237CDBA4D423BEAC8EE0D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m91E23B11710DC8CF847237CDBA4D423BEAC8EE0D_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 *)(KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_9 = ___item0;
KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mDF7D20F25F91668DFF5FDD9BF25B9A2FD67346F3_gshared (RuntimeArray * __this, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mDF7D20F25F91668DFF5FDD9BF25B9A2FD67346F3_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mDF7D20F25F91668DFF5FDD9BF25B9A2FD67346F3_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F *)(KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_9 = ___item0;
KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m5E99A4A6551F73620DAD39B15CDB617D7161AEFA_gshared (RuntimeArray * __this, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m5E99A4A6551F73620DAD39B15CDB617D7161AEFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m5E99A4A6551F73620DAD39B15CDB617D7161AEFA_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_9 = ___item0;
KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m67818A5EEAA21721000BCD20823E154AD9569A59_gshared (RuntimeArray * __this, KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m67818A5EEAA21721000BCD20823E154AD9569A59_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m67818A5EEAA21721000BCD20823E154AD9569A59_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E *)(KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E L_9 = ___item0;
KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mAADE596919A33924F7571CE0F655ACA544DCAD82_gshared (RuntimeArray * __this, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mAADE596919A33924F7571CE0F655ACA544DCAD82_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mAADE596919A33924F7571CE0F655ACA544DCAD82_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 *)(KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_9 = ___item0;
KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_gshared (RuntimeArray * __this, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_mB1E74A86E1E594EFDC925F9C97FE109DE05495A9_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE *)(KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_9 = ___item0;
KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mC6A71A37B5C931C7FBDC0FCF3F200679312B2F9C_gshared (RuntimeArray * __this, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mC6A71A37B5C931C7FBDC0FCF3F200679312B2F9C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mC6A71A37B5C931C7FBDC0FCF3F200679312B2F9C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA *)(KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA L_9 = ___item0;
KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_gshared (RuntimeArray * __this, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m9D0B60E51BFBDE958FEF0FEA0559377BD587966C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_9 = ___item0;
KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mAE170691CA1449C46FB6555883BC7CEE3FA82368_gshared (RuntimeArray * __this, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mAE170691CA1449C46FB6555883BC7CEE3FA82368_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mAE170691CA1449C46FB6555883BC7CEE3FA82368_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_9 = ___item0;
KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_gshared (RuntimeArray * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mD7B60B9965226E9CC04E946CA4C1F33A3923BE7B_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_9 = ___item0;
KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_gshared (RuntimeArray * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_mDBF23DF5BD427035EB0989C37936C066EBB80E3F_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_9 = ___item0;
KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m6893ED6B7AE41305351AAF83F0DF9F26649B1705_gshared (RuntimeArray * __this, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m6893ED6B7AE41305351AAF83F0DF9F26649B1705_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m6893ED6B7AE41305351AAF83F0DF9F26649B1705_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C *)(KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_9 = ___item0;
KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m354A4B6A58DD2B8079043DA3147990A006CA53BB_gshared (RuntimeArray * __this, KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m354A4B6A58DD2B8079043DA3147990A006CA53BB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m354A4B6A58DD2B8079043DA3147990A006CA53BB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 *)(KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 L_9 = ___item0;
KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_gshared (RuntimeArray * __this, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m84E363DDEA7D4D7264474D49C05D77CC975B2A8C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_9 = ___item0;
KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mF310A542722300C2A280459BB266EDA7E8129B64_gshared (RuntimeArray * __this, KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mF310A542722300C2A280459BB266EDA7E8129B64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mF310A542722300C2A280459BB266EDA7E8129B64_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 *)(KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 L_9 = ___item0;
KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m13A4F02E8A520814A34493899C9892EDD709C678_gshared (RuntimeArray * __this, KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m13A4F02E8A520814A34493899C9892EDD709C678_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m13A4F02E8A520814A34493899C9892EDD709C678_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 *)(KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 L_9 = ___item0;
KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m1B410BF309AD7BBF4DC1217FD359C954CDF34C72_gshared (RuntimeArray * __this, KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m1B410BF309AD7BBF4DC1217FD359C954CDF34C72_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m1B410BF309AD7BBF4DC1217FD359C954CDF34C72_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA *)(KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA L_9 = ___item0;
KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Collections.Hashtable_bucket>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_gshared (RuntimeArray * __this, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m194BF9E958CDA9357DC5B9A2818EFAD70B463320_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_9 = ___item0;
bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.DateTime>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_gshared (RuntimeArray * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_m084940E8F2B606B8BF3A920943FA09B72FEAF9B9_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_9 = ___item0;
DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = DateTime_Equals_m85006DF1EA5B2B7EAB4BEFA643B5683B0BDBE4AB((DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Decimal>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_gshared (RuntimeArray * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m256F348E2E222F2E84330A5649768C4F512B542E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_9 = ___item0;
Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Decimal_Equals_mCEF3806BE2E8CA730568C45CF90E129159DC476A((Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_gshared (RuntimeArray * __this, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mE0D1987E0D8C110542B25F9D557DB67F27C02218_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_9 = ___item0;
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Diagnostics.Tracing.EventSource_EventMetadata>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_gshared (RuntimeArray * __this, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD23818720ABA66BBD11AED8E8A714DB6194316AC_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_9 = ___item0;
EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Double>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_gshared (RuntimeArray * __this, double ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
double V_2 = 0.0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m60845F7DCED5E45FA673B44E8DED8216501B3AE6_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (double*)(double*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
double L_9 = ___item0;
double L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Double_Equals_m25A10C1D70E2906C2DAA5F3863B6AB76AFB13F33((double*)(double*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Globalization.InternalCodePageDataItem>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_gshared (RuntimeArray * __this, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m8CB89746670D49E7D68E1B784D4902DB14B10191_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_9 = ___item0;
InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Globalization.InternalEncodingDataItem>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_gshared (RuntimeArray * __this, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m02968552358CC33A7F34E3499B8AF85E173E2E33_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_9 = ___item0;
InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Guid>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_gshared (RuntimeArray * __this, Guid_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Guid_t V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisGuid_t_m663A30B0AC00832F23B734DE47889449C5422462_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Guid_t *)(Guid_t *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Guid_t L_9 = ___item0;
Guid_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Guid_Equals_m60BF5DC8994BB5189C703CD997EC6A2E0C491F8A((Guid_t *)(Guid_t *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Int16>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_gshared (RuntimeArray * __this, int16_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int16_t V_2 = 0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5A3048CD7DD988CF1EAD557351B6A21BD9D37E19_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int16_t*)(int16_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
int16_t L_9 = ___item0;
int16_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Int16_Equals_mB1FFCF510D2A74D15014660A0AFA1B5B0AE2F024((int16_t*)(int16_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Int32>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mDFBFE353F08EDAFC6A507A56A24A5397D746C884_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
int32_t L_9 = ___item0;
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Int32_Equals_mBE9097707986D98549AC11E94FB986DA1AB3E16C((int32_t*)(int32_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Int32Enum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int32_t V_2 = 0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mA87E7254C64CF9CEE21A7B2EFF4EBA9159FE65A5_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int32_t*)(int32_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
int32_t L_9 = ___item0;
int32_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
Il2CppFakeBox<int32_t> L_12(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(&L_12), (RuntimeObject *)L_11);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Int64>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_gshared (RuntimeArray * __this, int64_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int64_t V_2 = 0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_mBAC8D474AD6C3CC84914CD1A6B687B6A93B5993E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int64_t*)(int64_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
int64_t L_9 = ___item0;
int64_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Int64_Equals_m217A2D6F9F752A690AA8BF039B1DF2091A7FE78C((int64_t*)(int64_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.IntPtr>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_gshared (RuntimeArray * __this, intptr_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
intptr_t V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisIntPtr_t_m65565733C00CA67DA68AEB8764D4A4789F7F377E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (intptr_t*)(intptr_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
intptr_t L_9 = ___item0;
intptr_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = IntPtr_Equals_m4C1C372B05E29E20EC5E9B48EF8AAEA3E49B874D((intptr_t*)(intptr_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Object>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_gshared (RuntimeArray * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RuntimeObject * V_2 = NULL;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisRuntimeObject_mD9574236A28C1D455D77EF7E065529093F1EDAD8_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RuntimeObject **)(RuntimeObject **)(&V_2));
RuntimeObject * L_5 = ___item0;
if (L_5)
{
goto IL_0047;
}
}
{
RuntimeObject * L_6 = V_2;
if (L_6)
{
goto IL_0066;
}
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
RuntimeObject * L_9 = ___item0;
NullCheck((RuntimeObject *)(V_2));
bool L_10 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)(V_2), (RuntimeObject *)L_9);
if (!L_10)
{
goto IL_0066;
}
}
{
int32_t L_11 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_12 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)L_12));
}
IL_0066:
{
int32_t L_13 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1));
}
IL_006a:
{
int32_t L_14 = V_1;
int32_t L_15 = V_0;
if ((((int32_t)L_14) < ((int32_t)L_15)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_16 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_16, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.ParameterizedStrings_FormatParam>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_gshared (RuntimeArray * __this, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_mBE12D8BD5A5303A11702F3DD6BACE684356B8F8D_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_9 = ___item0;
FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeNamedArgument>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_gshared (RuntimeArray * __this, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_mAEB6C20A49EBEF1C32DBDA22711297F67A8324AF_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_9 = ___item0;
CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = CustomAttributeNamedArgument_Equals_mDA255630CA97FF60745C1B0440ACF44B3E94998B((CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.CustomAttributeTypedArgument>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_gshared (RuntimeArray * __this, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mDFEC6896DCE2B058F5B5A3589D67846EA61E1B7E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_9 = ___item0;
CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = CustomAttributeTypedArgument_Equals_mCBC1A766B39E8BE8BAE5B85F0C9B18797366CC88((CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Reflection.ParameterModifier>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_gshared (RuntimeArray * __this, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m09812D9D61C7DF24E8DB955422A24BB7308073CB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_9 = ___item0;
ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Resources.ResourceLocator>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_gshared (RuntimeArray * __this, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mFF5622E291EE7AAA6A39CCAE7964981D9981D224_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_9 = ___item0;
ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Runtime.CompilerServices.Ephemeron>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_gshared (RuntimeArray * __this, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m8B6C9962831994B1A8145034E0FC12D35DDF501A_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_9 = ___item0;
Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Runtime.InteropServices.GCHandle>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_gshared (RuntimeArray * __this, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_mB91156111C75E912C4DFE9C211F38E92A545F47C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_9 = ___item0;
GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = GCHandle_Equals_m9F3AFCE77E2A8601073DA0D0C158BF618369A842((GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.SByte>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_gshared (RuntimeArray * __this, int8_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
int8_t V_2 = 0x0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mC287C8F1C070FC45DBDAA415D6AED52E8476B372_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (int8_t*)(int8_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
int8_t L_9 = ___item0;
int8_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = SByte_Equals_m4B25C5FC7403EB2480D9F70F9B48C5619C6DD144((int8_t*)(int8_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Single>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_gshared (RuntimeArray * __this, float ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
float V_2 = 0.0f;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mFB848FBCE0A749265630F5326810CD0A999D2DC9_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (float*)(float*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
float L_9 = ___item0;
float L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Single_Equals_mF4C7AEA9D216B3C9CB735BF327D07BF50F101A16((float*)(float*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_gshared (RuntimeArray * __this, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m50C7AF57F38E6EEA158BBDE0B5D39AE0F9AFE4B2_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_9 = ___item0;
LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.Threading.CancellationTokenRegistration>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_gshared (RuntimeArray * __this, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m4092D39CA7E10BB63153F83830BC5B5D7119420C_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_9 = ___item0;
CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = CancellationTokenRegistration_Equals_m10EEB16AA8BC130896117762D369A9F4BA60D212((CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.TimeSpan>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_gshared (RuntimeArray * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m92CB442176DFBBC33279FEA81AF578E77F9B6E5B_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_9 = ___item0;
TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = TimeSpan_Equals_m7CD315197413EB59DDBCF923AD564E0021E91A70((TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.UInt16>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint16_t V_2 = 0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_m9E5D797D44D08C05CCC74DC6B0297A3A0F3B5199_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint16_t*)(uint16_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
uint16_t L_9 = ___item0;
uint16_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = UInt16_Equals_mBCD7FC4A11D0CEEFF4BC6559137A9E397D7017B8((uint16_t*)(uint16_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.UInt32>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint32_t V_2 = 0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCC2550228ABC522CB0A98028515525D393ED7A5E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint32_t*)(uint32_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
uint32_t L_9 = ___item0;
uint32_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = UInt32_Equals_m44E796DB35F5DB4E5D4C98EC6AB5053242A320C3((uint32_t*)(uint32_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.UInt64>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_gshared (RuntimeArray * __this, uint64_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uint64_t V_2 = 0;
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m553FB75E321F334628E34EB120BA285A550B5FF7_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uint64_t*)(uint64_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
uint64_t L_9 = ___item0;
uint64_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = UInt64_Equals_mE61D24B984F0B91A2FC1094402F1532A0F82C232((uint64_t*)(uint64_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<System.UIntPtr>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_gshared (RuntimeArray * __this, uintptr_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
uintptr_t V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUIntPtr_t_mF4144AFE6DAE5427FE5827C9C9838D91F97F78C8_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (uintptr_t*)(uintptr_t*)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
uintptr_t L_9 = ___item0;
uintptr_t L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = UIntPtr_Equals_m8C135DEDA578597066AB67C1DD5A5A34E4F860EB((uintptr_t*)(uintptr_t*)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.MaterialReference>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m20471FEEDBB0EA2F999D494086D60C9A7340A40B_gshared (RuntimeArray * __this, MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m20471FEEDBB0EA2F999D494086D60C9A7340A40B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m20471FEEDBB0EA2F999D494086D60C9A7340A40B_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F *)(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F L_9 = ___item0;
MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.RichTextTagAttribute>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mB4B12E53F94617260F0D1B6A01E628F259AC8351_gshared (RuntimeArray * __this, RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mB4B12E53F94617260F0D1B6A01E628F259AC8351_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_mB4B12E53F94617260F0D1B6A01E628F259AC8351_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 *)(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 L_9 = ___item0;
RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m5B6D8E42AF6F378CFEC4C23EE939891450916777_gshared (RuntimeArray * __this, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m5B6D8E42AF6F378CFEC4C23EE939891450916777_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m5B6D8E42AF6F378CFEC4C23EE939891450916777_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 *)(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 L_9 = ___item0;
SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.TMP_CharacterInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4494D7E3042020D4B01039762A92913CC70C8CE_gshared (RuntimeArray * __this, TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4494D7E3042020D4B01039762A92913CC70C8CE_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4494D7E3042020D4B01039762A92913CC70C8CE_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 *)(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 L_9 = ___item0;
TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.TMP_FontWeightPair>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB2EED94F5719E0D99830BF5F2B96DE35FD1B9745_gshared (RuntimeArray * __this, TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB2EED94F5719E0D99830BF5F2B96DE35FD1B9745_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_mB2EED94F5719E0D99830BF5F2B96DE35FD1B9745_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 *)(TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 L_9 = ___item0;
TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.TMP_LineInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m5D835E20EC6D6CEA706A09600CCAA8750AB4DF53_gshared (RuntimeArray * __this, TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m5D835E20EC6D6CEA706A09600CCAA8750AB4DF53_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m5D835E20EC6D6CEA706A09600CCAA8750AB4DF53_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 *)(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 L_9 = ___item0;
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.TMP_LinkInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mB21B382BB45607CF9AB61192682A2413D86D1120_gshared (RuntimeArray * __this, TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mB21B382BB45607CF9AB61192682A2413D86D1120_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mB21B382BB45607CF9AB61192682A2413D86D1120_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 *)(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 L_9 = ___item0;
TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.TMP_MeshInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m7FFD78C0B66C07641274CAC03FB1E0D96BD75BAD_gshared (RuntimeArray * __this, TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m7FFD78C0B66C07641274CAC03FB1E0D96BD75BAD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m7FFD78C0B66C07641274CAC03FB1E0D96BD75BAD_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E *)(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E L_9 = ___item0;
TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.TMP_PageInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mFED4A4CBA59797C957BF87C08598A12661636AE8_gshared (RuntimeArray * __this, TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mFED4A4CBA59797C957BF87C08598A12661636AE8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_mFED4A4CBA59797C957BF87C08598A12661636AE8_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 *)(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 L_9 = ___item0;
TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.TMP_Text_UnicodeChar>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m59D89B92E8067994C0E2804ADBD9093607136E9D_gshared (RuntimeArray * __this, UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m59D89B92E8067994C0E2804ADBD9093607136E9D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m59D89B92E8067994C0E2804ADBD9093607136E9D_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A *)(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A L_9 = ___item0;
UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<TMPro.TMP_WordInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1B38C001D3E82C658432C81316D681D2FC77F50B_gshared (RuntimeArray * __this, TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1B38C001D3E82C658432C81316D681D2FC77F50B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m1B38C001D3E82C658432C81316D681D2FC77F50B_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 *)(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 L_9 = ___item0;
TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.BeforeRenderHelper_OrderBlock>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_gshared (RuntimeArray * __this, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_m48EC0B072029484476C1B68DAE233AD692768D45_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_9 = ___item0;
OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Color32>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mEDF6D3612C8E5651E928AFB11D206AB8B3F983F8_gshared (RuntimeArray * __this, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mEDF6D3612C8E5651E928AFB11D206AB8B3F983F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mEDF6D3612C8E5651E928AFB11D206AB8B3F983F8_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_9 = ___item0;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Color>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mEF89A10BED309D4EA11FBB95B16F60F86C1D6590_gshared (RuntimeArray * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mEF89A10BED309D4EA11FBB95B16F60F86C1D6590_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mEF89A10BED309D4EA11FBB95B16F60F86C1D6590_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_9 = ___item0;
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Color_Equals_m63ECBA87A0F27CD7D09EEA36BCB697652E076F4E((Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ContactPoint2D>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mDA147F6CB5A09F054D158B2CA0F62AEB87915953_gshared (RuntimeArray * __this, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mDA147F6CB5A09F054D158B2CA0F62AEB87915953_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mDA147F6CB5A09F054D158B2CA0F62AEB87915953_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_9 = ___item0;
ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.ContactPoint>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m740957825039985F2D280500A96152E00B10E7B2_gshared (RuntimeArray * __this, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m740957825039985F2D280500A96152E00B10E7B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m740957825039985F2D280500A96152E00B10E7B2_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_9 = ___item0;
ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.EventSystems.RaycastResult>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m69A9984C32D940CCA45AFED00802739606EED14E_gshared (RuntimeArray * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m69A9984C32D940CCA45AFED00802739606EED14E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_m69A9984C32D940CCA45AFED00802739606EED14E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_9 = ___item0;
RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m2C5E6B7FDBC910C7618674972734B348869D1087_gshared (RuntimeArray * __this, LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m2C5E6B7FDBC910C7618674972734B348869D1087_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m2C5E6B7FDBC910C7618674972734B348869D1087_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_9 = ___item0;
LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m35FB53F1C51D4EE0FA506CBD3EEA9C17206C6230_gshared (RuntimeArray * __this, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m35FB53F1C51D4EE0FA506CBD3EEA9C17206C6230_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m35FB53F1C51D4EE0FA506CBD3EEA9C17206C6230_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA L_9 = ___item0;
TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Keyframe>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_gshared (RuntimeArray * __this, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m2A1F2D54AC27D60943B635063075055B75674696_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_9 = ___item0;
Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.LowLevel.PlayerLoopSystem>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m83B4C7A63CF9FC885D1A8C4B08E3DD0D10D88A53_gshared (RuntimeArray * __this, PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m83B4C7A63CF9FC885D1A8C4B08E3DD0D10D88A53_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m83B4C7A63CF9FC885D1A8C4B08E3DD0D10D88A53_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 *)(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 L_9 = ___item0;
PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Plane>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mF0A96F2D12555D91E4495277168CF74094D5670D_gshared (RuntimeArray * __this, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mF0A96F2D12555D91E4495277168CF74094D5670D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mF0A96F2D12555D91E4495277168CF74094D5670D_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_9 = ___item0;
Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Playables.PlayableBinding>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_gshared (RuntimeArray * __this, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m731D346C66C900C7E2F6027BDFEEA6A123C76131_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_9 = ___item0;
PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit2D>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m54C678F1DB91614B00C45E89298240BAAC30C811_gshared (RuntimeArray * __this, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m54C678F1DB91614B00C45E89298240BAAC30C811_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m54C678F1DB91614B00C45E89298240BAAC30C811_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_9 = ___item0;
RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.RaycastHit>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m518C34B43F670F6D8A751783D02CE7162C17AF66_gshared (RuntimeArray * __this, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m518C34B43F670F6D8A751783D02CE7162C17AF66_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m518C34B43F670F6D8A751783D02CE7162C17AF66_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_9 = ___item0;
RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Rendering.BatchVisibility>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4FA2B8205F141350DB28CEB12DB33166A4D3ADC7_gshared (RuntimeArray * __this, BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4FA2B8205F141350DB28CEB12DB33166A4D3ADC7_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m4FA2B8205F141350DB28CEB12DB33166A4D3ADC7_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_9 = ___item0;
BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.SendMouseEvents_HitInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_mFD62CED7B230DF85A822D4B3B014FDE852FE5E95_gshared (RuntimeArray * __this, HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_mFD62CED7B230DF85A822D4B3B014FDE852FE5E95_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_mFD62CED7B230DF85A822D4B3B014FDE852FE5E95_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_9 = ___item0;
HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.TextCore.GlyphRect>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m597655F97FF61DB6B1C308BBA3D40DBD64628E1A_gshared (RuntimeArray * __this, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m597655F97FF61DB6B1C308BBA3D40DBD64628E1A_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m597655F97FF61DB6B1C308BBA3D40DBD64628E1A_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C *)(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_9 = ___item0;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = GlyphRect_Equals_m0AC7F5A910EDE18B48500657446BD514CA555114((GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C *)(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m39AC55BF7F0538DB683BB74D5A4D0AF00860E65F_gshared (RuntimeArray * __this, GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m39AC55BF7F0538DB683BB74D5A4D0AF00860E65F_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m39AC55BF7F0538DB683BB74D5A4D0AF00860E65F_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 L_9 = ___item0;
GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m82F87ED9C7363DC7F1814391090631D289A9F850_gshared (RuntimeArray * __this, GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m82F87ED9C7363DC7F1814391090631D289A9F850_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m82F87ED9C7363DC7F1814391090631D289A9F850_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C L_9 = ___item0;
GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UI.ColorBlock>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mF247A6152AD02F17C64C4908FD1A132699C5D752_gshared (RuntimeArray * __this, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mF247A6152AD02F17C64C4908FD1A132699C5D752_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mF247A6152AD02F17C64C4908FD1A132699C5D752_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_9 = ___item0;
ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = ColorBlock_Equals_m5F50CD8C86A89B8EFA4E878BD914656ECEB0177D((ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UI.Navigation>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mAD4CAB4C13C53EE0B8D6981164BCCC80C3D74A98_gshared (RuntimeArray * __this, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mAD4CAB4C13C53EE0B8D6981164BCCC80C3D74A98_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mAD4CAB4C13C53EE0B8D6981164BCCC80C3D74A98_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_9 = ___item0;
Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UI.SpriteState>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mE03E40466A3CD5D61CB4DE2F62AFB969BB414CEB_gshared (RuntimeArray * __this, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mE03E40466A3CD5D61CB4DE2F62AFB969BB414CEB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_mE03E40466A3CD5D61CB4DE2F62AFB969BB414CEB_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_9 = ___item0;
SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UICharInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m6699E4D7345C1304B934081F68C7C5F338436A65_gshared (RuntimeArray * __this, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m6699E4D7345C1304B934081F68C7C5F338436A65_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m6699E4D7345C1304B934081F68C7C5F338436A65_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_9 = ___item0;
UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIElements.EventDispatcher_DispatchContext>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m93809D010D27844EDF297DE20374EDEB4B52A4B2_gshared (RuntimeArray * __this, DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m93809D010D27844EDF297DE20374EDEB4B52A4B2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m93809D010D27844EDF297DE20374EDEB4B52A4B2_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA *)(DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA L_9 = ___item0;
DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIElements.EventDispatcher_EventRecord>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m02B73CD318091CB020B98215A3D512B396EAC356_gshared (RuntimeArray * __this, EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m02B73CD318091CB020B98215A3D512B396EAC356_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m02B73CD318091CB020B98215A3D512B396EAC356_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 *)(EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 L_9 = ___item0;
EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIElements.FocusController_FocusedElement>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_mB07F6D9679EECDA132BCF0DB67A6CF72098219F6_gshared (RuntimeArray * __this, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_mB07F6D9679EECDA132BCF0DB67A6CF72098219F6_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_mB07F6D9679EECDA132BCF0DB67A6CF72098219F6_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 *)(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 L_9 = ___item0;
FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0787034FBDB3883C48C27131EE97A5855A1763E2_gshared (RuntimeArray * __this, SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0787034FBDB3883C48C27131EE97A5855A1763E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0787034FBDB3883C48C27131EE97A5855A1763E2_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 *)(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 L_9 = ___item0;
SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIElements.StyleSheets.StyleValue>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mE35F0AFDFBA2F4345AD555B88A30AFCFD6202A51_gshared (RuntimeArray * __this, StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mE35F0AFDFBA2F4345AD555B88A30AFCFD6202A51_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mE35F0AFDFBA2F4345AD555B88A30AFCFD6202A51_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 *)(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 L_9 = ___item0;
StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UILineInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mA7C07F39A1757F7B03F3F7DE5EB224C723684625_gshared (RuntimeArray * __this, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mA7C07F39A1757F7B03F3F7DE5EB224C723684625_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_mA7C07F39A1757F7B03F3F7DE5EB224C723684625_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_9 = ___item0;
UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UIVertex>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mD79CB19ACBDEEB89B2EE4539DBC22D87CD41FE76_gshared (RuntimeArray * __this, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mD79CB19ACBDEEB89B2EE4539DBC22D87CD41FE76_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mD79CB19ACBDEEB89B2EE4539DBC22D87CD41FE76_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_9 = ___item0;
UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.UnitySynchronizationContext_WorkRequest>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_gshared (RuntimeArray * __this, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m6A2718BCF487507EB48D3ED041DBF07DA1932303_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_9 = ___item0;
WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector2>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m683B2C264568CDE82EAB8D9F47ABD6C0329D38D0_gshared (RuntimeArray * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m683B2C264568CDE82EAB8D9F47ABD6C0329D38D0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m683B2C264568CDE82EAB8D9F47ABD6C0329D38D0_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_9 = ___item0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Vector2_Equals_m4A2A75BC3D09933321220BCEF21219B38AF643AE((Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector3>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m5DD830141F216B7DDEF3511B2747ED53DBCCC824_gshared (RuntimeArray * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m5DD830141F216B7DDEF3511B2747ED53DBCCC824_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m5DD830141F216B7DDEF3511B2747ED53DBCCC824_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_9 = ___item0;
Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Vector3_Equals_m1F74B1FB7EE51589FFFA61D894F616B8F258C056((Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Vector4>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m67EB1A5054024ED3F68DE85D9D3C16236057D25E_gshared (RuntimeArray * __this, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m67EB1A5054024ED3F68DE85D9D3C16236057D25E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m67EB1A5054024ED3F68DE85D9D3C16236057D25E_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_9 = ___item0;
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
bool L_12 = Vector4_Equals_m552ECA9ECD220D6526D8ECC9902016B6FC6D49B5((Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E *)(&V_2), (RuntimeObject *)L_11, /*hidden argument*/NULL);
if (!L_12)
{
goto IL_0066;
}
}
{
int32_t L_13 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_14 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14));
}
IL_0066:
{
int32_t L_15 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_006a:
{
int32_t L_16 = V_1;
int32_t L_17 = V_0;
if ((((int32_t)L_16) < ((int32_t)L_17)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_18 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_18, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.Windows.Speech.SemanticMeaning>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m34F61CD0951D346091AA2FE94254F489CF29A90B_gshared (RuntimeArray * __this, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m34F61CD0951D346091AA2FE94254F489CF29A90B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m34F61CD0951D346091AA2FE94254F489CF29A90B_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C L_9 = ___item0;
SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::InternalArray__IndexOf<UnityEngine.jvalue>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_InternalArray__IndexOf_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_mD3760D19436C2D9F51CBCCB6C411443CE74CCC64_gshared (RuntimeArray * __this, jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__IndexOf_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_mD3760D19436C2D9F51CBCCB6C411443CE74CCC64_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
int32_t V_1 = 0;
jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 V_2;
memset((&V_2), 0, sizeof(V_2));
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_get_Rank_m38145B59D67D75F9896A3F8CDA9B966641AE99E1((RuntimeArray *)__this, /*hidden argument*/NULL);
if ((((int32_t)L_0) <= ((int32_t)1)))
{
goto IL_0019;
}
}
{
String_t* L_1 = Locale_GetText_m41F0CB4E76BAAB1E97D9D92D109C846A8ECC1324((String_t*)_stringLiteral05EEF590134C13CD36F8C414489EBA98237315AB, /*hidden argument*/NULL);
RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F * L_2 = (RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F *)il2cpp_codegen_object_new(RankException_t85F27ECAFB95F8FC0E72E5EA676169A3CE9B4B6F_il2cpp_TypeInfo_var);
RankException__ctor_m5C185B91AFCA252366D882B15B65C984BF02004D(L_2, (String_t*)L_1, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, Array_InternalArray__IndexOf_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_mD3760D19436C2D9F51CBCCB6C411443CE74CCC64_RuntimeMethod_var);
}
IL_0019:
{
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
V_0 = (int32_t)L_3;
V_1 = (int32_t)0;
goto IL_006a;
}
IL_0024:
{
int32_t L_4 = V_1;
NullCheck((RuntimeArray *)__this);
ArrayGetGenericValueImpl((RuntimeArray *)__this, (int32_t)L_4, (jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 *)(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 *)(&V_2));
goto IL_0047;
}
{
goto IL_0066;
}
{
int32_t L_7 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_8 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)L_8));
}
IL_0047:
{
jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 L_9 = ___item0;
jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 L_10 = L_9;
RuntimeObject * L_11 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), &L_10);
RuntimeObject * L_12 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&V_2));
NullCheck((RuntimeObject *)L_12);
bool L_13 = VirtFuncInvoker1< bool, RuntimeObject * >::Invoke(0 /* System.Boolean System.Object::Equals(System.Object) */, (RuntimeObject *)L_12, (RuntimeObject *)L_11);
V_2 = *(jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 *)UnBox(L_12);
if (!L_13)
{
goto IL_0066;
}
}
{
int32_t L_14 = V_1;
NullCheck((RuntimeArray *)__this);
int32_t L_15 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)L_15));
}
IL_0066:
{
int32_t L_16 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1));
}
IL_006a:
{
int32_t L_17 = V_1;
int32_t L_18 = V_0;
if ((((int32_t)L_17) < ((int32_t)L_18)))
{
goto IL_0024;
}
}
{
NullCheck((RuntimeArray *)__this);
int32_t L_19 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
return ((int32_t)il2cpp_codegen_subtract((int32_t)L_19, (int32_t)1));
}
}
// System.Int32 System.Array::LastIndexOf<System.Object>(T[],T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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, Array_LastIndexOf_TisRuntimeObject_mADF32BA8AC5E3F1C5D224A446DA3C1F0E9CBC324_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
RuntimeObject * L_3 = ___value1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0;
NullCheck(L_5);
int32_t L_6 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (RuntimeObject *)L_3, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))), (int32_t)1)), (int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_6;
}
}
// System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t G_B4_0 = 0;
RuntimeObject * G_B4_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B4_2 = NULL;
int32_t G_B3_0 = 0;
RuntimeObject * G_B3_1 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B3_2 = NULL;
int32_t G_B5_0 = 0;
int32_t G_B5_1 = 0;
RuntimeObject * G_B5_2 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* G_B5_3 = NULL;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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, Array_LastIndexOf_TisRuntimeObject_m4C8C52470386439C1FB8B125159092C85B59550B_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
RuntimeObject * L_3 = ___value1;
int32_t L_4 = ___startIndex2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0;
NullCheck(L_5);
G_B3_0 = L_4;
G_B3_1 = L_3;
G_B3_2 = L_2;
if (!(((RuntimeArray*)L_5)->max_length))
{
G_B4_0 = L_4;
G_B4_1 = L_3;
G_B4_2 = L_2;
goto IL_001a;
}
}
{
int32_t L_6 = ___startIndex2;
G_B5_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1));
G_B5_1 = G_B3_0;
G_B5_2 = G_B3_1;
G_B5_3 = G_B3_2;
goto IL_001b;
}
IL_001a:
{
G_B5_0 = 0;
G_B5_1 = G_B4_0;
G_B5_2 = G_B4_1;
G_B5_3 = G_B4_2;
}
IL_001b:
{
int32_t L_7 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)G_B5_3, (RuntimeObject *)G_B5_2, (int32_t)G_B5_1, (int32_t)G_B5_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_7;
}
}
// System.Int32 System.Array::LastIndexOf<System.Object>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var);
}
IL_000e:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
NullCheck(L_2);
if ((((RuntimeArray*)L_2)->max_length))
{
goto IL_003e;
}
}
{
int32_t L_3 = ___startIndex2;
if ((((int32_t)L_3) == ((int32_t)(-1))))
{
goto IL_0029;
}
}
{
int32_t L_4 = ___startIndex2;
if (!L_4)
{
goto IL_0029;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var);
}
IL_0029:
{
int32_t L_6 = ___count3;
if (!L_6)
{
goto IL_003c;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_7 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_7, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var);
}
IL_003c:
{
return (-1);
}
IL_003e:
{
int32_t L_8 = ___startIndex2;
if ((((int32_t)L_8) < ((int32_t)0)))
{
goto IL_0048;
}
}
{
int32_t L_9 = ___startIndex2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_10 = ___array0;
NullCheck(L_10);
if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))))
{
goto IL_0058;
}
}
IL_0048:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_11 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_11, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_11, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var);
}
IL_0058:
{
int32_t L_12 = ___count3;
if ((((int32_t)L_12) < ((int32_t)0)))
{
goto IL_0064;
}
}
{
int32_t L_13 = ___startIndex2;
int32_t L_14 = ___count3;
if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_13, (int32_t)L_14)), (int32_t)1))) >= ((int32_t)0)))
{
goto IL_0074;
}
}
IL_0064:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_15 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_15, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_15, Array_LastIndexOf_TisRuntimeObject_mA211142720D626D9CB6D880E7F2BC27DD673478D_RuntimeMethod_var);
}
IL_0074:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_16 = ___array0;
RuntimeObject * L_17 = ___value1;
int32_t L_18 = ___startIndex2;
int32_t L_19 = ___count3;
int32_t L_20 = (( int32_t (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_16, (RuntimeObject *)L_17, (int32_t)L_18, (int32_t)L_19, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_20;
}
}
// System.Int32 System.Array::LastIndexOfImpl<System.Object>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_LastIndexOfImpl_TisRuntimeObject_mDF2E0B480CC775742F408D21BBB65B6D9C1B6D8A_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
{
EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * L_0 = (( EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA * (*) (const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)(/*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___array0;
RuntimeObject * L_2 = ___value1;
int32_t L_3 = ___startIndex2;
int32_t L_4 = ___count3;
NullCheck((EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0);
int32_t L_5 = VirtFuncInvoker4< int32_t, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, RuntimeObject *, int32_t, int32_t >::Invoke(11 /* System.Int32 System.Collections.Generic.EqualityComparer`1<System.Object>::LastIndexOf(T[],T,System.Int32,System.Int32) */, (EqualityComparer_1_t54972BA287ED38B066E4BE7A3B21F49803B62EBA *)L_0, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_1, (RuntimeObject *)L_2, (int32_t)L_3, (int32_t)L_4);
return L_5;
}
}
// System.Int32 System.Runtime.CompilerServices.JitHelpers::UnsafeEnumCast<System.Int32Enum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t JitHelpers_UnsafeEnumCast_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mABB37D821194A0B87A72F6409DDD2A907BFA0E81_gshared (int32_t ___val0, const RuntimeMethod* method)
{
{
int32_t L_0 = ___val0;
int32_t L_1 = (( int32_t (*) (int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((int32_t)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_1;
}
}
// System.Int32 System.Runtime.InteropServices.Marshal::SizeOf<System.Object>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Marshal_SizeOf_TisRuntimeObject_m542AB92A661AA4B557013A47BC6BBF939B2A0452_gshared (RuntimeObject * ___structure0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Marshal_SizeOf_TisRuntimeObject_m542AB92A661AA4B557013A47BC6BBF939B2A0452_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
NullCheck((RuntimeObject *)(___structure0));
Type_t * L_0 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)(___structure0), /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_1 = Marshal_SizeOf_m4F7DA827FA7A720395E6FDD2ABE78D4B00D43130((Type_t *)L_0, /*hidden argument*/NULL);
return L_1;
}
}
// System.Int32 System.Runtime.InteropServices.Marshal::SizeOf<UnityEngine.Matrix4x4>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Marshal_SizeOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m3CE955DF5B68C294A3873ACD74BA6476691BD788_gshared (Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___structure0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Marshal_SizeOf_TisMatrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA_m3CE955DF5B68C294A3873ACD74BA6476691BD788_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (&___structure0));
NullCheck((RuntimeObject *)L_0);
Type_t * L_1 = Object_GetType_m2E0B62414ECCAA3094B703790CE88CBB2F83EA60((RuntimeObject *)L_0, /*hidden argument*/NULL);
___structure0 = *(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA *)UnBox(L_0);
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
int32_t L_2 = Marshal_SizeOf_m4F7DA827FA7A720395E6FDD2ABE78D4B00D43130((Type_t *)L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 TMPro.TMPro_ExtensionMethods::FindInstanceID<System.Object>(System.Collections.Generic.List`1<T>,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TMPro_ExtensionMethods_FindInstanceID_TisRuntimeObject_m0C3FAA72EACAC33BE64B5B314EB55BA6E216247A_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___list0, RuntimeObject * ___target1, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
// int targetID = target.GetInstanceID();
RuntimeObject * L_0 = ___target1;
NullCheck((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_0);
int32_t L_1 = Object_GetInstanceID_m33A817CEE904B3362C8BAAF02DB45976575CBEF4((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_0, /*hidden argument*/NULL);
V_0 = (int32_t)L_1;
// for (int i = 0; i < list.Count; i++)
V_1 = (int32_t)0;
goto IL_002a;
}
IL_0010:
{
// if (list[i].GetInstanceID() == targetID)
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_2 = ___list0;
int32_t L_3 = V_1;
NullCheck((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_2);
RuntimeObject * L_4 = (( RuntimeObject * (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_2, (int32_t)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
NullCheck((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_4);
int32_t L_5 = Object_GetInstanceID_m33A817CEE904B3362C8BAAF02DB45976575CBEF4((Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 *)L_4, /*hidden argument*/NULL);
int32_t L_6 = V_0;
if ((!(((uint32_t)L_5) == ((uint32_t)L_6))))
{
goto IL_0026;
}
}
{
// return i;
int32_t L_7 = V_1;
return L_7;
}
IL_0026:
{
// for (int i = 0; i < list.Count; i++)
int32_t L_8 = V_1;
V_1 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1));
}
IL_002a:
{
// for (int i = 0; i < list.Count; i++)
int32_t L_9 = V_1;
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_10 = ___list0;
NullCheck((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_10);
int32_t L_11 = (( int32_t (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2)->methodPointer)((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_10, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 2));
if ((((int32_t)L_9) < ((int32_t)L_11)))
{
goto IL_0010;
}
}
{
// return -1;
return (-1);
}
}
// System.Int32 Unity.Collections.LowLevel.Unsafe.UnsafeUtility::EnumToInt<System.Int32Enum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t UnsafeUtility_EnumToInt_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB9C7BE85EFC6152C7C234A73A08221CF07F28FC6_gshared (int32_t ___enumValue0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t V_1 = 0;
{
V_0 = (int32_t)0;
(( void (*) (int32_t*, int32_t*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((int32_t*)(int32_t*)(&___enumValue0), (int32_t*)(int32_t*)(&V_0), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
int32_t L_0 = V_0;
V_1 = (int32_t)L_0;
goto IL_0011;
}
IL_0011:
{
int32_t L_1 = V_1;
return L_1;
}
}
// System.Int32 UnityEngine.NoAllocHelpers::SafeLength<System.Int32>(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NoAllocHelpers_SafeLength_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mAB99F87F48EF2561002200C769D115010830F1CC_gshared (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * ___values0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_0 = ___values0;
if (L_0)
{
goto IL_0007;
}
}
{
G_B3_0 = 0;
goto IL_000d;
}
IL_0007:
{
List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 * L_1 = ___values0;
NullCheck((List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)L_1);
int32_t L_2 = (( int32_t (*) (List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_tE1526161A558A17A39A8B69D8EEF3801393B6226 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
G_B3_0 = L_2;
}
IL_000d:
{
V_0 = (int32_t)G_B3_0;
goto IL_0010;
}
IL_0010:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 UnityEngine.NoAllocHelpers::SafeLength<System.Object>(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NoAllocHelpers_SafeLength_TisRuntimeObject_mE4A0CC0B216DAF0FD3D9CF06E57ABCA309416DDD_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * ___values0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_0 = ___values0;
if (L_0)
{
goto IL_0007;
}
}
{
G_B3_0 = 0;
goto IL_000d;
}
IL_0007:
{
List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * L_1 = ___values0;
NullCheck((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_1);
int32_t L_2 = (( int32_t (*) (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
G_B3_0 = L_2;
}
IL_000d:
{
V_0 = (int32_t)G_B3_0;
goto IL_0010;
}
IL_0010:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 UnityEngine.NoAllocHelpers::SafeLength<UnityEngine.Color32>(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NoAllocHelpers_SafeLength_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mCAD52E94C36F78CCE12136681C126AFEBE66BCD3_gshared (List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * ___values0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * L_0 = ___values0;
if (L_0)
{
goto IL_0007;
}
}
{
G_B3_0 = 0;
goto IL_000d;
}
IL_0007:
{
List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 * L_1 = ___values0;
NullCheck((List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 *)L_1);
int32_t L_2 = (( int32_t (*) (List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t749ADA5233D9B421293A000DCB83608A24C3D5D5 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
G_B3_0 = L_2;
}
IL_000d:
{
V_0 = (int32_t)G_B3_0;
goto IL_0010;
}
IL_0010:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 UnityEngine.NoAllocHelpers::SafeLength<UnityEngine.Vector2>(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NoAllocHelpers_SafeLength_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m4197A139B0FA7E1B77A42D286D1EC6337023783E_gshared (List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * ___values0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * L_0 = ___values0;
if (L_0)
{
goto IL_0007;
}
}
{
G_B3_0 = 0;
goto IL_000d;
}
IL_0007:
{
List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB * L_1 = ___values0;
NullCheck((List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB *)L_1);
int32_t L_2 = (( int32_t (*) (List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_t0737D51EB43DAAA1BDC9C2B83B393A4B9B9BE8EB *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
G_B3_0 = L_2;
}
IL_000d:
{
V_0 = (int32_t)G_B3_0;
goto IL_0010;
}
IL_0010:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 UnityEngine.NoAllocHelpers::SafeLength<UnityEngine.Vector3>(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NoAllocHelpers_SafeLength_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m7B804AA8EDE4B564E6A67886233311B513D157EF_gshared (List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * ___values0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * L_0 = ___values0;
if (L_0)
{
goto IL_0007;
}
}
{
G_B3_0 = 0;
goto IL_000d;
}
IL_0007:
{
List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 * L_1 = ___values0;
NullCheck((List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 *)L_1);
int32_t L_2 = (( int32_t (*) (List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_tFCCBEDAA56D8F7598520FB136A9F8D713033D6B5 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
G_B3_0 = L_2;
}
IL_000d:
{
V_0 = (int32_t)G_B3_0;
goto IL_0010;
}
IL_0010:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.Int32 UnityEngine.NoAllocHelpers::SafeLength<UnityEngine.Vector4>(System.Collections.Generic.List`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t NoAllocHelpers_SafeLength_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_mC6531297C443393E9C571A6DEA2DB537F53915A3_gshared (List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * ___values0, const RuntimeMethod* method)
{
int32_t V_0 = 0;
int32_t G_B3_0 = 0;
{
List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * L_0 = ___values0;
if (L_0)
{
goto IL_0007;
}
}
{
G_B3_0 = 0;
goto IL_000d;
}
IL_0007:
{
List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 * L_1 = ___values0;
NullCheck((List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 *)L_1);
int32_t L_2 = (( int32_t (*) (List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((List_1_tFF4005B40E5BA433006DA11C56DB086B1E2FC955 *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
G_B3_0 = L_2;
}
IL_000d:
{
V_0 = (int32_t)G_B3_0;
goto IL_0010;
}
IL_0010:
{
int32_t L_3 = V_0;
return L_3;
}
}
// System.IntPtr System.Runtime.InteropServices.Marshal::GetFunctionPointerForDelegate<System.Object>(TDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Marshal_GetFunctionPointerForDelegate_TisRuntimeObject_m48759D7F3A90CB3B0B0E73773B1E40147247A61B_gshared (RuntimeObject * ___d0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Marshal_GetFunctionPointerForDelegate_TisRuntimeObject_m48759D7F3A90CB3B0B0E73773B1E40147247A61B_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject * L_0 = ___d0;
if (L_0)
{
goto IL_0013;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_1 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_1, (String_t*)_stringLiteral3C363836CF4E16666669A25DA280A1865C2D2874, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Marshal_GetFunctionPointerForDelegate_TisRuntimeObject_m48759D7F3A90CB3B0B0E73773B1E40147247A61B_RuntimeMethod_var);
}
IL_0013:
{
RuntimeObject * L_2 = ___d0;
IL2CPP_RUNTIME_CLASS_INIT(Marshal_tC795CE9CC2FFBA41EDB1AC1C0FEC04607DFA8A40_il2cpp_TypeInfo_var);
intptr_t L_3 = Marshal_GetFunctionPointerForDelegateInternal_m066BAA3D0374CDB64AF23184986FD4D9DA211994((Delegate_t *)((Delegate_t *)Castclass((RuntimeObject*)L_2, Delegate_t_il2cpp_TypeInfo_var)), /*hidden argument*/NULL);
return (intptr_t)L_3;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.Boolean>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mA8D2CC3499ECB1D841D7E4CF91E9335F82087024_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.Char>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m5A0B2E4738CBA2EF5FB2FC19E8707F195243E5E7_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.Double>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_mE2708B1B572FEBA90097950A4E61162070738405_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.Int16>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m8CBC5E740D6817CFB284C038B3D8A253B679191F_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.Int32>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mC743D20D86743F10866A3CAF8E93F25A95B5468F_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.Int64>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m3A49C5E6F0964D67ED7A8E8C4FCC714F24B65FDF_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.Object>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisRuntimeObject_mF71F8407FFDC664ADE8C3D84EE2B81BCAE88A1A5_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.SByte>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m0694DC75660266FF66052A57FA18EAEC504EDD64_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine.AndroidJNIHelper::GetMethodID<System.Single>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNIHelper_GetMethodID_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m72E06839BFAF71DF2C26BABF4303CFAA1427D221_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
bool L_3 = ___isStatic3;
intptr_t L_4 = (( intptr_t (*) (intptr_t, String_t*, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((intptr_t)L_0, (String_t*)L_1, (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
V_0 = (intptr_t)L_4;
goto IL_000d;
}
IL_000d:
{
intptr_t L_5 = V_0;
return (intptr_t)L_5;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.Boolean>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m925F482BC9FC2DFBADF1967639308C7F455A1F4B_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.Char>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m5772E61C82BD017FD09F8917CCC807AF0A64616E_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.Double>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m3FB857B915C2940626971EDFB50445B0FE59DDD2_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.Int16>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m5CA1B274966DD00CB27EA7805B67F442B46A209C_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.Int32>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m99B3E8949D48D696BEFE8BF8B9DA544B842B4961_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.Int64>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m3E596C11A60000691E26D6707942DFAEB8B0819E_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.Object>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisRuntimeObject_mAD93D210352C4533E4C9E01635B409603990DBED_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.SByte>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m07FF0C17F41533C41E3D2EAB3D1112443011196C_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.IntPtr UnityEngine._AndroidJNIHelper::GetMethodID<System.Single>(System.IntPtr,System.String,System.Object[],System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t _AndroidJNIHelper_GetMethodID_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mDD86131B28847E574A49895B98A3F4EA8418F62E_gshared (intptr_t ___jclass0, String_t* ___methodName1, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args2, bool ___isStatic3, const RuntimeMethod* method)
{
intptr_t V_0;
memset((&V_0), 0, sizeof(V_0));
{
intptr_t L_0 = ___jclass0;
String_t* L_1 = ___methodName1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args2;
String_t* L_3 = (( String_t* (*) (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
bool L_4 = ___isStatic3;
intptr_t L_5 = AndroidJNIHelper_GetMethodID_mD3057EDF00D6BBB3E89116EE05F68D0731AD9E43((intptr_t)L_0, (String_t*)L_1, (String_t*)L_3, (bool)L_4, /*hidden argument*/NULL);
V_0 = (intptr_t)L_5;
goto IL_0012;
}
IL_0012:
{
intptr_t L_6 = V_0;
return (intptr_t)L_6;
}
}
// System.Linq.IOrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::System.Linq.IOrderedEnumerable<TElement>.CreateOrderedEnumerable<System.Object>(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisRuntimeObject_m052A373FA043EB8753B0A1CBFA378D9A62CBF493_gshared (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * __this, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_source_0();
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_1 = ___keySelector0;
RuntimeObject* L_2 = ___comparer1;
bool L_3 = ___descending2;
OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B * L_4 = (OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *, RuntimeObject*, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)L_1, (RuntimeObject*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B * L_5 = (OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *)L_4;
NullCheck(L_5);
L_5->set_parent_1(__this);
return L_5;
}
}
// System.Linq.IOrderedEnumerable`1<TElement> System.Linq.OrderedEnumerable`1<System.Object>::System.Linq.IOrderedEnumerable<TElement>.CreateOrderedEnumerable<System.UInt32>(System.Func`2<TElement,TKey>,System.Collections.Generic.IComparer`1<TKey>,System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OrderedEnumerable_1_System_Linq_IOrderedEnumerableU3CTElementU3E_CreateOrderedEnumerable_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mCCCD43A2E1429C854952B28A0AFDBD711508610B_gshared (OrderedEnumerable_1_t90CEEA76C1B51C6DFE8DDDA6F2A8EA977445C13D * __this, Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * ___keySelector0, RuntimeObject* ___comparer1, bool ___descending2, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = (RuntimeObject*)__this->get_source_0();
Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * L_1 = ___keySelector0;
RuntimeObject* L_2 = ___comparer1;
bool L_3 = ___descending2;
OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 * L_4 = (OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *, RuntimeObject*, Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_4, (RuntimeObject*)L_0, (Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *)L_1, (RuntimeObject*)L_2, (bool)L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 * L_5 = (OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *)L_4;
NullCheck(L_5);
L_5->set_parent_1(__this);
return L_5;
}
}
// System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<System.Object,System.Object>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_OrderBy_TisRuntimeObject_TisRuntimeObject_m25AE2BB49B27CB4658E930B3EDB01024EF2A4015_gshared (RuntimeObject* ___source0, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___keySelector1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___source0;
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_1 = ___keySelector1;
OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B * L_2 = (OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (OrderedEnumerable_2_t7B02CBC3525F3D372B6E370C20199F685F476D5B *, RuntimeObject*, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)L_1, (RuntimeObject*)NULL, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::OrderBy<System.Object,System.UInt32>(System.Collections.Generic.IEnumerable`1<TSource>,System.Func`2<TSource,TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_OrderBy_TisRuntimeObject_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m7AEA586BB04F21524E02582E787E3A4A7899FEBE_gshared (RuntimeObject* ___source0, Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * ___keySelector1, const RuntimeMethod* method)
{
{
RuntimeObject* L_0 = ___source0;
Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * L_1 = ___keySelector1;
OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 * L_2 = (OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (OrderedEnumerable_2_t3813B931EC1E730CF1B26422C62FE54BE5064CB5 *, RuntimeObject*, Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *, RuntimeObject*, bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (RuntimeObject*)L_0, (Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *)L_1, (RuntimeObject*)NULL, (bool)0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::ThenBy<System.Object,System.Object>(System.Linq.IOrderedEnumerable`1<TSource>,System.Func`2<TSource,TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_ThenBy_TisRuntimeObject_TisRuntimeObject_m91B234404A81CFC34CD495A33D31E9BF50B5208E_gshared (RuntimeObject* ___source0, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * ___keySelector1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ThenBy_TisRuntimeObject_TisRuntimeObject_m91B234404A81CFC34CD495A33D31E9BF50B5208E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ThenBy_TisRuntimeObject_TisRuntimeObject_m91B234404A81CFC34CD495A33D31E9BF50B5208E_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 * L_3 = ___keySelector1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject* L_4 = GenericInterfaceFuncInvoker3< RuntimeObject*, Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *, RuntimeObject*, bool >::Invoke(IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0), (RuntimeObject*)L_2, (Func_2_tE9A60F007AC624EA27BF19DEF4242B7DA2F1C2A4 *)L_3, (RuntimeObject*)NULL, (bool)0);
return L_4;
}
}
// System.Linq.IOrderedEnumerable`1<TSource> System.Linq.Enumerable::ThenBy<System.Object,System.UInt32>(System.Linq.IOrderedEnumerable`1<TSource>,System.Func`2<TSource,TKey>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Enumerable_ThenBy_TisRuntimeObject_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m674B8CADFF5F454BAE796E1CD61502B74FCEB02D_gshared (RuntimeObject* ___source0, Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * ___keySelector1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Enumerable_ThenBy_TisRuntimeObject_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m674B8CADFF5F454BAE796E1CD61502B74FCEB02D_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
{
RuntimeObject* L_0 = ___source0;
if (L_0)
{
goto IL_000e;
}
}
{
Exception_t * L_1 = Error_ArgumentNull_mCA126ED8F4F3B343A70E201C44B3A509690F1EA7((String_t*)_stringLiteral828D338A9B04221C9CBE286F50CD389F68DE4ECF, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Enumerable_ThenBy_TisRuntimeObject_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m674B8CADFF5F454BAE796E1CD61502B74FCEB02D_RuntimeMethod_var);
}
IL_000e:
{
RuntimeObject* L_2 = ___source0;
Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A * L_3 = ___keySelector1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject* L_4 = GenericInterfaceFuncInvoker3< RuntimeObject*, Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *, RuntimeObject*, bool >::Invoke(IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0), (RuntimeObject*)L_2, (Func_2_tE499B0DC827151EE1184263C0158F0659D83F51A *)L_3, (RuntimeObject*)NULL, (bool)0);
return L_4;
}
}
// System.Object System.Reflection.MonoProperty::GetterAdapterFrame<System.Object,System.Object>(System.Reflection.MonoProperty_Getter`2<T,R>,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MonoProperty_GetterAdapterFrame_TisRuntimeObject_TisRuntimeObject_mB2DDCBA80E9B67CF44982C7F83289DD11976E4C2_gshared (Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C * ___getter0, RuntimeObject * ___obj1, const RuntimeMethod* method)
{
{
Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C * L_0 = ___getter0;
RuntimeObject * L_1 = ___obj1;
NullCheck((Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C *)L_0);
RuntimeObject * L_2 = (( RuntimeObject * (*) (Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)((Getter_2_t98CD32D513A740F69F79D73DBD59A1BC8A33711C *)L_0, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_1, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))), /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Object System.Reflection.MonoProperty::StaticGetterAdapterFrame<System.Object>(System.Reflection.MonoProperty_StaticGetter`1<R>,System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * MonoProperty_StaticGetterAdapterFrame_TisRuntimeObject_m7124DDE2B6E7636722F2478F789173D041A53BE6_gshared (StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 * ___getter0, RuntimeObject * ___obj1, const RuntimeMethod* method)
{
{
StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 * L_0 = ___getter0;
NullCheck((StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 *)L_0);
RuntimeObject * L_1 = (( RuntimeObject * (*) (StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((StaticGetter_1_t1EAC9DF5576DB92D9C92A8E486BCEB4386FA18B1 *)L_0, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
return L_1;
}
}
// System.String UnityEngine.UIElements.StyleValueExtensions::DebugString<System.Int32>(UnityEngine.UIElements.IStyleValue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueExtensions_DebugString_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mE27A52901C65219A96D007D1F638E03CA90EF908_gshared (RuntimeObject* ___styleValue0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StyleValueExtensions_DebugString_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_mE27A52901C65219A96D007D1F638E03CA90EF908_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___styleValue0;
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<System.Int32>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
if (L_1)
{
goto IL_0020;
}
}
{
RuntimeObject* L_2 = ___styleValue0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T UnityEngine.UIElements.IStyleValue`1<System.Int32>::get_value() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_4);
String_t* L_6 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_5, /*hidden argument*/NULL);
G_B3_0 = L_6;
goto IL_0035;
}
IL_0020:
{
RuntimeObject* L_7 = ___styleValue0;
NullCheck((RuntimeObject*)L_7);
int32_t L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<System.Int32>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560_il2cpp_TypeInfo_var, &L_9);
String_t* L_11 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_10, /*hidden argument*/NULL);
G_B3_0 = L_11;
}
IL_0035:
{
V_0 = (String_t*)G_B3_0;
goto IL_0038;
}
IL_0038:
{
String_t* L_12 = V_0;
return L_12;
}
}
// System.String UnityEngine.UIElements.StyleValueExtensions::DebugString<System.Int32Enum>(UnityEngine.UIElements.IStyleValue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueExtensions_DebugString_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m20F660B618E50CFA130DCB1E275954DE6BDC60B5_gshared (RuntimeObject* ___styleValue0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StyleValueExtensions_DebugString_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_m20F660B618E50CFA130DCB1E275954DE6BDC60B5_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___styleValue0;
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<System.Int32Enum>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
if (L_1)
{
goto IL_0020;
}
}
{
RuntimeObject* L_2 = ___styleValue0;
NullCheck((RuntimeObject*)L_2);
int32_t L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* T UnityEngine.UIElements.IStyleValue`1<System.Int32Enum>::get_value() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2);
int32_t L_4 = L_3;
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_4);
String_t* L_6 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_5, /*hidden argument*/NULL);
G_B3_0 = L_6;
goto IL_0035;
}
IL_0020:
{
RuntimeObject* L_7 = ___styleValue0;
NullCheck((RuntimeObject*)L_7);
int32_t L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<System.Int32Enum>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560_il2cpp_TypeInfo_var, &L_9);
String_t* L_11 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_10, /*hidden argument*/NULL);
G_B3_0 = L_11;
}
IL_0035:
{
V_0 = (String_t*)G_B3_0;
goto IL_0038;
}
IL_0038:
{
String_t* L_12 = V_0;
return L_12;
}
}
// System.String UnityEngine.UIElements.StyleValueExtensions::DebugString<System.Object>(UnityEngine.UIElements.IStyleValue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueExtensions_DebugString_TisRuntimeObject_m612D8997F566E1E3A1A29593AC85BE73797930F8_gshared (RuntimeObject* ___styleValue0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StyleValueExtensions_DebugString_TisRuntimeObject_m612D8997F566E1E3A1A29593AC85BE73797930F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___styleValue0;
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<System.Object>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
if (L_1)
{
goto IL_0020;
}
}
{
RuntimeObject* L_2 = ___styleValue0;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* T UnityEngine.UIElements.IStyleValue`1<System.Object>::get_value() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2);
String_t* L_4 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_3, /*hidden argument*/NULL);
G_B3_0 = L_4;
goto IL_0035;
}
IL_0020:
{
RuntimeObject* L_5 = ___styleValue0;
NullCheck((RuntimeObject*)L_5);
int32_t L_6 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<System.Object>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = Box(StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560_il2cpp_TypeInfo_var, &L_7);
String_t* L_9 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_8, /*hidden argument*/NULL);
G_B3_0 = L_9;
}
IL_0035:
{
V_0 = (String_t*)G_B3_0;
goto IL_0038;
}
IL_0038:
{
String_t* L_10 = V_0;
return L_10;
}
}
// System.String UnityEngine.UIElements.StyleValueExtensions::DebugString<System.Single>(UnityEngine.UIElements.IStyleValue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueExtensions_DebugString_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mA799AF15B6D07B34B455C44FDC45BE4B0FFFA1E2_gshared (RuntimeObject* ___styleValue0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StyleValueExtensions_DebugString_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mA799AF15B6D07B34B455C44FDC45BE4B0FFFA1E2_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___styleValue0;
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<System.Single>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
if (L_1)
{
goto IL_0020;
}
}
{
RuntimeObject* L_2 = ___styleValue0;
NullCheck((RuntimeObject*)L_2);
float L_3 = InterfaceFuncInvoker0< float >::Invoke(0 /* T UnityEngine.UIElements.IStyleValue`1<System.Single>::get_value() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2);
float L_4 = L_3;
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_4);
String_t* L_6 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_5, /*hidden argument*/NULL);
G_B3_0 = L_6;
goto IL_0035;
}
IL_0020:
{
RuntimeObject* L_7 = ___styleValue0;
NullCheck((RuntimeObject*)L_7);
int32_t L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<System.Single>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560_il2cpp_TypeInfo_var, &L_9);
String_t* L_11 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_10, /*hidden argument*/NULL);
G_B3_0 = L_11;
}
IL_0035:
{
V_0 = (String_t*)G_B3_0;
goto IL_0038;
}
IL_0038:
{
String_t* L_12 = V_0;
return L_12;
}
}
// System.String UnityEngine.UIElements.StyleValueExtensions::DebugString<UnityEngine.Color>(UnityEngine.UIElements.IStyleValue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueExtensions_DebugString_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mFA3809E513FEE56023780D4FCE648B27B134ABB8_gshared (RuntimeObject* ___styleValue0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StyleValueExtensions_DebugString_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mFA3809E513FEE56023780D4FCE648B27B134ABB8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___styleValue0;
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<UnityEngine.Color>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
if (L_1)
{
goto IL_0020;
}
}
{
RuntimeObject* L_2 = ___styleValue0;
NullCheck((RuntimeObject*)L_2);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_3 = InterfaceFuncInvoker0< Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 >::Invoke(0 /* T UnityEngine.UIElements.IStyleValue`1<UnityEngine.Color>::get_value() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2);
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 L_4 = L_3;
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_4);
String_t* L_6 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_5, /*hidden argument*/NULL);
G_B3_0 = L_6;
goto IL_0035;
}
IL_0020:
{
RuntimeObject* L_7 = ___styleValue0;
NullCheck((RuntimeObject*)L_7);
int32_t L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<UnityEngine.Color>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560_il2cpp_TypeInfo_var, &L_9);
String_t* L_11 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_10, /*hidden argument*/NULL);
G_B3_0 = L_11;
}
IL_0035:
{
V_0 = (String_t*)G_B3_0;
goto IL_0038;
}
IL_0038:
{
String_t* L_12 = V_0;
return L_12;
}
}
// System.String UnityEngine.UIElements.StyleValueExtensions::DebugString<UnityEngine.UIElements.Length>(UnityEngine.UIElements.IStyleValue`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* StyleValueExtensions_DebugString_TisLength_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300_mA437B64AE4360C21FC307D27C93B703D0FEEB649_gshared (RuntimeObject* ___styleValue0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (StyleValueExtensions_DebugString_TisLength_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300_mA437B64AE4360C21FC307D27C93B703D0FEEB649_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
String_t* G_B3_0 = NULL;
{
RuntimeObject* L_0 = ___styleValue0;
NullCheck((RuntimeObject*)L_0);
int32_t L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<UnityEngine.UIElements.Length>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
if (L_1)
{
goto IL_0020;
}
}
{
RuntimeObject* L_2 = ___styleValue0;
NullCheck((RuntimeObject*)L_2);
Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 L_3 = InterfaceFuncInvoker0< Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 >::Invoke(0 /* T UnityEngine.UIElements.IStyleValue`1<UnityEngine.UIElements.Length>::get_value() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_2);
Length_tE2A2C2ECE7255AC6FB9B1F41D51E7BC645021300 L_4 = L_3;
RuntimeObject * L_5 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 1), &L_4);
String_t* L_6 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_5, /*hidden argument*/NULL);
G_B3_0 = L_6;
goto IL_0035;
}
IL_0020:
{
RuntimeObject* L_7 = ___styleValue0;
NullCheck((RuntimeObject*)L_7);
int32_t L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(1 /* UnityEngine.UIElements.StyleKeyword UnityEngine.UIElements.IStyleValue`1<UnityEngine.UIElements.Length>::get_keyword() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_7);
int32_t L_9 = L_8;
RuntimeObject * L_10 = Box(StyleKeyword_t5C285A4249A1A7A807C1B4D2AAF5D1350B0A3560_il2cpp_TypeInfo_var, &L_9);
String_t* L_11 = String_Format_m0ACDD8B34764E4040AED0B3EEB753567E4576BFA((String_t*)_stringLiteral0B0C6F90D172B22857FDB7C4E16D3DD858581ACC, (RuntimeObject *)L_10, /*hidden argument*/NULL);
G_B3_0 = L_11;
}
IL_0035:
{
V_0 = (String_t*)G_B3_0;
goto IL_0038;
}
IL_0038:
{
String_t* L_12 = V_0;
return L_12;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.Boolean>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mDC229F84C56F314FD5336BDEE523328986473C50_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mDC229F84C56F314FD5336BDEE523328986473C50_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.Char>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m0E10F227EFE7D1B5C00061E62878C166EEAEC234_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m0E10F227EFE7D1B5C00061E62878C166EEAEC234_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.Double>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m55AACC97FA2E318E5493A4EBE39AA6E23D02AACC_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m55AACC97FA2E318E5493A4EBE39AA6E23D02AACC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.Int16>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m1255C5334984FA53C8BB76CC105F7DA21A1B1B7E_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m1255C5334984FA53C8BB76CC105F7DA21A1B1B7E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.Int32>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m6DA953EB37E0DDF741D261902F8A7289B8B4D7F8_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m6DA953EB37E0DDF741D261902F8A7289B8B4D7F8_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.Int64>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m9DC7F2B24A0BF983FCBBA4947635D16DFD679587_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m9DC7F2B24A0BF983FCBBA4947635D16DFD679587_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.Object>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisRuntimeObject_mEAF9415C403AB8E424E1C3B9B67BD1E0619150AC_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisRuntimeObject_mEAF9415C403AB8E424E1C3B9B67BD1E0619150AC_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.SByte>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mB09A324D80D3EB8664B06D7BF22BF864075176EF_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mB09A324D80D3EB8664B06D7BF22BF864075176EF_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.String UnityEngine._AndroidJNIHelper::GetSignature<System.Single>(System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* _AndroidJNIHelper_GetSignature_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m78CEFC5CD7E4487469F4426A890DD7FAF6B23FC1_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___args0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (_AndroidJNIHelper_GetSignature_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m78CEFC5CD7E4487469F4426A890DD7FAF6B23FC1_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
StringBuilder_t * V_0 = NULL;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* V_1 = NULL;
int32_t V_2 = 0;
RuntimeObject * V_3 = NULL;
String_t* V_4 = NULL;
{
StringBuilder_t * L_0 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var);
StringBuilder__ctor_mF928376F82E8C8FF3C11842C562DB8CF28B2735E(L_0, /*hidden argument*/NULL);
V_0 = (StringBuilder_t *)L_0;
StringBuilder_t * L_1 = V_0;
NullCheck((StringBuilder_t *)L_1);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_1, (Il2CppChar)((int32_t)40), /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___args0;
V_1 = (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A*)L_2;
V_2 = (int32_t)0;
goto IL_002e;
}
IL_0017:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_3 = V_1;
int32_t L_4 = V_2;
NullCheck(L_3);
int32_t L_5 = L_4;
RuntimeObject * L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
V_3 = (RuntimeObject *)L_6;
StringBuilder_t * L_7 = V_0;
RuntimeObject * L_8 = V_3;
String_t* L_9 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_8, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_7);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_7, (String_t*)L_9, /*hidden argument*/NULL);
int32_t L_10 = V_2;
V_2 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_10, (int32_t)1));
}
IL_002e:
{
int32_t L_11 = V_2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = V_1;
NullCheck(L_12);
if ((((int32_t)L_11) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))))
{
goto IL_0017;
}
}
{
StringBuilder_t * L_13 = V_0;
NullCheck((StringBuilder_t *)L_13);
StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A((StringBuilder_t *)L_13, (Il2CppChar)((int32_t)41), /*hidden argument*/NULL);
StringBuilder_t * L_14 = V_0;
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_15 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_16 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_15, /*hidden argument*/NULL);
String_t* L_17 = _AndroidJNIHelper_GetSignature_m090B053BFD9A6AC7BBD0F2BFAE56A8188CE4D80B((RuntimeObject *)L_16, /*hidden argument*/NULL);
NullCheck((StringBuilder_t *)L_14);
StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260((StringBuilder_t *)L_14, (String_t*)L_17, /*hidden argument*/NULL);
StringBuilder_t * L_18 = V_0;
NullCheck((RuntimeObject *)L_18);
String_t* L_19 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, (RuntimeObject *)L_18);
V_4 = (String_t*)L_19;
goto IL_005d;
}
IL_005d:
{
String_t* L_20 = V_4;
return L_20;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Boolean>(TResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * AsyncTaskCache_CreateCacheableTask_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m0AF876A682791C78325B15BEE612FD3586E914F9_gshared (bool ___result0, const RuntimeMethod* method)
{
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0;
memset((&V_0), 0, sizeof(V_0));
{
bool L_0 = ___result0;
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ));
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0;
Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_2 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, bool, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (bool)0, (bool)L_0, (int32_t)((int32_t)16384), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Int32>(TResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * AsyncTaskCache_CreateCacheableTask_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m5F5160505A6EE6A22FFF5538CA8FDEAF541CD461_gshared (int32_t ___result0, const RuntimeMethod* method)
{
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0;
memset((&V_0), 0, sizeof(V_0));
{
int32_t L_0 = ___result0;
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ));
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0;
Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * L_2 = (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 *, bool, int32_t, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (bool)0, (int32_t)L_0, (int32_t)((int32_t)16384), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Runtime.CompilerServices.AsyncTaskCache::CreateCacheableTask<System.Object>(TResult)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * AsyncTaskCache_CreateCacheableTask_TisRuntimeObject_m126348D500408D7182F3757F300039F01F7C24AB_gshared (RuntimeObject * ___result0, const RuntimeMethod* method)
{
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB V_0;
memset((&V_0), 0, sizeof(V_0));
{
RuntimeObject * L_0 = ___result0;
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ));
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_1 = V_0;
Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_2 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, bool, RuntimeObject *, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (bool)0, (RuntimeObject *)L_0, (int32_t)((int32_t)16384), (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Boolean>(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_gshared (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
bool V_0 = false;
{
bool L_0 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&___cancellationToken0), /*hidden argument*/NULL);
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_1, (String_t*)_stringLiteralBA7B76F7CEFAFC945D4F1E46E2C21A2894A4FD10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Task_FromCancellation_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m1D2F3D8D751533AB2C2C6571998736C242E908CB_RuntimeMethod_var);
}
IL_0014:
{
il2cpp_codegen_initobj((&V_0), sizeof(bool));
bool L_2 = V_0;
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = ___cancellationToken0;
Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 * L_4 = (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Task_1_tD6131FE3A3A2F1D58DB886B6CF31A2672B75B439 *, bool, bool, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_4, (bool)1, (bool)L_2, (int32_t)0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_4;
}
}
// System.Threading.Tasks.Task`1<TResult> System.Threading.Tasks.Task::FromCancellation<System.Object>(System.Threading.CancellationToken)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_gshared (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB ___cancellationToken0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
{
bool L_0 = CancellationToken_get_IsCancellationRequested_mCF3521778F20F7048B7121885794B9562324447D((CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB *)(&___cancellationToken0), /*hidden argument*/NULL);
if (L_0)
{
goto IL_0014;
}
}
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_1 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m6B36E60C989DC798A8B44556DB35960282B133A6(L_1, (String_t*)_stringLiteralBA7B76F7CEFAFC945D4F1E46E2C21A2894A4FD10, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, Task_FromCancellation_TisRuntimeObject_m4A9F178EC4392613B8FF7759C8EB3322DF483199_RuntimeMethod_var);
}
IL_0014:
{
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject *));
RuntimeObject * L_2 = V_0;
CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB L_3 = ___cancellationToken0;
Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 * L_4 = (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Task_1_tA56001ED5270173CA1432EDFCD84EABB1024BC09 *, bool, RuntimeObject *, int32_t, CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB , const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_4, (bool)1, (RuntimeObject *)L_2, (int32_t)0, (CancellationToken_t9E956952F7F20908F2AE72EDF36D97E6C7DB63AB )L_3, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_4;
}
}
// System.Tuple`2<T1,T2> System.Tuple::Create<System.Diagnostics.Tracing.EventProvider_SessionInfo,System.Boolean>(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 * Tuple_Create_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mFCFC54D2D66C8EE47D9530005BA7A77A1AA699FC_gshared (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item10, bool ___item21, const RuntimeMethod* method)
{
{
SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A L_0 = ___item10;
bool L_1 = ___item21;
Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 * L_2 = (Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Tuple_2_tFB909554E9029649923EA250C43FBDD4F4548252 *, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A , bool, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A )L_0, (bool)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Tuple`2<T1,T2> System.Tuple::Create<System.Guid,System.Int32>(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E * Tuple_Create_TisGuid_t_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m473CBD984380616D043D353A87FA6F201541C375_gshared (Guid_t ___item10, int32_t ___item21, const RuntimeMethod* method)
{
{
Guid_t L_0 = ___item10;
int32_t L_1 = ___item21;
Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E * L_2 = (Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Tuple_2_t24BE91BA338C2678B7B104B30F6EB33015FF720E *, Guid_t , int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (Guid_t )L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Tuple`2<T1,T2> System.Tuple::Create<System.Int32,System.Int32>(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 * Tuple_Create_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m595074AFCD66FC08A09BDD5982656BA1F9BABA5C_gshared (int32_t ___item10, int32_t ___item21, const RuntimeMethod* method)
{
{
int32_t L_0 = ___item10;
int32_t L_1 = ___item21;
Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 * L_2 = (Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Tuple_2_t28940D9AA109CFB8C1D8CAEDD0EAF70EAD2F7C63 *, int32_t, int32_t, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (int32_t)L_0, (int32_t)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Tuple`2<T1,T2> System.Tuple::Create<System.Object,System.Object>(T1,T2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * Tuple_Create_TisRuntimeObject_TisRuntimeObject_m0E4A5F787779B362E52ED19238D9850158D62836_gshared (RuntimeObject * ___item10, RuntimeObject * ___item21, const RuntimeMethod* method)
{
{
RuntimeObject * L_0 = ___item10;
RuntimeObject * L_1 = ___item21;
Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 * L_2 = (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 *)il2cpp_codegen_object_new(IL2CPP_RGCTX_DATA(method->rgctx_data, 0));
(( void (*) (Tuple_2_t66BEEC45F61266028F5253B4045F569CB4C812F5 *, RuntimeObject *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1)->methodPointer)(L_2, (RuntimeObject *)L_0, (RuntimeObject *)L_1, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 1));
return L_2;
}
}
// System.Void Google.ProtocolBuffers.CodedInputStream::ReadMessageArray<System.Object>(System.UInt32,System.String,System.Collections.Generic.ICollection`1<T>,T,Google.ProtocolBuffers.ExtensionRegistry)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodedInputStream_ReadMessageArray_TisRuntimeObject_m5D36690C043CA1AB375D730E5F83A559BF87DEFA_gshared (CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816 * __this, uint32_t ___fieldTag0, String_t* ___fieldName1, RuntimeObject* ___list2, RuntimeObject * ___messageType3, ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 * ___registry4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CodedInputStream_ReadMessageArray_TisRuntimeObject_m5D36690C043CA1AB375D730E5F83A559BF87DEFA_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
IL_0000:
{
NullCheck((RuntimeObject*)(___messageType3));
RuntimeObject* L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(3 /* Google.ProtocolBuffers.IBuilderLite Google.ProtocolBuffers.IMessageLite::WeakCreateBuilderForType() */, IMessageLite_t7C7B484AE6ABC37A788EA24AF97638742D3F6E51_il2cpp_TypeInfo_var, (RuntimeObject*)(___messageType3));
V_0 = (RuntimeObject*)L_0;
RuntimeObject* L_1 = V_0;
ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 * L_2 = ___registry4;
NullCheck((CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816 *)__this);
CodedInputStream_ReadMessage_m06AF1DDDC81E6C3859B900E2456C1DF2D99F5CB2((CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816 *)__this, (RuntimeObject*)L_1, (ExtensionRegistry_tBBB45A079FC4C84D2206418EBE9C9BAB11C62AC3 *)L_2, /*hidden argument*/NULL);
RuntimeObject* L_3 = ___list2;
RuntimeObject* L_4 = V_0;
NullCheck((RuntimeObject*)L_4);
RuntimeObject* L_5 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(1 /* Google.ProtocolBuffers.IMessageLite Google.ProtocolBuffers.IBuilderLite::WeakBuildPartial() */, IBuilderLite_tCC59C37407E34F909DA41ED5F68CD5D1B7E0865A_il2cpp_TypeInfo_var, (RuntimeObject*)L_4);
NullCheck((RuntimeObject*)L_3);
InterfaceActionInvoker1< RuntimeObject * >::Invoke(2 /* System.Void System.Collections.Generic.ICollection`1<System.Object>::Add(!0) */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_3, (RuntimeObject *)((RuntimeObject *)Castclass((RuntimeObject*)L_5, IL2CPP_RGCTX_DATA(method->rgctx_data, 0))));
uint32_t L_6 = ___fieldTag0;
NullCheck((CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816 *)__this);
bool L_7 = CodedInputStream_ContinueArray_m2697736DF82E5C8DCE4CB6FE5FCFA7A57D7A9B7A((CodedInputStream_t20AA308DE7DA223F5DF28FF4EEB2B06EB92FA816 *)__this, (uint32_t)L_6, /*hidden argument*/NULL);
if (L_7)
{
goto IL_0000;
}
}
{
return;
}
}
// System.Void Google.ProtocolBuffers.CodedOutputStream::WriteMessageArray<System.Object>(System.Int32,System.String,System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CodedOutputStream_WriteMessageArray_TisRuntimeObject_m11C481793F3A85AF3B924DA641283E489CF51944_gshared (CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5 * __this, int32_t ___fieldNumber0, String_t* ___fieldName1, RuntimeObject* ___list2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (CodedOutputStream_WriteMessageArray_TisRuntimeObject_m11C481793F3A85AF3B924DA641283E489CF51944_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject* V_0 = NULL;
RuntimeObject* V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___list2;
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_0021;
}
IL_000c:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_2);
V_0 = (RuntimeObject*)L_3;
int32_t L_4 = ___fieldNumber0;
String_t* L_5 = ___fieldName1;
RuntimeObject* L_6 = V_0;
NullCheck((CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5 *)__this);
CodedOutputStream_WriteMessage_m02B93FB2D780DF632F276A3BD7ABC34FED4F6570((CodedOutputStream_tD8F078238F21127000D3305E1764382AFDFD55A5 *)__this, (int32_t)L_4, (String_t*)L_5, (RuntimeObject*)L_6, /*hidden argument*/NULL);
}
IL_0021:
{
RuntimeObject* L_7 = V_1;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_000c;
}
}
IL_002c:
{
IL2CPP_LEAVE(0x3E, FINALLY_0031);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_003d;
}
}
IL_0037:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_003d:
{
IL2CPP_END_FINALLY(49)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(49)
{
IL2CPP_JUMP_TBL(0x3E, IL_003e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003e:
{
return;
}
}
// System.Void Google.ProtocolBuffers.GeneratedMessageLite`2<System.Object,System.Object>::PrintField<System.Object>(System.String,System.Collections.Generic.IList`1<T>,System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeneratedMessageLite_2_PrintField_TisRuntimeObject_mBE4C09C9F50E4993087AF8C93286326254230C13_gshared (String_t* ___name0, RuntimeObject* ___value1, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___writer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GeneratedMessageLite_2_PrintField_TisRuntimeObject_mBE4C09C9F50E4993087AF8C93286326254230C13_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject* V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___value1;
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_0021;
}
IL_000c:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_2);
V_0 = (RuntimeObject *)L_3;
String_t* L_4 = ___name0;
RuntimeObject * L_5 = V_0;
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_6 = ___writer2;
(( void (*) (String_t*, bool, RuntimeObject *, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)((String_t*)L_4, (bool)1, (RuntimeObject *)L_5, (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 *)L_6, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
}
IL_0021:
{
RuntimeObject* L_7 = V_1;
NullCheck((RuntimeObject*)L_7);
bool L_8 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_7);
if (L_8)
{
goto IL_000c;
}
}
IL_002c:
{
IL2CPP_LEAVE(0x3E, FINALLY_0031);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 1)
{
RuntimeObject* L_9 = V_1;
if (!L_9)
{
goto IL_003d;
}
}
IL_0037:
{
RuntimeObject* L_10 = V_1;
NullCheck((RuntimeObject*)L_10);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_10);
}
IL_003d:
{
IL2CPP_END_FINALLY(49)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(49)
{
IL2CPP_JUMP_TBL(0x3E, IL_003e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003e:
{
return;
}
}
// System.Void Google.ProtocolBuffers.GeneratedMessageLite`2<System.Object,System.Object>::PrintField<System.Single>(System.String,System.Collections.Generic.IList`1<T>,System.IO.TextWriter)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GeneratedMessageLite_2_PrintField_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m5D6830633E6EBE23B3E283313590DEB5F726812E_gshared (String_t* ___name0, RuntimeObject* ___value1, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * ___writer2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GeneratedMessageLite_2_PrintField_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m5D6830633E6EBE23B3E283313590DEB5F726812E_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
RuntimeObject* V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___value1;
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Single>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_0021;
}
IL_000c:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
float L_3 = InterfaceFuncInvoker0< float >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Single>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_2);
V_0 = (float)L_3;
String_t* L_4 = ___name0;
float L_5 = V_0;
float L_6 = L_5;
RuntimeObject * L_7 = Box(IL2CPP_RGCTX_DATA(method->rgctx_data, 2), &L_6);
TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 * L_8 = ___writer2;
(( void (*) (String_t*, bool, RuntimeObject *, TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3)->methodPointer)((String_t*)L_4, (bool)1, (RuntimeObject *)L_7, (TextWriter_t92451D929322093838C41489883D5B2D7ABAF3F0 *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(InitializedTypeInfo(method->klass)->rgctx_data, 3));
}
IL_0021:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
bool L_10 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
if (L_10)
{
goto IL_000c;
}
}
IL_002c:
{
IL2CPP_LEAVE(0x3E, FINALLY_0031);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0031;
}
FINALLY_0031:
{ // begin finally (depth: 1)
{
RuntimeObject* L_11 = V_1;
if (!L_11)
{
goto IL_003d;
}
}
IL_0037:
{
RuntimeObject* L_12 = V_1;
NullCheck((RuntimeObject*)L_12);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
}
IL_003d:
{
IL2CPP_END_FINALLY(49)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(49)
{
IL2CPP_JUMP_TBL(0x3E, IL_003e)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_003e:
{
return;
}
}
// System.Void Google.ProtocolBuffers.ThrowHelper::ThrowIfAnyNull<System.Object>(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowIfAnyNull_TisRuntimeObject_mD61820D55FA7A3A55349EBCA1AFC60996CED6B08_gshared (RuntimeObject* ___sequence0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ThrowHelper_ThrowIfAnyNull_TisRuntimeObject_mD61820D55FA7A3A55349EBCA1AFC60996CED6B08_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
RuntimeObject * V_0 = NULL;
RuntimeObject* V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___sequence0;
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Object>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_0024;
}
IL_000c:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
RuntimeObject * L_3 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Object>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_2);
V_0 = (RuntimeObject *)L_3;
RuntimeObject * L_4 = V_0;
if (L_4)
{
goto IL_0024;
}
}
IL_001e:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510(L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ThrowHelper_ThrowIfAnyNull_TisRuntimeObject_mD61820D55FA7A3A55349EBCA1AFC60996CED6B08_RuntimeMethod_var);
}
IL_0024:
{
RuntimeObject* L_6 = V_1;
NullCheck((RuntimeObject*)L_6);
bool L_7 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
if (L_7)
{
goto IL_000c;
}
}
IL_002f:
{
IL2CPP_LEAVE(0x41, FINALLY_0034);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0034;
}
FINALLY_0034:
{ // begin finally (depth: 1)
{
RuntimeObject* L_8 = V_1;
if (!L_8)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
}
IL_0040:
{
IL2CPP_END_FINALLY(52)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(52)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
return;
}
}
// System.Void Google.ProtocolBuffers.ThrowHelper::ThrowIfAnyNull<System.Single>(System.Collections.Generic.IEnumerable`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowIfAnyNull_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mB247E6DAD40CDDC157649EDA1DE08BB145D2FACB_gshared (RuntimeObject* ___sequence0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (ThrowHelper_ThrowIfAnyNull_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mB247E6DAD40CDDC157649EDA1DE08BB145D2FACB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
float V_0 = 0.0f;
RuntimeObject* V_1 = NULL;
Exception_t * __last_unhandled_exception = 0;
NO_UNUSED_WARNING (__last_unhandled_exception);
Exception_t * __exception_local = 0;
NO_UNUSED_WARNING (__exception_local);
void* __leave_targets_storage = alloca(sizeof(int32_t) * 1);
il2cpp::utils::LeaveTargetStack __leave_targets(__leave_targets_storage);
NO_UNUSED_WARNING (__leave_targets);
{
RuntimeObject* L_0 = ___sequence0;
NullCheck((RuntimeObject*)L_0);
RuntimeObject* L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0 /* System.Collections.Generic.IEnumerator`1<!0> System.Collections.Generic.IEnumerable`1<System.Single>::GetEnumerator() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 0), (RuntimeObject*)L_0);
V_1 = (RuntimeObject*)L_1;
}
IL_0007:
try
{ // begin try (depth: 1)
{
goto IL_0024;
}
IL_000c:
{
RuntimeObject* L_2 = V_1;
NullCheck((RuntimeObject*)L_2);
float L_3 = InterfaceFuncInvoker0< float >::Invoke(0 /* !0 System.Collections.Generic.IEnumerator`1<System.Single>::get_Current() */, IL2CPP_RGCTX_DATA(method->rgctx_data, 1), (RuntimeObject*)L_2);
V_0 = (float)L_3;
goto IL_0024;
}
IL_001e:
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_5 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_m682F47F1DE29EBE74F44F6478D3C17D176C63510(L_5, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ThrowHelper_ThrowIfAnyNull_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mB247E6DAD40CDDC157649EDA1DE08BB145D2FACB_RuntimeMethod_var);
}
IL_0024:
{
RuntimeObject* L_6 = V_1;
NullCheck((RuntimeObject*)L_6);
bool L_7 = InterfaceFuncInvoker0< bool >::Invoke(0 /* System.Boolean System.Collections.IEnumerator::MoveNext() */, IEnumerator_t8789118187258CC88B77AFAC6315B5AF87D3E18A_il2cpp_TypeInfo_var, (RuntimeObject*)L_6);
if (L_7)
{
goto IL_000c;
}
}
IL_002f:
{
IL2CPP_LEAVE(0x41, FINALLY_0034);
}
} // end try (depth: 1)
catch(Il2CppExceptionWrapper& e)
{
__last_unhandled_exception = (Exception_t *)e.ex;
goto FINALLY_0034;
}
FINALLY_0034:
{ // begin finally (depth: 1)
{
RuntimeObject* L_8 = V_1;
if (!L_8)
{
goto IL_0040;
}
}
IL_003a:
{
RuntimeObject* L_9 = V_1;
NullCheck((RuntimeObject*)L_9);
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, (RuntimeObject*)L_9);
}
IL_0040:
{
IL2CPP_END_FINALLY(52)
}
} // end finally (depth: 1)
IL2CPP_CLEANUP(52)
{
IL2CPP_JUMP_TBL(0x41, IL_0041)
IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *)
}
IL_0041:
{
return;
}
}
// System.Void GvrEventExecutor::AddEventDelegate<System.Object>(GvrEventExecutor_EventDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GvrEventExecutor_AddEventDelegate_TisRuntimeObject_m71E281E3A0DADD17113975903768131A329FCEAB_gshared (GvrEventExecutor_t898582E56497D9854114651E438F61B403245CD3 * __this, EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * ___eventDelegate0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GvrEventExecutor_AddEventDelegate_TisRuntimeObject_m71E281E3A0DADD17113975903768131A329FCEAB_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * V_1 = NULL;
{
// Type type = typeof(T);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (Type_t *)L_1;
// if (eventTable.TryGetValue(type, out existingDelegate))
Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * L_2 = (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)__this->get_eventTable_0();
Type_t * L_3 = V_0;
NullCheck((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_2);
bool L_4 = Dictionary_2_TryGetValue_m52C57CA7F53B7216B84CE1D164896D0756E470DD((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_2, (Type_t *)L_3, (EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 **)(EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m52C57CA7F53B7216B84CE1D164896D0756E470DD_RuntimeMethod_var);
if (!L_4)
{
goto IL_0034;
}
}
{
// eventTable[type] = existingDelegate + eventDelegate;
Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * L_5 = (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)__this->get_eventTable_0();
Type_t * L_6 = V_0;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * L_7 = V_1;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * L_8 = ___eventDelegate0;
Delegate_t * L_9 = Delegate_Combine_mC25D2F7DECAFBA6D9A2F9EBA8A77063F0658ECF1((Delegate_t *)L_7, (Delegate_t *)L_8, /*hidden argument*/NULL);
NullCheck((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_5);
Dictionary_2_set_Item_m91A3BDD60842621406838EB3A46C9FD5D0E320FB((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_5, (Type_t *)L_6, (EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *)((EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *)Castclass((RuntimeObject*)L_9, EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995_il2cpp_TypeInfo_var)), /*hidden argument*/Dictionary_2_set_Item_m91A3BDD60842621406838EB3A46C9FD5D0E320FB_RuntimeMethod_var);
// }
return;
}
IL_0034:
{
// eventTable[type] = eventDelegate;
Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * L_10 = (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)__this->get_eventTable_0();
Type_t * L_11 = V_0;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * L_12 = ___eventDelegate0;
NullCheck((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_10);
Dictionary_2_set_Item_m91A3BDD60842621406838EB3A46C9FD5D0E320FB((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_10, (Type_t *)L_11, (EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *)L_12, /*hidden argument*/Dictionary_2_set_Item_m91A3BDD60842621406838EB3A46C9FD5D0E320FB_RuntimeMethod_var);
// }
return;
}
}
// System.Void GvrEventExecutor::CallEventDelegate<System.Object>(UnityEngine.GameObject,UnityEngine.EventSystems.BaseEventData)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GvrEventExecutor_CallEventDelegate_TisRuntimeObject_m85E38CE2CC3AE27E20C2739F9FDE76130DEF006C_gshared (GvrEventExecutor_t898582E56497D9854114651E438F61B403245CD3 * __this, GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * ___target0, BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * ___eventData1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GvrEventExecutor_CallEventDelegate_TisRuntimeObject_m85E38CE2CC3AE27E20C2739F9FDE76130DEF006C_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * V_1 = NULL;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * V_2 = NULL;
{
// Type type = typeof(T);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (Type_t *)L_1;
// if (eventTable.TryGetValue(type, out eventDelegate))
Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * L_2 = (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)__this->get_eventTable_0();
Type_t * L_3 = V_0;
NullCheck((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_2);
bool L_4 = Dictionary_2_TryGetValue_m52C57CA7F53B7216B84CE1D164896D0756E470DD((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_2, (Type_t *)L_3, (EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 **)(EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m52C57CA7F53B7216B84CE1D164896D0756E470DD_RuntimeMethod_var);
if (!L_4)
{
goto IL_0038;
}
}
{
// PointerEventData pointerEventData = eventData as PointerEventData;
BaseEventData_t46C9D2AE3183A742EDE89944AF64A23DBF1B80A5 * L_5 = ___eventData1;
V_2 = (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 *)((PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 *)IsInst((RuntimeObject*)L_5, PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63_il2cpp_TypeInfo_var));
// if (pointerEventData == null)
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_6 = V_2;
if (L_6)
{
goto IL_0030;
}
}
{
// Debug.LogError("Event data must be PointerEventData.");
IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var);
Debug_LogError_m3BCF9B78263152261565DCA9DB7D55F0C391ED29((RuntimeObject *)_stringLiteral88E8963E6ECDA3FFC7F5CEC395FF6D9C0F85FE45, /*hidden argument*/NULL);
// return;
return;
}
IL_0030:
{
// eventDelegate(target, pointerEventData);
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * L_7 = V_1;
GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F * L_8 = ___target0;
PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 * L_9 = V_2;
NullCheck((EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *)L_7);
EventDelegate_Invoke_m2CC074CE09CB43749571E8A373D272B1F9E019AA((EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *)L_7, (GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F *)L_8, (PointerEventData_tC18994283B7753E430E316A62D9E45BA6D644C63 *)L_9, /*hidden argument*/NULL);
}
IL_0038:
{
// }
return;
}
}
// System.Void GvrEventExecutor::RemoveEventDelegate<System.Object>(GvrEventExecutor_EventDelegate)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GvrEventExecutor_RemoveEventDelegate_TisRuntimeObject_m5C32207182CF6383F2967EE5D253BC30B7DF6FBD_gshared (GvrEventExecutor_t898582E56497D9854114651E438F61B403245CD3 * __this, EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * ___eventDelegate0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (GvrEventExecutor_RemoveEventDelegate_TisRuntimeObject_m5C32207182CF6383F2967EE5D253BC30B7DF6FBD_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
Type_t * V_0 = NULL;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * V_1 = NULL;
{
// Type type = typeof(T);
RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D L_0 = { reinterpret_cast<intptr_t> (IL2CPP_RGCTX_TYPE(method->rgctx_data, 0)) };
IL2CPP_RUNTIME_CLASS_INIT(Type_t_il2cpp_TypeInfo_var);
Type_t * L_1 = Type_GetTypeFromHandle_m9DC58ADF0512987012A8A016FB64B068F3B1AFF6((RuntimeTypeHandle_t7B542280A22F0EC4EAC2061C29178845847A8B2D )L_0, /*hidden argument*/NULL);
V_0 = (Type_t *)L_1;
// if (!eventTable.TryGetValue(type, out existingDelegate))
Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * L_2 = (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)__this->get_eventTable_0();
Type_t * L_3 = V_0;
NullCheck((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_2);
bool L_4 = Dictionary_2_TryGetValue_m52C57CA7F53B7216B84CE1D164896D0756E470DD((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_2, (Type_t *)L_3, (EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 **)(EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 **)(&V_1), /*hidden argument*/Dictionary_2_TryGetValue_m52C57CA7F53B7216B84CE1D164896D0756E470DD_RuntimeMethod_var);
if (L_4)
{
goto IL_001c;
}
}
{
// return;
return;
}
IL_001c:
{
// eventDelegate = existingDelegate - eventDelegate;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * L_5 = V_1;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * L_6 = ___eventDelegate0;
Delegate_t * L_7 = Delegate_Remove_m0B0DB7D1B3AF96B71AFAA72BA0EFE32FBBC2932D((Delegate_t *)L_5, (Delegate_t *)L_6, /*hidden argument*/NULL);
___eventDelegate0 = (EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *)((EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *)Castclass((RuntimeObject*)L_7, EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995_il2cpp_TypeInfo_var));
// if (eventDelegate != null)
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * L_8 = ___eventDelegate0;
if (!L_8)
{
goto IL_003b;
}
}
{
// eventTable[type] = eventDelegate;
Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * L_9 = (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)__this->get_eventTable_0();
Type_t * L_10 = V_0;
EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 * L_11 = ___eventDelegate0;
NullCheck((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_9);
Dictionary_2_set_Item_m91A3BDD60842621406838EB3A46C9FD5D0E320FB((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_9, (Type_t *)L_10, (EventDelegate_tA7EE228FD3A939EF5CCB9EE55F0A66907AB18995 *)L_11, /*hidden argument*/Dictionary_2_set_Item_m91A3BDD60842621406838EB3A46C9FD5D0E320FB_RuntimeMethod_var);
// }
return;
}
IL_003b:
{
// eventTable.Remove(type);
Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 * L_12 = (Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)__this->get_eventTable_0();
Type_t * L_13 = V_0;
NullCheck((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_12);
Dictionary_2_Remove_m47ABCF90B5038DB37833A59B3D86D005FADC6597((Dictionary_2_t6430EDB0753DCF6232B3A56E789E18C1E6620A83 *)L_12, (Type_t *)L_13, /*hidden argument*/Dictionary_2_Remove_m47ABCF90B5038DB37833A59B3D86D005FADC6597_RuntimeMethod_var);
// }
return;
}
}
// System.Void System.Array::Fill<System.Object>(T[],T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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, Array_Fill_TisRuntimeObject_m17788C749A1F812B9910BAB0DAAFC24E5B2542D9_RuntimeMethod_var);
}
IL_000e:
{
V_0 = (int32_t)0;
goto IL_001e;
}
IL_0012:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_2 = ___array0;
int32_t L_3 = V_0;
RuntimeObject * L_4 = ___value1;
NullCheck(L_2);
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject *)L_4);
int32_t L_5 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)1));
}
IL_001e:
{
int32_t L_6 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_7 = ___array0;
NullCheck(L_7);
if ((((int32_t)L_6) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))))))
{
goto IL_0012;
}
}
{
return;
}
}
// System.Void System.Array::Fill<System.Object>(T[],T,System.Int32,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, RuntimeObject * ___value1, int32_t ___startIndex2, int32_t ___count3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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, Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_RuntimeMethod_var);
}
IL_000e:
{
int32_t L_2 = ___startIndex2;
if ((((int32_t)L_2) < ((int32_t)0)))
{
goto IL_0018;
}
}
{
int32_t L_3 = ___startIndex2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_4 = ___array0;
NullCheck(L_4);
if ((((int32_t)L_3) <= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_4)->max_length)))))))
{
goto IL_0028;
}
}
IL_0018:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_5 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_5, (String_t*)_stringLiteral8972561214BDFD4779823E480036EAF0853E3C56, (String_t*)_stringLiteral9071A4CB8E2F99F81D5B117DAE3211B994971FFA, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_RuntimeMethod_var);
}
IL_0028:
{
int32_t L_6 = ___count3;
if ((((int32_t)L_6) < ((int32_t)0)))
{
goto IL_0034;
}
}
{
int32_t L_7 = ___startIndex2;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_8 = ___array0;
NullCheck(L_8);
int32_t L_9 = ___count3;
if ((((int32_t)L_7) <= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length)))), (int32_t)L_9)))))
{
goto IL_0044;
}
}
IL_0034:
{
ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA * L_10 = (ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA *)il2cpp_codegen_object_new(ArgumentOutOfRangeException_t94D19DF918A54511AEDF4784C9A08741BAD1DEDA_il2cpp_TypeInfo_var);
ArgumentOutOfRangeException__ctor_m300CE4D04A068C209FD858101AC361C1B600B5AE(L_10, (String_t*)_stringLiteralEE9F38E186BA06F57B7B74D7E626B94E13CE2556, (String_t*)_stringLiteral4DDC7DDA06EC167A4193D5F00C1F56AF6DF241EC, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_10, Array_Fill_TisRuntimeObject_mE8179E5A1AFA2F343A691AD05F333C81C7E89177_RuntimeMethod_var);
}
IL_0044:
{
int32_t L_11 = ___startIndex2;
V_0 = (int32_t)L_11;
goto IL_0054;
}
IL_0048:
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_12 = ___array0;
int32_t L_13 = V_0;
RuntimeObject * L_14 = ___value1;
NullCheck(L_12);
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(L_13), (RuntimeObject *)L_14);
int32_t L_15 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1));
}
IL_0054:
{
int32_t L_16 = V_0;
int32_t L_17 = ___startIndex2;
int32_t L_18 = ___count3;
if ((((int32_t)L_16) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)L_18)))))
{
goto IL_0048;
}
}
{
return;
}
}
// System.Void System.Array::ForEach<System.Object>(T[],System.Action`1<T>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_gshared (ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * ___action1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_MetadataUsageId);
s_Il2CppMethodInitialized = true;
}
int32_t V_0 = 0;
{
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* 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, Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_RuntimeMethod_var);
}
IL_000e:
{
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_2 = ___action1;
if (L_2)
{
goto IL_001c;
}
}
{
ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD * L_3 = (ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD *)il2cpp_codegen_object_new(ArgumentNullException_t581DF992B1F3E0EC6EFB30CC5DC43519A79B27AD_il2cpp_TypeInfo_var);
ArgumentNullException__ctor_mEE0C0D6FCB2D08CD7967DBB1329A0854BBED49ED(L_3, (String_t*)_stringLiteral34EB4C4EF005207E8B8F916B9F1FFFACCCD6945E, /*hidden argument*/NULL);
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, Array_ForEach_TisRuntimeObject_mD8B1EA04C06936E21C2BB9B0FF603E09F75146C0_RuntimeMethod_var);
}
IL_001c:
{
V_0 = (int32_t)0;
goto IL_0031;
}
IL_0020:
{
Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 * L_4 = ___action1;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_5 = ___array0;
int32_t L_6 = V_0;
NullCheck(L_5);
int32_t L_7 = L_6;
RuntimeObject * L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
NullCheck((Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)L_4);
(( void (*) (Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *, RuntimeObject *, const RuntimeMethod*))IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0)->methodPointer)((Action_1_t551A279CEADCF6EEAE8FA2B1E1E757D0D15290D0 *)L_4, (RuntimeObject *)L_8, /*hidden argument*/IL2CPP_RGCTX_METHOD_INFO(method->rgctx_data, 0));
int32_t L_9 = V_0;
V_0 = (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)1));
}
IL_0031:
{
int32_t L_10 = V_0;
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_11 = ___array0;
NullCheck(L_11);
if ((((int32_t)L_10) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray*)L_11)->max_length)))))))
{
goto IL_0020;
}
}
{
return;
}
}
// System.Void System.Array::InternalArray__ICollection_Add<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_mFFC21B3478BA60249F704BAF77C9E1B74990A27E_gshared (RuntimeArray * __this, ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_mFFC21B3478BA60249F704BAF77C9E1B74990A27E_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, Array_InternalArray__ICollection_Add_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_mFFC21B3478BA60249F704BAF77C9E1B74990A27E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<Gvr.Internal.EmulatorTouchEvent_Pointer>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mE2735DDD39E6D0F09617763D600BFD97DEBB3F32_gshared (RuntimeArray * __this, Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mE2735DDD39E6D0F09617763D600BFD97DEBB3F32_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, Array_InternalArray__ICollection_Add_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mE2735DDD39E6D0F09617763D600BFD97DEBB3F32_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<GvrControllerVisual_VisualAssets>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m29BEEBFAF2A4CD0812887979A916365D2C98C6D2_gshared (RuntimeArray * __this, VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m29BEEBFAF2A4CD0812887979A916365D2C98C6D2_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, Array_InternalArray__ICollection_Add_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m29BEEBFAF2A4CD0812887979A916365D2C98C6D2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_gshared (RuntimeArray * __this, TableRange_t485CF0807771CC05023466CFCB0AE25C46648100 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_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, Array_InternalArray__ICollection_Add_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m41DC5285B61D03EDE86E49660265291FCB45E655_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<Mono.Security.Uri_UriScheme>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m796E7B2DE00B1D96044FB8C0F3FC168EE55110CB_gshared (RuntimeArray * __this, UriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m796E7B2DE00B1D96044FB8C0F3FC168EE55110CB_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, Array_InternalArray__ICollection_Add_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m796E7B2DE00B1D96044FB8C0F3FC168EE55110CB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Boolean>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_gshared (RuntimeArray * __this, bool ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_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, Array_InternalArray__ICollection_Add_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_m532C28C679898CA0B23D07FD800B6382955FAE11_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Byte>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_gshared (RuntimeArray * __this, uint8_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_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, Array_InternalArray__ICollection_Add_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m6CE9D938BF844C4B0941F64D66238FF0BAF88E59_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Char>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_gshared (RuntimeArray * __this, Il2CppChar ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_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, Array_InternalArray__ICollection_Add_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_mE9876BA14462806C7F0DA620920EDEBBD262679F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.DictionaryEntry>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_gshared (RuntimeArray * __this, DictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_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, Array_InternalArray__ICollection_Add_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m750633AE7011FC3270A42BD78A0CD6CFF7A6D339_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_mA314E44728467DA3C05DD27534CE3F2FB0F8758C_gshared (RuntimeArray * __this, Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_mA314E44728467DA3C05DD27534CE3F2FB0F8758C_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, Array_InternalArray__ICollection_Add_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_mA314E44728467DA3C05DD27534CE3F2FB0F8758C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E6CDCE2431B9D120CF89BA6C2C922A9643A5F04_gshared (RuntimeArray * __this, Entry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E6CDCE2431B9D120CF89BA6C2C922A9643A5F04_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, Array_InternalArray__ICollection_Add_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m0E6CDCE2431B9D120CF89BA6C2C922A9643A5F04_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m426CDA2382EE089F19FA17DE3AAC5AEF0B05B3EB_gshared (RuntimeArray * __this, Entry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m426CDA2382EE089F19FA17DE3AAC5AEF0B05B3EB_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, Array_InternalArray__ICollection_Add_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_m426CDA2382EE089F19FA17DE3AAC5AEF0B05B3EB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mED7E15A2362EC8CA438CF33E55DC77E1E77361A5_gshared (RuntimeArray * __this, Entry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mED7E15A2362EC8CA438CF33E55DC77E1E77361A5_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, Array_InternalArray__ICollection_Add_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_mED7E15A2362EC8CA438CF33E55DC77E1E77361A5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32Enum>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m6CA0476E4C4A438B7016D59E6D99E5F365543EE0_gshared (RuntimeArray * __this, Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m6CA0476E4C4A438B7016D59E6D99E5F365543EE0_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, Array_InternalArray__ICollection_Add_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m6CA0476E4C4A438B7016D59E6D99E5F365543EE0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m4FAD8D5D6BEC1BE76F777742F88AF3BEBB7941B8_gshared (RuntimeArray * __this, Entry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m4FAD8D5D6BEC1BE76F777742F88AF3BEBB7941B8_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, Array_InternalArray__ICollection_Add_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_m4FAD8D5D6BEC1BE76F777742F88AF3BEBB7941B8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_gshared (RuntimeArray * __this, Entry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_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, Array_InternalArray__ICollection_Add_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m41A93018BD641D0F91CA73B1FC145D853E87238B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mBA9F868FB2708CBE8902469EBBC47D431AF0EDB0_gshared (RuntimeArray * __this, Entry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mBA9F868FB2708CBE8902469EBBC47D431AF0EDB0_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, Array_InternalArray__ICollection_Add_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mBA9F868FB2708CBE8902469EBBC47D431AF0EDB0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_gshared (RuntimeArray * __this, Entry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_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, Array_InternalArray__ICollection_Add_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m8009794B657B23E794B64B064DA14786EB6566BB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m3341F6938A4CEE3D198FFD6A74E7208C14755C4D_gshared (RuntimeArray * __this, Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m3341F6938A4CEE3D198FFD6A74E7208C14755C4D_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, Array_InternalArray__ICollection_Add_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_m3341F6938A4CEE3D198FFD6A74E7208C14755C4D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_gshared (RuntimeArray * __this, Entry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_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, Array_InternalArray__ICollection_Add_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m2B59878482B381DD2D3E374BA1A46EB11C398D66_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_gshared (RuntimeArray * __this, Entry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_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, Array_InternalArray__ICollection_Add_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mE3AE4EA3CF71DA2A19BB2BDEE32758232559B8E2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF01532AC3CE9C9050DC9148DB06AE3035C248D0F_gshared (RuntimeArray * __this, Entry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF01532AC3CE9C9050DC9148DB06AE3035C248D0F_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, Array_InternalArray__ICollection_Add_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_mF01532AC3CE9C9050DC9148DB06AE3035C248D0F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m81CDE19CBD691B8B2312313A9E431E2FA311769D_gshared (RuntimeArray * __this, Entry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m81CDE19CBD691B8B2312313A9E431E2FA311769D_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, Array_InternalArray__ICollection_Add_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m81CDE19CBD691B8B2312313A9E431E2FA311769D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_gshared (RuntimeArray * __this, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_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, Array_InternalArray__ICollection_Add_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m7E273D12CF8694A47E9EA3246CCBA06A1DF2699A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_mE0C90FBD878CE8295FE0C36CACC4ED15F26AEFA1_gshared (RuntimeArray * __this, Entry_t687188C87EF1FD0D50038E634676DBC449857B8E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_mE0C90FBD878CE8295FE0C36CACC4ED15F26AEFA1_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, Array_InternalArray__ICollection_Add_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_mE0C90FBD878CE8295FE0C36CACC4ED15F26AEFA1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m20B2484A9DE661ED663F0C1CB5487FA5A8B35F2C_gshared (RuntimeArray * __this, Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m20B2484A9DE661ED663F0C1CB5487FA5A8B35F2C_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, Array_InternalArray__ICollection_Add_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m20B2484A9DE661ED663F0C1CB5487FA5A8B35F2C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_mD79134DE473C4F90AD38361E70849B46E1056CDE_gshared (RuntimeArray * __this, Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_mD79134DE473C4F90AD38361E70849B46E1056CDE_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, Array_InternalArray__ICollection_Add_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_mD79134DE473C4F90AD38361E70849B46E1056CDE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.HashSet`1_Slot<System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m9C2335FA547A1F31DFDEC04116F2A3F493010023_gshared (RuntimeArray * __this, Slot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m9C2335FA547A1F31DFDEC04116F2A3F493010023_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, Array_InternalArray__ICollection_Add_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m9C2335FA547A1F31DFDEC04116F2A3F493010023_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m428922DA3FB421D46D3BD8AAC8776908F37802CB_gshared (RuntimeArray * __this, KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m428922DA3FB421D46D3BD8AAC8776908F37802CB_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m428922DA3FB421D46D3BD8AAC8776908F37802CB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_gshared (RuntimeArray * __this, KeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m69320DEF59E083DBD93314746843C843B2339916_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_gshared (RuntimeArray * __this, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_m820870FE13AC7D7DB9B4F697E3ADA0E4ED9F233E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_gshared (RuntimeArray * __this, KeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mCD5EA65245A856DF4D46C3D1D83EF72D6649850B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m76CA8DE020DFE27B7C7AAAD4DCBC9A98CAA09083_gshared (RuntimeArray * __this, KeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m76CA8DE020DFE27B7C7AAAD4DCBC9A98CAA09083_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m76CA8DE020DFE27B7C7AAAD4DCBC9A98CAA09083_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC1EDC3A1DA696DCD9E30F846B6EFDDD63FC2F51C_gshared (RuntimeArray * __this, KeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC1EDC3A1DA696DCD9E30F846B6EFDDD63FC2F51C_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mC1EDC3A1DA696DCD9E30F846B6EFDDD63FC2F51C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m33D7457FF436623FCB05BCF6E1C8395D0416EBD3_gshared (RuntimeArray * __this, KeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m33D7457FF436623FCB05BCF6E1C8395D0416EBD3_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m33D7457FF436623FCB05BCF6E1C8395D0416EBD3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_mA010E700CAB98B8737E7B6323FE4A964FD4B36B7_gshared (RuntimeArray * __this, KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_mA010E700CAB98B8737E7B6323FE4A964FD4B36B7_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_mA010E700CAB98B8737E7B6323FE4A964FD4B36B7_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_m13DD87F3DBDABE04F693F7548A4194C82A7FFF6D_gshared (RuntimeArray * __this, KeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_m13DD87F3DBDABE04F693F7548A4194C82A7FFF6D_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_m13DD87F3DBDABE04F693F7548A4194C82A7FFF6D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_gshared (RuntimeArray * __this, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m7CD8B9E5262B9148874F8E998E310C57FEED36E5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m8F1E7559DAD7DA0A24EB7236DAC079801CED1A3C_gshared (RuntimeArray * __this, KeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m8F1E7559DAD7DA0A24EB7236DAC079801CED1A3C_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m8F1E7559DAD7DA0A24EB7236DAC079801CED1A3C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_gshared (RuntimeArray * __this, KeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_mF64CC542989AA856B9F7C2A3982B92FAED8CF553_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m439BE22E14F43A93B3BA32DC031491BA83486510_gshared (RuntimeArray * __this, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m439BE22E14F43A93B3BA32DC031491BA83486510_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m439BE22E14F43A93B3BA32DC031491BA83486510_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_gshared (RuntimeArray * __this, KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mE8D83A4F3F4E11B0B90811ABECB3AB0AA225E965_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_gshared (RuntimeArray * __this, KeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m5B83ED22E5BB72C1EEE4378606E5AF227418E6E3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA1CEFF2AB9C70303280A6EE5EEDB60F50DA74606_gshared (RuntimeArray * __this, KeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA1CEFF2AB9C70303280A6EE5EEDB60F50DA74606_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_mA1CEFF2AB9C70303280A6EE5EEDB60F50DA74606_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m75C01DEB35D58B2F9B6C2A58A6F5C75D887107E0_gshared (RuntimeArray * __this, KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m75C01DEB35D58B2F9B6C2A58A6F5C75D887107E0_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m75C01DEB35D58B2F9B6C2A58A6F5C75D887107E0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_gshared (RuntimeArray * __this, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mED931E70FDD5AD80BE58308190296AF4BD2A2697_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_m147C61A1A10F789127BF7B7277F941254EB0EF9B_gshared (RuntimeArray * __this, KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_m147C61A1A10F789127BF7B7277F941254EB0EF9B_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_m147C61A1A10F789127BF7B7277F941254EB0EF9B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m6FABA52A8077521D75EEF47F96B6F6835F24012A_gshared (RuntimeArray * __this, KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m6FABA52A8077521D75EEF47F96B6F6835F24012A_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m6FABA52A8077521D75EEF47F96B6F6835F24012A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m9334E69B8859805AEA45E91FB4236237D4546C1B_gshared (RuntimeArray * __this, KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m9334E69B8859805AEA45E91FB4236237D4546C1B_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, Array_InternalArray__ICollection_Add_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m9334E69B8859805AEA45E91FB4236237D4546C1B_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Collections.Hashtable_bucket>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_gshared (RuntimeArray * __this, bucket_t1C848488DF65838689F7773D46F9E7E8C881B083 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_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, Array_InternalArray__ICollection_Add_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mB1C869D60E06C6306DEAAFBE85B4F06498C00CB4_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.DateTime>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_gshared (RuntimeArray * __this, DateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_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, Array_InternalArray__ICollection_Add_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mA5B7B5E10D668EF4B1826A8AF5AC8E4C3FE362F3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Decimal>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_gshared (RuntimeArray * __this, Decimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_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, Array_InternalArray__ICollection_Add_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m1259069E61BF9090D90CCB226B622D52F568689F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_gshared (RuntimeArray * __this, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_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, Array_InternalArray__ICollection_Add_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m7AA0A527A2968388C17316F50F47678B4C1DB702_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Diagnostics.Tracing.EventSource_EventMetadata>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_gshared (RuntimeArray * __this, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_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, Array_InternalArray__ICollection_Add_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_mD43BFA4FE9AD453808D80227303D1A7F522823D8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Double>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_gshared (RuntimeArray * __this, double ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_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, Array_InternalArray__ICollection_Add_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m2724CF478D14143A842CE1C9F26C75D6DCB3D405_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Globalization.InternalCodePageDataItem>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_gshared (RuntimeArray * __this, InternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_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, Array_InternalArray__ICollection_Add_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_mF0FD4095BC83A9EFD6F73BFAAA1E2806A434D0A8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Globalization.InternalEncodingDataItem>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_gshared (RuntimeArray * __this, InternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_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, Array_InternalArray__ICollection_Add_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m8170459B576E7C3284F5BF388BA5E8E08C49AFA3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Guid>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_gshared (RuntimeArray * __this, Guid_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_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, Array_InternalArray__ICollection_Add_TisGuid_t_m3D3B4189F723AA35BA753196DEE29E21EFEE2895_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Int16>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_gshared (RuntimeArray * __this, int16_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_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, Array_InternalArray__ICollection_Add_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mD7613C38460357CC7D632543AD4BFFADE41372B0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Int32>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_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, Array_InternalArray__ICollection_Add_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m2846C327D205FD445F46B26A8337AA09A50DCA7F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Int32Enum>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_gshared (RuntimeArray * __this, int32_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_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, Array_InternalArray__ICollection_Add_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mDE65E1A5B61F9FFFBA527F0733F213B50CD862A3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Int64>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_gshared (RuntimeArray * __this, int64_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_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, Array_InternalArray__ICollection_Add_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4249581FB074DA4BF8020A71CACE1DFC40799D8C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.IntPtr>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_gshared (RuntimeArray * __this, intptr_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_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, Array_InternalArray__ICollection_Add_TisIntPtr_t_mA5CCAC9E9CC25E309F3810D44D853D16E68143AE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Object>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_gshared (RuntimeArray * __this, RuntimeObject * ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_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, Array_InternalArray__ICollection_Add_TisRuntimeObject_m0CCC0B9275EC8F89A85603F037804A668B41D6D7_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.ParameterizedStrings_FormatParam>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_gshared (RuntimeArray * __this, FormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_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, Array_InternalArray__ICollection_Add_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m7BDBAA78BB0BFCDE4C13D1FA2E16150B093EE963_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeNamedArgument>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_gshared (RuntimeArray * __this, CustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_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, Array_InternalArray__ICollection_Add_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m520DB9E5D654654E0DF9557B69164AF7050C34A1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.CustomAttributeTypedArgument>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_gshared (RuntimeArray * __this, CustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_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, Array_InternalArray__ICollection_Add_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_mEE8FA99D85B70DFDB094944EDF18BE4A7853B357_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Reflection.ParameterModifier>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_gshared (RuntimeArray * __this, ParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_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, Array_InternalArray__ICollection_Add_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_m73A4C9FDB30642B0ABD7FAE47BC50C05EED42773_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Resources.ResourceLocator>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_gshared (RuntimeArray * __this, ResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_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, Array_InternalArray__ICollection_Add_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_m2EA0B46DC9C64F0BE418A85AAD5C9D51B42D9DC6_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Runtime.CompilerServices.Ephemeron>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_gshared (RuntimeArray * __this, Ephemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_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, Array_InternalArray__ICollection_Add_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_m7A511A9A1050449575F29E6E1FFA4B1455F69106_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Runtime.InteropServices.GCHandle>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_gshared (RuntimeArray * __this, GCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_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, Array_InternalArray__ICollection_Add_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m5AAC663D9FF27C71867B58748C6FF2837B6E856E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.SByte>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_gshared (RuntimeArray * __this, int8_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_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, Array_InternalArray__ICollection_Add_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_mACD698DB2EBC900286A7C038977637C855CACCE3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Single>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_gshared (RuntimeArray * __this, float ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_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, Array_InternalArray__ICollection_Add_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_mC0E828AAE8E2E46C8979EAEC50A8982717CD0959_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_gshared (RuntimeArray * __this, LowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_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, Array_InternalArray__ICollection_Add_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m1776112EB9AF5A4FD01E374AE176D398A5D99272_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.Threading.CancellationTokenRegistration>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_gshared (RuntimeArray * __this, CancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_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, Array_InternalArray__ICollection_Add_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m52F54CCFA1A2F9024D1DFA3C10213AC86AC571CA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.TimeSpan>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_gshared (RuntimeArray * __this, TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_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, Array_InternalArray__ICollection_Add_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_m9447DCF7C9EEF7F6DD9C48083050A1A25AA28612_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.UInt16>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_gshared (RuntimeArray * __this, uint16_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_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, Array_InternalArray__ICollection_Add_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFAF3113B4A5963AB0BE38DEC63FB97971C7AF399_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.UInt32>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_gshared (RuntimeArray * __this, uint32_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_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, Array_InternalArray__ICollection_Add_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_mF287F6C0BE00077C872A4549CA38D6E0AB2CAB9F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.UInt64>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_gshared (RuntimeArray * __this, uint64_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_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, Array_InternalArray__ICollection_Add_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_mC20BC01F1B502A5A125289CFD752F1274394A228_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<System.UIntPtr>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_gshared (RuntimeArray * __this, uintptr_t ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_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, Array_InternalArray__ICollection_Add_TisUIntPtr_t_m544443A94C05D083C3564BA6390987FB980A973A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.MaterialReference>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m0C2786678947F3F8F614E95F302B8141656E0BEC_gshared (RuntimeArray * __this, MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m0C2786678947F3F8F614E95F302B8141656E0BEC_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, Array_InternalArray__ICollection_Add_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m0C2786678947F3F8F614E95F302B8141656E0BEC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.RichTextTagAttribute>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m5B0033060F17F61226207330569318E317B76894_gshared (RuntimeArray * __this, RichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m5B0033060F17F61226207330569318E317B76894_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, Array_InternalArray__ICollection_Add_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m5B0033060F17F61226207330569318E317B76894_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m886F64BFBEA3DC77CC40BCCEDCCF42022F1C5872_gshared (RuntimeArray * __this, SpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m886F64BFBEA3DC77CC40BCCEDCCF42022F1C5872_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, Array_InternalArray__ICollection_Add_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m886F64BFBEA3DC77CC40BCCEDCCF42022F1C5872_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.TMP_CharacterInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4560C04EF3CAB4580998FE10CE51FD7859F1107_gshared (RuntimeArray * __this, TMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4560C04EF3CAB4580998FE10CE51FD7859F1107_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, Array_InternalArray__ICollection_Add_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_mB4560C04EF3CAB4580998FE10CE51FD7859F1107_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.TMP_FontWeightPair>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m5AADBF26870DF171C1A9134F27CEB6D9F2E4DF80_gshared (RuntimeArray * __this, TMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m5AADBF26870DF171C1A9134F27CEB6D9F2E4DF80_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, Array_InternalArray__ICollection_Add_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m5AADBF26870DF171C1A9134F27CEB6D9F2E4DF80_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.TMP_LineInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mA63550FB7A581FAA2DC522FC04C06E4AD696093D_gshared (RuntimeArray * __this, TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mA63550FB7A581FAA2DC522FC04C06E4AD696093D_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, Array_InternalArray__ICollection_Add_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_mA63550FB7A581FAA2DC522FC04C06E4AD696093D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.TMP_LinkInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFA8893709D0ED35E3F3F9CEE6371B8E370D8B2E9_gshared (RuntimeArray * __this, TMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFA8893709D0ED35E3F3F9CEE6371B8E370D8B2E9_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, Array_InternalArray__ICollection_Add_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_mFA8893709D0ED35E3F3F9CEE6371B8E370D8B2E9_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.TMP_MeshInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m935F6ED67206736FF9603FD61129400CCE6D09B0_gshared (RuntimeArray * __this, TMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m935F6ED67206736FF9603FD61129400CCE6D09B0_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, Array_InternalArray__ICollection_Add_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_m935F6ED67206736FF9603FD61129400CCE6D09B0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.TMP_PageInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m34C3E91FDDCCE200C165885775A0528D7C1EC82D_gshared (RuntimeArray * __this, TMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m34C3E91FDDCCE200C165885775A0528D7C1EC82D_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, Array_InternalArray__ICollection_Add_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m34C3E91FDDCCE200C165885775A0528D7C1EC82D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.TMP_Text_UnicodeChar>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mA8C54365B2797B67C393F2ECBA787D1BFD3A0C8E_gshared (RuntimeArray * __this, UnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mA8C54365B2797B67C393F2ECBA787D1BFD3A0C8E_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, Array_InternalArray__ICollection_Add_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_mA8C54365B2797B67C393F2ECBA787D1BFD3A0C8E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<TMPro.TMP_WordInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m27BFBB0BFB9A9DA887DB050F91D20A123A5A0187_gshared (RuntimeArray * __this, TMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m27BFBB0BFB9A9DA887DB050F91D20A123A5A0187_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, Array_InternalArray__ICollection_Add_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_m27BFBB0BFB9A9DA887DB050F91D20A123A5A0187_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.BeforeRenderHelper_OrderBlock>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_gshared (RuntimeArray * __this, OrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_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, Array_InternalArray__ICollection_Add_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mA65A034C66A7843760B091E310C34D7E6A12319F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Color32>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m2FBA2E8783377B2B528E23F33334B1178CB352BA_gshared (RuntimeArray * __this, Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m2FBA2E8783377B2B528E23F33334B1178CB352BA_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, Array_InternalArray__ICollection_Add_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_m2FBA2E8783377B2B528E23F33334B1178CB352BA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Color>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF6CC213BC190C981F6F97922F5717F67C969E1C1_gshared (RuntimeArray * __this, Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF6CC213BC190C981F6F97922F5717F67C969E1C1_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, Array_InternalArray__ICollection_Add_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mF6CC213BC190C981F6F97922F5717F67C969E1C1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ContactPoint2D>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1D1926459E9F42FFF65FFCBB00E18765DD82C4E1_gshared (RuntimeArray * __this, ContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1D1926459E9F42FFF65FFCBB00E18765DD82C4E1_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, Array_InternalArray__ICollection_Add_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_m1D1926459E9F42FFF65FFCBB00E18765DD82C4E1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.ContactPoint>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m706295C9A73A1B83DD532B0BBA3A753DC8345335_gshared (RuntimeArray * __this, ContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m706295C9A73A1B83DD532B0BBA3A753DC8345335_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, Array_InternalArray__ICollection_Add_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_m706295C9A73A1B83DD532B0BBA3A753DC8345335_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.EventSystems.RaycastResult>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mB798B5BAFF5DC83E829009B46B7686652F691B5F_gshared (RuntimeArray * __this, RaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mB798B5BAFF5DC83E829009B46B7686652F691B5F_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, Array_InternalArray__ICollection_Add_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mB798B5BAFF5DC83E829009B46B7686652F691B5F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m8C977DB2E70FB6ECE6C9BA03BB36342414E66502_gshared (RuntimeArray * __this, LightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m8C977DB2E70FB6ECE6C9BA03BB36342414E66502_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, Array_InternalArray__ICollection_Add_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m8C977DB2E70FB6ECE6C9BA03BB36342414E66502_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_mB160A86D52CD82EE3FD21C823020D96E86F232B3_gshared (RuntimeArray * __this, TileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_mB160A86D52CD82EE3FD21C823020D96E86F232B3_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, Array_InternalArray__ICollection_Add_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_mB160A86D52CD82EE3FD21C823020D96E86F232B3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Keyframe>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_gshared (RuntimeArray * __this, Keyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_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, Array_InternalArray__ICollection_Add_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m01C5CA55DB16B19394FD41FD3FCF5963951FE0CE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.LowLevel.PlayerLoopSystem>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m0C23542EE4BF3F08FFAA32A67B4E613C1B843A79_gshared (RuntimeArray * __this, PlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m0C23542EE4BF3F08FFAA32A67B4E613C1B843A79_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, Array_InternalArray__ICollection_Add_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m0C23542EE4BF3F08FFAA32A67B4E613C1B843A79_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Plane>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mC7B2B59C20DD832F49A1370D1625018062169C48_gshared (RuntimeArray * __this, Plane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mC7B2B59C20DD832F49A1370D1625018062169C48_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, Array_InternalArray__ICollection_Add_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mC7B2B59C20DD832F49A1370D1625018062169C48_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Playables.PlayableBinding>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_gshared (RuntimeArray * __this, PlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_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, Array_InternalArray__ICollection_Add_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_m3DAF5EED039DF627E5A4021A1C889AA08D481DD3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit2D>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m8BCC6A2EE030123BC009145E3C1B0E77852B151C_gshared (RuntimeArray * __this, RaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m8BCC6A2EE030123BC009145E3C1B0E77852B151C_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, Array_InternalArray__ICollection_Add_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_m8BCC6A2EE030123BC009145E3C1B0E77852B151C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.RaycastHit>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m5F787EB4671307762990773F66BD75BEFB671D7E_gshared (RuntimeArray * __this, RaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m5F787EB4671307762990773F66BD75BEFB671D7E_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, Array_InternalArray__ICollection_Add_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_m5F787EB4671307762990773F66BD75BEFB671D7E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Rendering.BatchVisibility>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m148E599D42E2EF9DAEB4F6FC4E6C3BEB1294B451_gshared (RuntimeArray * __this, BatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m148E599D42E2EF9DAEB4F6FC4E6C3BEB1294B451_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, Array_InternalArray__ICollection_Add_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m148E599D42E2EF9DAEB4F6FC4E6C3BEB1294B451_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.SendMouseEvents_HitInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m42E999F080B83A1FE6B6281E02AFF950AC6E7139_gshared (RuntimeArray * __this, HitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m42E999F080B83A1FE6B6281E02AFF950AC6E7139_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, Array_InternalArray__ICollection_Add_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m42E999F080B83A1FE6B6281E02AFF950AC6E7139_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.TextCore.GlyphRect>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m0EDC0424C918764E4A4775D3A5515263766D4D60_gshared (RuntimeArray * __this, GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m0EDC0424C918764E4A4775D3A5515263766D4D60_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, Array_InternalArray__ICollection_Add_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m0EDC0424C918764E4A4775D3A5515263766D4D60_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mA95132D5CF1E8A895403537EBACC07BC9245CBAB_gshared (RuntimeArray * __this, GlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mA95132D5CF1E8A895403537EBACC07BC9245CBAB_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, Array_InternalArray__ICollection_Add_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_mA95132D5CF1E8A895403537EBACC07BC9245CBAB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m2C6D3DB1A5AE24D62A5BAF3FBE7D7EA90FA6573F_gshared (RuntimeArray * __this, GlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m2C6D3DB1A5AE24D62A5BAF3FBE7D7EA90FA6573F_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, Array_InternalArray__ICollection_Add_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m2C6D3DB1A5AE24D62A5BAF3FBE7D7EA90FA6573F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UI.ColorBlock>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mE8F7E2625A981406013CFB2D8DEA9585FDB839CE_gshared (RuntimeArray * __this, ColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mE8F7E2625A981406013CFB2D8DEA9585FDB839CE_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, Array_InternalArray__ICollection_Add_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mE8F7E2625A981406013CFB2D8DEA9585FDB839CE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UI.Navigation>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mD0EE33E60A29F39D1BF9B67CE2DB21591E9DC2DD_gshared (RuntimeArray * __this, Navigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mD0EE33E60A29F39D1BF9B67CE2DB21591E9DC2DD_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, Array_InternalArray__ICollection_Add_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_mD0EE33E60A29F39D1BF9B67CE2DB21591E9DC2DD_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UI.SpriteState>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m72EA6076017813D25E32AC73C7C7C9434AF7B719_gshared (RuntimeArray * __this, SpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m72EA6076017813D25E32AC73C7C7C9434AF7B719_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, Array_InternalArray__ICollection_Add_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m72EA6076017813D25E32AC73C7C7C9434AF7B719_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UICharInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m2798604DD3D0546DF762DA6DFE28DE72C232559A_gshared (RuntimeArray * __this, UICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m2798604DD3D0546DF762DA6DFE28DE72C232559A_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, Array_InternalArray__ICollection_Add_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m2798604DD3D0546DF762DA6DFE28DE72C232559A_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIElements.EventDispatcher_DispatchContext>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m5F63ABEDB18780C716D29BF513523F2197F8CB26_gshared (RuntimeArray * __this, DispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m5F63ABEDB18780C716D29BF513523F2197F8CB26_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, Array_InternalArray__ICollection_Add_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m5F63ABEDB18780C716D29BF513523F2197F8CB26_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIElements.EventDispatcher_EventRecord>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m4F27CE56C411564055BD71424CB1FC4CDBBC9324_gshared (RuntimeArray * __this, EventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m4F27CE56C411564055BD71424CB1FC4CDBBC9324_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, Array_InternalArray__ICollection_Add_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m4F27CE56C411564055BD71424CB1FC4CDBBC9324_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIElements.FocusController_FocusedElement>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_m74DB0C319FF42D373C0E2C7AE2E6DA8DE2766DDA_gshared (RuntimeArray * __this, FocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_m74DB0C319FF42D373C0E2C7AE2E6DA8DE2766DDA_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, Array_InternalArray__ICollection_Add_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_m74DB0C319FF42D373C0E2C7AE2E6DA8DE2766DDA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0C792FE5C3BBE1129940F475E8C9A7C73F1BB80F_gshared (RuntimeArray * __this, SheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0C792FE5C3BBE1129940F475E8C9A7C73F1BB80F_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, Array_InternalArray__ICollection_Add_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m0C792FE5C3BBE1129940F475E8C9A7C73F1BB80F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIElements.StyleSheets.StyleValue>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mAEA5448CBD83ADE874AA174E0BF276ACC7DCE8EC_gshared (RuntimeArray * __this, StyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mAEA5448CBD83ADE874AA174E0BF276ACC7DCE8EC_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, Array_InternalArray__ICollection_Add_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_mAEA5448CBD83ADE874AA174E0BF276ACC7DCE8EC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UILineInfo>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m0BDA545CD13CC2B31AA4B9064D38258BFF430354_gshared (RuntimeArray * __this, UILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m0BDA545CD13CC2B31AA4B9064D38258BFF430354_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, Array_InternalArray__ICollection_Add_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m0BDA545CD13CC2B31AA4B9064D38258BFF430354_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UIVertex>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF34931C57165FB0D48DFFCC10CB9E6D8A6CF207D_gshared (RuntimeArray * __this, UIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF34931C57165FB0D48DFFCC10CB9E6D8A6CF207D_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, Array_InternalArray__ICollection_Add_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_mF34931C57165FB0D48DFFCC10CB9E6D8A6CF207D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.UnitySynchronizationContext_WorkRequest>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_gshared (RuntimeArray * __this, WorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_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, Array_InternalArray__ICollection_Add_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m386448E6879CAE69737FA5FD60B804A2DF74F3F6_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector2>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m813C91C01037FC0817BC26697DE870168EECA7FA_gshared (RuntimeArray * __this, Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m813C91C01037FC0817BC26697DE870168EECA7FA_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, Array_InternalArray__ICollection_Add_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_m813C91C01037FC0817BC26697DE870168EECA7FA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector3>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m20059B9F9F5CB91D37445E04571F7CF63C444282_gshared (RuntimeArray * __this, Vector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m20059B9F9F5CB91D37445E04571F7CF63C444282_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, Array_InternalArray__ICollection_Add_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m20059B9F9F5CB91D37445E04571F7CF63C444282_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Vector4>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m181E9F89D812B1F85B142F38F1982E6C8180BD76_gshared (RuntimeArray * __this, Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m181E9F89D812B1F85B142F38F1982E6C8180BD76_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, Array_InternalArray__ICollection_Add_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m181E9F89D812B1F85B142F38F1982E6C8180BD76_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.Windows.Speech.SemanticMeaning>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mDEF234CB09495828E145A04D906D48AAAE3DAAB2_gshared (RuntimeArray * __this, SemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mDEF234CB09495828E145A04D906D48AAAE3DAAB2_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, Array_InternalArray__ICollection_Add_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_mDEF234CB09495828E145A04D906D48AAAE3DAAB2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_Add<UnityEngine.jvalue>(T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_Add_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_m9329B601461AF45DB4100C320253DFD3F40B995C_gshared (RuntimeArray * __this, jvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37 ___item0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__ICollection_Add_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_m9329B601461AF45DB4100C320253DFD3F40B995C_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, Array_InternalArray__ICollection_Add_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_m9329B601461AF45DB4100C320253DFD3F40B995C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_mF1D27F68494E63215CF0FFB6A044ED0D61380D1A_gshared (RuntimeArray * __this, ExtensionIntPairU5BU5D_t886F4A34B6FDE4624A466A603D613C6861EE057E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ExtensionIntPairU5BU5D_t886F4A34B6FDE4624A466A603D613C6861EE057E* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<Gvr.Internal.EmulatorTouchEvent_Pointer>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_m601C214A0E2B423149416D7580E19EE07E174D2A_gshared (RuntimeArray * __this, PointerU5BU5D_t96866546CDEB1FE2B19AC7BF16BC33BFD08262DA* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
PointerU5BU5D_t96866546CDEB1FE2B19AC7BF16BC33BFD08262DA* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<GvrControllerVisual_VisualAssets>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m304C94CE6670109B927BDD2F1AB71AC5A0F00CCF_gshared (RuntimeArray * __this, VisualAssetsU5BU5D_t21AE5F549BC318C43336B54D1B04BC6BDD177311* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
VisualAssetsU5BU5D_t21AE5F549BC318C43336B54D1B04BC6BDD177311* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m0BC3173F356490FB4F566F05D1389A9B821436A0_gshared (RuntimeArray * __this, TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TableRangeU5BU5D_t6948DE52FB348848EC96FB928C2FCFEFB250C23A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<Mono.Security.Uri_UriScheme>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_mDDAC8B971622A4DA458916884BBBB7D7F8166E7A_gshared (RuntimeArray * __this, UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UriSchemeU5BU5D_t92DD65C3EBB9FBABD1780850EC0D907191FC261C* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Boolean>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mBD9F9A6A8C8CD6C4298A6068F54650E380442806_gshared (RuntimeArray * __this, BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
BooleanU5BU5D_t192C7579715690E25BD5EFED47F3E0FC9DCB2040* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Byte>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_mF91B7E591398E600E8C85375890CB7A241631090_gshared (RuntimeArray * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Char>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2980FFB33CDCD06BFD134493CE7A76484884C1A1_gshared (RuntimeArray * __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.DictionaryEntry>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_m3C844649427B1A99C1BFBB499EF86F53FF94C3B6_gshared (RuntimeArray * __this, DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
DictionaryEntryU5BU5D_t6910503099D34FA9C9D5F74BA730CC5D91731A56* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_mAB384D49AF0DEEE171E73B3331C516F4E1CC7224_gshared (RuntimeArray * __this, EntryU5BU5D_t30D5EB8C995ED896E0ADEA87F347F424D86AB1E0* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t30D5EB8C995ED896E0ADEA87F347F424D86AB1E0* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tB35805CEB0D3485BE77EA9BA8C3026B75A8EEC61_m22699E3A8915855AFD1A6695ADED1C397E864B86_gshared (RuntimeArray * __this, EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t650EC46021B48AB1D80CD2D34D2B0EAC3165926A_mD2FA85F2F4AF716342CF1BE84499ADF4D4499A64_gshared (RuntimeArray * __this, EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m50B737370EF738BD52146CE7AB18264541F78053_gshared (RuntimeArray * __this, EntryU5BU5D_tA93CC0D3D3F601A01A462F4E82167104C9F63E37* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tA93CC0D3D3F601A01A462F4E82167104C9F63E37* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32Enum>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m17BF2C1067145B9D044A8D8E1184583F5CC3C5CD_gshared (RuntimeArray * __this, EntryU5BU5D_t7EB03C2429C4535344F6F745BDC0400570F0EA9E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t7EB03C2429C4535344F6F745BDC0400570F0EA9E* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tEF57BE8378C384B7B525EA94DA5797623AB1B44A_mA22D1FBC3C48EE57B36231473F934A815E41D66B_gshared (RuntimeArray * __this, EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_m43747FBEEE93B582E16ECEA0BAF060B6C61DDE22_gshared (RuntimeArray * __this, EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t5EE074B97A225B556BC7C9665050E283775D0285* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_mE51E7D0660F61CF1B25E4E656D9B474DD49BCA44_gshared (RuntimeArray * __this, EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m76B6BE46283946A990BDC0D951B37A40ED28C30A_gshared (RuntimeArray * __this, EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tE3A30635C5B794ABD7983F09075F9D4F740716D9* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_mD7E59080C1293A918566A11C6ED66BF182FC20A8_gshared (RuntimeArray * __this, EntryU5BU5D_t1A0116D04DC3E0F3519E158F660E851AAFC09FF7* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t1A0116D04DC3E0F3519E158F660E851AAFC09FF7* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t03898C03E4E291FD6780D28D81A25E3CACF2BADA_m25BE6CD13B6211BAC014B2E9D083BAA81FB42CD9_gshared (RuntimeArray * __this, EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tDF76BDF98210D70C971EBDB07E96E9A8B9CBC6C6* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Resources.ResourceLocator>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_m9E5A2A9A3772DDB3C3FEBF128B9F949029E1409D_gshared (RuntimeArray * __this, EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t72113B36C1268236715BADBA0FB14031D9164FD4* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t93F83B1CDC257C53D5E3FB97F7E4CD8B9A4F7117_m904DBBAB50F46E63C6DB5C6AA341C4C347F1BFF8_gshared (RuntimeArray * __this, EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m526C35E8FAD916D44C5824BAE2E8FDA86061B454_gshared (RuntimeArray * __this, EntryU5BU5D_tA3DE6559C7D1057EE7FD32925DC1D3187112AB3B* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tA3DE6559C7D1057EE7FD32925DC1D3187112AB3B* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m1586F39E762CEC7E55C94E0006EBAB63EBE25D1B_gshared (RuntimeArray * __this, EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tCE3D39EBBB127037F170BD1FBADFA7D55D88E594* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m74116BA5176598E642A0572C29A3490EB542D907_gshared (RuntimeArray * __this, EntryU5BU5D_t50748B96662D70C34AB62339BEB0FBCFD115A7C3* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t50748B96662D70C34AB62339BEB0FBCFD115A7C3* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m23A1F1ABFC4B32EFBD11F9F138726C5FFE709A50_gshared (RuntimeArray * __this, EntryU5BU5D_tACA587DE043730DBEEF9EECD04FE179D7974F9A6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_tACA587DE043730DBEEF9EECD04FE179D7974F9A6* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_mB7077390CCFF88297BDC325FCE524ED4E827AF16_gshared (RuntimeArray * __this, EntryU5BU5D_t0D1584C97CB839440D73C71D270E0712AC664709* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EntryU5BU5D_t0D1584C97CB839440D73C71D270E0712AC664709* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.HashSet`1_Slot<System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_m482AAC85693157DF399F1B73577FF250507132F4_gshared (RuntimeArray * __this, SlotU5BU5D_t9C4FFBCC974570D24EDC1028CCD0269BE774B36C* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
SlotU5BU5D_t9C4FFBCC974570D24EDC1028CCD0269BE774B36C* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m60F0FF9CF852969EA0F554F1EC4D5A5F7007F197_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t130F904919E00A0F5BD91F2BAD7626CCDA61ABBF* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t130F904919E00A0F5BD91F2BAD7626CCDA61ABBF* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_m82249F4ECE8A8C6574BC2168C4245D489AA6CC02_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_tAC201058159F8B6B433415A0AB937BD11FC8A36F* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mE579ED4816AB239783E44E46140B192095482BC7_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t7FAEDA541660EE14F76C26D48E51C98634127BF7* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tD85A2E33C726647EDFB2F7F8E7EDC766E3C53B78_mB13564AD1F1CBAA9CE60C49F604B9F7E8C875E6C_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t920EB0A30DD5CE3BAAF02931D1ABDF93367AC84A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t411E4248A20D0FDB15190B13EA12EBCB69500C82_m2872764889B910454AF4E28FBF2FE751E0B0E8F5_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t13BE4DA362E151A60E59C414DB8A5C61F4A1B30F_mE39BA1F91A1B0DC833315C0ACF4D7A8FACDE8387_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m76BA25A58C25CE21A3820D40CD164E9FB95D101D_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_tC7A09A604E89B878B8A673BD6238A819ADDAD26A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m9666B39AF7EABAEAE812F1D700B78F25E75B8CB4_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tF57C1701FA2CB38EF64FD6039903B4EB5D3C013E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_tF57C1701FA2CB38EF64FD6039903B4EB5D3C013E* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t7C4859F20ECDF8EEA530886FE8ADEE363F117FB5_mE02A448E5F8C9954ED46EE25A7AE5414DFE71826_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m853855764B85B0A9546273329188400E8F7463F0_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t51ECDC3588B5BA2DE76DE4B25B62ACADF928345B* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_mBB6F69CA9F13542E33BD1F51672352DE062B5ADD_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_tF3E7A3C0CD8F236E22836D54F25B24F11461CD8C* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m6E244F2FF1A356C100A5C02BFF9913AC8A458EFB_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t1336B67B1075C3E1E7713F0436412A73F860ADBB* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_mAAA9843581C2DBE4231BCD3D6A5DD04B3A6787EC_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t3A413F0268AB366611BCB5688C157768FCD1B85A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t3A413F0268AB366611BCB5688C157768FCD1B85A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE_mBA7C0BFD2DE5D75FB7A73DF89674170B9441620C_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t4594E4068980FD80C0C538F4F8042A626BC1F262* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.Object,System.Resources.ResourceLocator>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m531A2C06D72CBB66D3EDA74CA34F446D3819EADB_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t3B765F933AA754DF25A0B05B2A27DAED19D7A5EB* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tE6C1358EE7D1267190A395EAC9AEA64A81377D2C_m3EE6696E337465727AF0CB5E4E1B8B1BEB129160_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_m28FB53BD250196665FC3E75F26A85FF36532E39B_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tFF83EB73DF79412BBDF99182ADBCE71EBF101EE8* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_tFF83EB73DF79412BBDF99182ADBCE71EBF101EE8* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_m1CC6DAB78DC6CD93AB85EBC6C823241FA278113D_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t90BD5627DE1270CB7D2384CFC863BF0E5C371EDD* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mBC7B93B56D9C911219888AF5DEBDF18AA32423E4_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t6A43305072C9AA017F5C3B4E4B2953AE5C85A27E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t6A43305072C9AA017F5C3B4E4B2953AE5C85A27E* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_mEBDE5AD1DF5B8BD6FDF9DE4D9AAAF5386FBB75F5_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_tF7650E1C358CD17F3EE16DF6F841B83A2C1FCD31* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_tF7650E1C358CD17F3EE16DF6F841B83A2C1FCD31* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m43D78B46AA64295F676A98474F88B1F0CAA154CF_gshared (RuntimeArray * __this, KeyValuePair_2U5BU5D_t8AF2A040BD67A77CB9AB2B14EE463382950C36DF* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyValuePair_2U5BU5D_t8AF2A040BD67A77CB9AB2B14EE463382950C36DF* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Collections.Hashtable_bucket>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_m6F40A245D46BCE72D17685172647DA62A2CF2D1B_gshared (RuntimeArray * __this, bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
bucketU5BU5D_t6FF2C2C4B21F2206885CD19A78F68B874C8DC84A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.DateTime>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mBC31AACC2787269659E5E8838500F7569EBC0C8E_gshared (RuntimeArray * __this, DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
DateTimeU5BU5D_tFEA62BD2EDF382C69C4B1F20ED98F3709EA271C1* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Decimal>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m94CFF46329A1A6CAC0BDE0463A69D3CE97962DB4_gshared (RuntimeArray * __this, DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
DecimalU5BU5D_t163CFBECCD3B6655700701D6451CA0CF493CBF0F* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Diagnostics.Tracing.EventProvider_SessionInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_m1355AD3B97BD4073D9DCBDB6F78169457F8A36F0_gshared (RuntimeArray * __this, SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
SessionInfoU5BU5D_t02CDCD5CCABB257B68199994B2C87BBD1849E906* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Diagnostics.Tracing.EventSource_EventMetadata>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m54E10719833E231F27F1297CBEE6ADCD150FE89B_gshared (RuntimeArray * __this, EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EventMetadataU5BU5D_tA6A4B1FE9D3A53D9941A4C63D95399E4594ABE94* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Double>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m4A1C21110D0994BB4A40CD2FB09D266F95969402_gshared (RuntimeArray * __this, DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Globalization.InternalCodePageDataItem>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m3776A01A9E3E3DBA4AA3D6B6AB6C40C985180C4A_gshared (RuntimeArray * __this, InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
InternalCodePageDataItemU5BU5D_t94CE8C20C6D99D9F2F13E2E7FA2C44007AE27834* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Globalization.InternalEncodingDataItem>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_m86075A908E67D024DB8D65AE14312C0F8BBC4123_gshared (RuntimeArray * __this, InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
InternalEncodingDataItemU5BU5D_t0579A8C6FC0871F0230E51290511BF0C9C706C68* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Guid>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGuid_t_m9D1F99709B0A0A06CD0786150A6C9FBBFD861DF8_gshared (RuntimeArray * __this, GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
GuidU5BU5D_t5CC024A2CAE5304311E0B961142A216C0972B0FF* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int16>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_m298E0FB072C571CC76811A4F06E0CB402DC3AA7C_gshared (RuntimeArray * __this, Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
Int16U5BU5D_tDA0F0B2730337F72E44DB024BE9818FA8EDE8D28* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m02DC5E49BDCF23773FBFA8AC8BA437D3AE49714E_gshared (RuntimeArray * __this, Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int32Enum>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mB20281C5A61D3D8F70AF07865E5C4ADAFD13679E_gshared (RuntimeArray * __this, Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
Int32EnumU5BU5D_t0A5530B4D0EA3796F661E767F9F7D7005A62CE4A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Int64>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m916A379E4AFBE98E613E9A7ADCE5E484F510553D_gshared (RuntimeArray * __this, Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
Int64U5BU5D_tE04A3DEF6AF1C852A43B98A24EFB715806B37F5F* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.IntPtr>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisIntPtr_t_mAA90216755473171D7D9F1F8AEB18507D4A6B7E7_gshared (RuntimeArray * __this, IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Object>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisRuntimeObject_m67406BEC1F3A105AD1DC84B39158B4EF91B823D0_gshared (RuntimeArray * __this, ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ObjectU5BU5D_t3C9242B5C88A48B2A5BD9FDA6CD0024E792AF08A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.ParameterizedStrings_FormatParam>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisFormatParam_t1901DD0E7CD1B3A17B09040A6E2FCA5307328800_m59B1A952ECF8DFFD40E363ED14DFC8BC9B8F3A32_gshared (RuntimeArray * __this, FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
FormatParamU5BU5D_t2F95A3C5AF726E75A42BC28843BAD579B62199B5* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.CustomAttributeNamedArgument>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisCustomAttributeNamedArgument_t08BA731A94FD7F173551DF3098384CB9B3056E9E_m1446DBA230CA912A16D3A5B507D327339E5EA2A3_gshared (RuntimeArray * __this, CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
CustomAttributeNamedArgumentU5BU5D_tFD37F6CE782EF87006B5F999D53A711D1A7B9828* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.CustomAttributeTypedArgument>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisCustomAttributeTypedArgument_t238ACCB3A438CB5EDE4A924C637B288CCEC958E8_m19A0D281CD8B8611FC34CA4D9EA4B375C26F95EA_gshared (RuntimeArray * __this, CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
CustomAttributeTypedArgumentU5BU5D_t9F6789B0E2215365EA8161484FC1E4B6F9446C05* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Reflection.ParameterModifier>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisParameterModifier_t7BEFF7C52C8D7CD73D787BDAE6A1A50196204E3E_mEE841A9F27362C2828AEBB1D4F00307B87FB141D_gshared (RuntimeArray * __this, ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ParameterModifierU5BU5D_t63EC46F14F048DC9EF6BF1362E8AEBEA1A05A5EA* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Resources.ResourceLocator>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisResourceLocator_t1783916E271C27CB09DF57E7E5ED08ECA4B3275C_mBAFC4734CA9C7EB3D7E9C9954EB24FC78CE57F40_gshared (RuntimeArray * __this, ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ResourceLocatorU5BU5D_t59B7EB7C559188316AF65FCF8AF05BFD7EF9ADCC* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Runtime.CompilerServices.Ephemeron>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEphemeron_t6F0B12401657FF132AB44052E5BCD06D358FF1BA_mBF34CEBD4C9F51B48D385CA39DF3BA9DC8303CEE_gshared (RuntimeArray * __this, EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EphemeronU5BU5D_t575534899E3EE9D8B85CAF11342BA22D164C7C10* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Runtime.InteropServices.GCHandle>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGCHandle_t39FAEE3EA592432C93B574A31DD83B87F1847DE3_m1F7FA9481E06B3C3793A895C8F46E617227B3E1A_gshared (RuntimeArray * __this, GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
GCHandleU5BU5D_tA6EC6308F1B33AD5233BD26DE6FB431B6CEF1DB7* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.SByte>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSByte_t9070AEA2966184235653CB9B4D33B149CDA831DF_m9D2515304847DA1F840EF7D3BBBF61F57D8B4819_gshared (RuntimeArray * __this, SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
SByteU5BU5D_t623D1F33C61DEAC564E2B0560E00F1E1364F7889* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Single>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSingle_tDDDA9169C4E4E308AC6D7A824F9B28DC82204AE1_m853565652CDABC7471089D6C457F3C96DE1BD9AC_gshared (RuntimeArray * __this, SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Text.RegularExpressions.RegexCharClass_LowerCaseMapping>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisLowerCaseMapping_t3F087D71A4D7A309FD5492CE33501FD4F4709D7B_m6407F6BA78E0380AF6F07613AAD7E120E468A3CF_gshared (RuntimeArray * __this, LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
LowerCaseMappingU5BU5D_t70011E1042888E1D071920A9171989A479C0618D* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.Threading.CancellationTokenRegistration>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisCancellationTokenRegistration_tCDB9825D1854DD0D7FF737C82B099FC468107BB2_m0E567790C095FC5B0F537859E43374A7E903C73F_gshared (RuntimeArray * __this, CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
CancellationTokenRegistrationU5BU5D_t4B36771A6344CFC66696BB16419C664E286DAF1B* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.TimeSpan>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_mA363276647EFB756F8489F1DC732F63DE89CBEB0_gshared (RuntimeArray * __this, TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TimeSpanU5BU5D_tCF326C038BD306190A013AE3C9F9B1A525054DD5* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt16>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUInt16_tAE45CEF73BF720100519F6867F32145D075F928E_mFEE4542DA90A80A9AF911BD5A06282D0C637110D_gshared (RuntimeArray * __this, UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UInt16U5BU5D_t2D4BB1F8C486FF4359FFA7E4A76A8708A684543E* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUInt32_t4980FA09003AFAAB5A6E361BA2748EA9A005709B_m4E4654E1838D0D1614E4DFF5A08AC7269EB1C62F_gshared (RuntimeArray * __this, UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UInt32U5BU5D_t9AA834AF2940E75BBF8E3F08FF0D20D266DB71CB* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.UInt64>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUInt64_tA02DF3B59C8FC4A849BD207DA11038CC64E4CB4E_m34C336DFE32942EF1F1D6BE2A13E0A3FF04DCA97_gshared (RuntimeArray * __this, UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UInt64U5BU5D_tA808FE881491284FF25AFDF5C4BC92A826031EF4* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<System.UIntPtr>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUIntPtr_t_m731634CE2241AB0DE670A5AE11429C245C4EAA95_gshared (RuntimeArray * __this, UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UIntPtrU5BU5D_tD5404ABA0AA72923421D3F931F031EEEC654429E* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.MaterialReference>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisMaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F_m880A6FCC4B59B07FD16694825A11C9C5802C2AF2_gshared (RuntimeArray * __this, MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.RichTextTagAttribute>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisRichTextTagAttribute_t381E96CA7820A787C5D88B6DA0181DFA85ADBA98_m4B5F0065A8D0B1CB2552923D4ED9B617A1F6DD10_gshared (RuntimeArray * __this, RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.SpriteAssetUtilities.TexturePacker_SpriteData>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSpriteData_t8ADAD39500AF244CC913ED9B1F964DF04B4E5728_m58BAB5C62E46D1B38E7A4B823D1B4DE074874D37_gshared (RuntimeArray * __this, SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.TMP_CharacterInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTMP_CharacterInfo_t15C146F0B08EE44A63EC777AC32151D061AFFAF1_m8B76044130E9C29C8B436E8D001A621F28ECC1C9_gshared (RuntimeArray * __this, TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.TMP_FontWeightPair>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTMP_FontWeightPair_t14BB1EA6F16060838C5465F6BBB20C92ED79AEE3_m512045AF63BBDAE557450540C66E9C45A8C7A163_gshared (RuntimeArray * __this, TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.TMP_LineInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442_m524EF7E3A64C0ADD0F6182D4CBD6E240DE5E134F_gshared (RuntimeArray * __this, TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.TMP_LinkInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTMP_LinkInfo_t7F4B699290A975144DF7094667825BCD52594468_m376730B30CABA851E3B6509572077A8980C839B3_gshared (RuntimeArray * __this, TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.TMP_MeshInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTMP_MeshInfo_t0140B4A33090360DC5CFB47CD8419369BBE3AD2E_mE20E8BFB5DF700EFAA23114EE320788AD22BA0A4_gshared (RuntimeArray * __this, TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TMP_MeshInfoU5BU5D_t7F7564862ADABD75DAD9B09FF274591F807FFDE9* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.TMP_PageInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTMP_PageInfo_t5D305B11116379997CA9649E8D87B3D7162ABB24_m6E472D394ADF96366291454D56D094B1AB75526A_gshared (RuntimeArray * __this, TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.TMP_Text_UnicodeChar>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUnicodeChar_t29383F22AA9A3AA4A2061312113FDF2887834F2A_m702D4EFCCF14AE58D8CEC14987444ED2DCD21BCC_gshared (RuntimeArray * __this, UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<TMPro.TMP_WordInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTMP_WordInfo_t856E4994B49881E370B28E1D0C35EEDA56120D90_mC0B91FCB0B137BB44C638BD3C9FC3E4831E2DD26_gshared (RuntimeArray * __this, TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.BeforeRenderHelper_OrderBlock>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisOrderBlock_t3B2BBCE8320FAEC3DB605F7DC9AB641102F53727_mB265EE2F7032E35646EAD1A8E71A6331EF900A8E_gshared (RuntimeArray * __this, OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
OrderBlockU5BU5D_t1C62FB945EC1F218FB6301A770FBF3C67B0AA101* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Color32>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisColor32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23_mEE3C7E1A55BE0574E91D119942D335D33E480FC1_gshared (RuntimeArray * __this, Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Color>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisColor_t119BCA590009762C7223FDD3AF9706653AC84ED2_mA6EA8BF218F5D62601A401AEB9091247A1EEF405_gshared (RuntimeArray * __this, ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ColorU5BU5D_t166D390E0E6F24360F990D1F81881A72B73CA399* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.ContactPoint2D>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisContactPoint2D_t7DE4097DD62E4240F4629EBB41F4BF089141E2C0_mFC5A3C6AB4F64E22A49CDF255D5DFBB756B82A77_gshared (RuntimeArray * __this, ContactPoint2DU5BU5D_t390B6CBF0673E9C408A97BC093462A33516F2C32* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ContactPoint2DU5BU5D_t390B6CBF0673E9C408A97BC093462A33516F2C32* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.ContactPoint>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisContactPoint_tE0D3A30ED34A1FC8CA3F7391348429F3232CA515_mA9A59AE2A283B1CC0107DD5B215D2D66C78D359C_gshared (RuntimeArray * __this, ContactPointU5BU5D_t10BB5D5BFFFA3C919FD97DFDEDB49D954AFB8EAA* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ContactPointU5BU5D_t10BB5D5BFFFA3C919FD97DFDEDB49D954AFB8EAA* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.EventSystems.RaycastResult>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisRaycastResult_t991BCED43A91EDD8580F39631DA07B1F88C58B91_mACB2E012BDF3123E8B6C3D91874EA4FAA4C6150B_gshared (RuntimeArray * __this, RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
RaycastResultU5BU5D_t9A7AEDFED07FDC6A5F4E1F1C064699FCC9745D65* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Experimental.GlobalIllumination.LightDataGI>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisLightDataGI_t922D8894A3151C4F87AFD0A3562252320CA3B2A2_m9CEF9948A1B77F6E6924C2E840A58719FE12C2E0_gshared (RuntimeArray * __this, LightDataGIU5BU5D_t32090CD353F0F6CDAC73FAFCC2D3F5EF78251B8A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
LightDataGIU5BU5D_t32090CD353F0F6CDAC73FAFCC2D3F5EF78251B8A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisTileCoord_t51EDF1EA1A3A7F9C1D85C186E7A7954535C225BA_m9305AE229F7885E413C21F5DBF7993BA86C1D324_gshared (RuntimeArray * __this, TileCoordU5BU5D_t5C91F6A2350FCA55BAD893C1C4ECAF553A8070F7* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
TileCoordU5BU5D_t5C91F6A2350FCA55BAD893C1C4ECAF553A8070F7* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Keyframe>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisKeyframe_t9E945CACC5AC36E067B15A634096A223A06D2D74_m147B6DE034D6FCB12EA0BE778A8FF089E5B7D6DE_gshared (RuntimeArray * __this, KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
KeyframeU5BU5D_tF4DC3E9BD9E6DB77FFF7BDC0B1545B5D6071513D* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.LowLevel.PlayerLoopSystem>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisPlayerLoopSystem_t4F3CE091F496538800DC1FF6E750BFA72FEB8C93_m6492B89825296FEEF182F8EE242AE9304C0E3936_gshared (RuntimeArray * __this, PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
PlayerLoopSystemU5BU5D_tA93C9CA08EF430375F9D4356DD0963BAEE961B77* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Plane>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisPlane_t0903921088DEEDE1BCDEA5BF279EDBCFC9679AED_mE7DDA2C28AE688E0CC1BD71B67AE3E38FAE842DA_gshared (RuntimeArray * __this, PlaneU5BU5D_t79471E0ABE147C3018D88A036897B6DB49A782AA* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
PlaneU5BU5D_t79471E0ABE147C3018D88A036897B6DB49A782AA* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Playables.PlayableBinding>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisPlayableBinding_t4D92F4CF16B8608DD83947E5D40CB7690F23F9C8_mD0DF516292F7E8350F72BC9FC1726405F86143F6_gshared (RuntimeArray * __this, PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
PlayableBindingU5BU5D_t7EB322901D51EAB67BA4F711C87F3AC1CF5D89AB* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.RaycastHit2D>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisRaycastHit2D_t5E8A7F96317BAF2033362FC780F4D72DC72764BE_mF220723ABCD1745FC8F6B749DB9218441CBB1438_gshared (RuntimeArray * __this, RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
RaycastHit2DU5BU5D_t5F37B944987342C401FA9A231A75AD2991A66165* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.RaycastHit>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisRaycastHit_t19695F18F9265FE5425062BBA6A4D330480538C3_mA7BD60EB7F275E06BB8A14280194EE5311582441_gshared (RuntimeArray * __this, RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
RaycastHitU5BU5D_tE9BB282384F0196211AD1A480477254188211F57* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Rendering.BatchVisibility>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisBatchVisibility_t56334E279A62622BD0640403186E9A1017CF3062_m3C90F5B9662C25A6B1FAF1603171073C9551F69C_gshared (RuntimeArray * __this, BatchVisibilityU5BU5D_t1594EA24FEB32F1AE80229DED3C45FF7F2DF0AA4* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
BatchVisibilityU5BU5D_t1594EA24FEB32F1AE80229DED3C45FF7F2DF0AA4* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.SendMouseEvents_HitInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisHitInfo_t2B010E637D28B522E704FDA56FAE6DA9979D8746_m426EDF47612D22CAC0F518986D89A5E01AC1E33B_gshared (RuntimeArray * __this, HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
HitInfoU5BU5D_t1C4C1506E0E7D22806B4ED84887D7298C8EC44A1* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.TextCore.GlyphRect>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C_m1818C9C3D7A31DB0B867D36D8264D39F57D869C4_gshared (RuntimeArray * __this, GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
GlyphRectU5BU5D_t0C8059848359C24B032007E1B643D747C2BB2FB2* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.TextCore.LowLevel.GlyphMarshallingStruct>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGlyphMarshallingStruct_t4A13978D8A28D0D54B36F37557770DCD83219448_m5645B28EA3477F9F98844D3F4ED9D2633CB2DE76_gshared (RuntimeArray * __this, GlyphMarshallingStructU5BU5D_tB5E281DB809E6848B7CC9F02763B5E5AAE5E5662* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
GlyphMarshallingStructU5BU5D_tB5E281DB809E6848B7CC9F02763B5E5AAE5E5662* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.TextCore.LowLevel.GlyphPairAdjustmentRecord>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisGlyphPairAdjustmentRecord_t4D86058777EDA2219FB8211B4C63EDD2B090239C_m8BDD30EA321CDD63FF2F03C47C11DFDF0C5F7FE9_gshared (RuntimeArray * __this, GlyphPairAdjustmentRecordU5BU5D_tE4D7700D820175D7726010904F8477E90C1823E7* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
GlyphPairAdjustmentRecordU5BU5D_tE4D7700D820175D7726010904F8477E90C1823E7* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UI.ColorBlock>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisColorBlock_t93B54DF6E8D65D24CEA9726CA745E48C53E3B1EA_mD6E70E7EBF6E7C75D4933F5551FB4679EF199716_gshared (RuntimeArray * __this, ColorBlockU5BU5D_tD84A362F1D993005D8CA9E0B5AB8967468418DE7* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
ColorBlockU5BU5D_tD84A362F1D993005D8CA9E0B5AB8967468418DE7* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UI.Navigation>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisNavigation_t761250C05C09773B75F5E0D52DDCBBFE60288A07_m9F6ED0424B6150D8644840EF0705C81B23417323_gshared (RuntimeArray * __this, NavigationU5BU5D_tED2679638506D7BDA5062C2FE17EC5F169233A6D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
NavigationU5BU5D_tED2679638506D7BDA5062C2FE17EC5F169233A6D* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UI.SpriteState>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSpriteState_t58B9DD66A79CD69AB4CFC3AD0C41E45DC2192C0A_m307C30197B856AC7D68C724ACDF90CD557170129_gshared (RuntimeArray * __this, SpriteStateU5BU5D_t6452EE17737027DABCA2DCEC11461C3CBF40FCDC* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
SpriteStateU5BU5D_t6452EE17737027DABCA2DCEC11461C3CBF40FCDC* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UICharInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUICharInfo_tB4C92043A686A600D36A92E3108F173C499E318A_m5F683A3557DDA081F980BA52EDCBACAAD002518C_gshared (RuntimeArray * __this, UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UICharInfoU5BU5D_t8C4FF69B643D49D3881FCB7A8525C5C5A9367482* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UIElements.EventDispatcher_DispatchContext>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisDispatchContext_tDF1F945F762418B995415C3C0158C0341152DAFA_m623E2826B26B1ADB60DC6DBDD05A163DADC088C4_gshared (RuntimeArray * __this, DispatchContextU5BU5D_t4467426EBDEB3B12C25D99303F7B67A6411B1BC8* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
DispatchContextU5BU5D_t4467426EBDEB3B12C25D99303F7B67A6411B1BC8* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UIElements.EventDispatcher_EventRecord>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisEventRecord_t2A71AE34E4900DB6EF7EA77AE93BB03074EC7DC9_m1C240AE52384CA105C36F298C031D6FB42BA49F5_gshared (RuntimeArray * __this, EventRecordU5BU5D_tCCE77A3C5C7FBB76F0BAC802BD005880513F5A94* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
EventRecordU5BU5D_tCCE77A3C5C7FBB76F0BAC802BD005880513F5A94* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UIElements.FocusController_FocusedElement>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisFocusedElement_t6C6023CCCFE4A5763A2ADBA3CBAFB38ECD964070_mC8BBF64BDFF06104E9676AC05546C042F2143687_gshared (RuntimeArray * __this, FocusedElementU5BU5D_t64FC9A029ED86FA4C46BC885D17EB0FCE386BB13* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
FocusedElementU5BU5D_t64FC9A029ED86FA4C46BC885D17EB0FCE386BB13* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSheetHandleKey_t3A372D0BA490C00E1D3C64B2BBABECF04AE7C9B0_m6E700AE2B729318136B67961F2BD6E2D528CC27B_gshared (RuntimeArray * __this, SheetHandleKeyU5BU5D_t3A34A624E16C7EEEE288315CA38FFD82DEE42C14* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
SheetHandleKeyU5BU5D_t3A34A624E16C7EEEE288315CA38FFD82DEE42C14* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UIElements.StyleSheets.StyleValue>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisStyleValue_t4DCA7B0244567BB85BB0E1DFB098CC73CE093371_m1E477BD85B3CD2B43AD1983F20B1ECE95A9617FF_gshared (RuntimeArray * __this, StyleValueU5BU5D_t510329266B7162817A9059A6EF69BC3EF02A0D3D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
StyleValueU5BU5D_t510329266B7162817A9059A6EF69BC3EF02A0D3D* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UILineInfo>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUILineInfo_t0AF27251CA07CEE2BC0C1FEF752245596B8033E6_m56203DFA5CC14A78CD178D2EDC7C8892EA7B33F4_gshared (RuntimeArray * __this, UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UILineInfoU5BU5D_t923CC56F4D67E9FA97CC73992DF16268B6A54FAC* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UIVertex>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisUIVertex_t0583C35B730B218B542E80203F5F4BC6F1E9E577_m59970A2A307C754C16B5E2B02AA563346AF9C2C5_gshared (RuntimeArray * __this, UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
UIVertexU5BU5D_tB560F9F9269864891FCE1677971F603A08AA857A* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.UnitySynchronizationContext_WorkRequest>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisWorkRequest_t0247B62D135204EAA95FC0B2EC829CB27B433F94_m28B4E440190499F3CC299FD4305930E8F46DDA4F_gshared (RuntimeArray * __this, WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
WorkRequestU5BU5D_tB89678B9C27973604A434C63C8BD307990C8EBF0* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Vector2>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisVector2_tA85D2DD88578276CA8A8796756458277E72D073D_mAE7E1940058086AC4C01839567C15CD65832A7AF_gshared (RuntimeArray * __this, Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Vector3>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisVector3_tDCF05E21F632FE2BA260C06E0D10CA81513E6720_m011546021E05C3CBF614F5B828A47AF4A7556ABD_gshared (RuntimeArray * __this, Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Vector4>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisVector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E_m166D7D82AF4E92EB916885025AA3A33D0FF5B38D_gshared (RuntimeArray * __this, Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
Vector4U5BU5D_t51402C154FFFCF7217A9BEC4B834F0B726C10F66* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.Windows.Speech.SemanticMeaning>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_TisSemanticMeaning_tF87995FD36CA45112E60A5F76AA211FA13351F0C_m2C1A2B45272E0EA3EB1CAEA737854EF582447005_gshared (RuntimeArray * __this, SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
SemanticMeaningU5BU5D_t3FC0A968EA1C540EEA6B6F92368A430CA596D23D* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__ICollection_CopyTo<UnityEngine.jvalue>(T[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__ICollection_CopyTo_Tisjvalue_t98310C8FA21DF12CBE79266684536EDE1B7F9C37_m3FEFC98B4D6D0EAA4A3AFFE6F52D09B673A8BB44_gshared (RuntimeArray * __this, jvalueU5BU5D_t9AA52DD48CAF5296AE8A2F758A488A2B14B820E3* ___array0, int32_t ___arrayIndex1, const RuntimeMethod* method)
{
{
NullCheck((RuntimeArray *)__this);
int32_t L_0 = Array_GetLowerBound_mDCFD284D55CFFA1DD8825D7FCF86A85EFB71FD1B((RuntimeArray *)__this, (int32_t)0, /*hidden argument*/NULL);
jvalueU5BU5D_t9AA52DD48CAF5296AE8A2F758A488A2B14B820E3* L_1 = ___array0;
int32_t L_2 = ___arrayIndex1;
NullCheck((RuntimeArray *)__this);
int32_t L_3 = Array_get_Length_m2239B6393651C3F4631D900EFC1B05DBE8F5466D((RuntimeArray *)__this, /*hidden argument*/NULL);
Array_Copy_mA10D079DD8D9700CA44721A219A934A2397653F6((RuntimeArray *)__this, (int32_t)L_0, (RuntimeArray *)(RuntimeArray *)L_1, (int32_t)L_2, (int32_t)L_3, /*hidden argument*/NULL);
return;
}
}
// System.Void System.Array::InternalArray__Insert<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_m793EF3A3BACE986CDBF9D47F32CE7D2BB3C9620C_gshared (RuntimeArray * __this, int32_t ___index0, ExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_m793EF3A3BACE986CDBF9D47F32CE7D2BB3C9620C_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, Array_InternalArray__Insert_TisExtensionIntPair_tEA4FBFAD0EBEF9D25C0AED27ED5B1CA745F7847D_m793EF3A3BACE986CDBF9D47F32CE7D2BB3C9620C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Gvr.Internal.EmulatorTouchEvent_Pointer>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mD610F8A45F28BCE6FFCA5FCA01CF58DAF5AD8841_gshared (RuntimeArray * __this, int32_t ___index0, Pointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mD610F8A45F28BCE6FFCA5FCA01CF58DAF5AD8841_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, Array_InternalArray__Insert_TisPointer_tE4CEDEA82E3FC63C990C824277BE5F151E19907F_mD610F8A45F28BCE6FFCA5FCA01CF58DAF5AD8841_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<GvrControllerVisual_VisualAssets>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m0BEF618E6F0A9579C966F7A2AB536AC03EDD6EC4_gshared (RuntimeArray * __this, int32_t ___index0, VisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m0BEF618E6F0A9579C966F7A2AB536AC03EDD6EC4_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, Array_InternalArray__Insert_TisVisualAssets_tB0ED521307910BFE123D897BA4738901C80C22DC_m0BEF618E6F0A9579C966F7A2AB536AC03EDD6EC4_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Mono.Globalization.Unicode.CodePointIndexer_TableRange>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisTableRange_t485CF0807771CC05023466CFCB0AE25C46648100_m267C106765C42662477BE62A7981DEF7141F8BEC_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<Mono.Security.Uri_UriScheme>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisUriScheme_tD4C9E109AAE4DEFCAA20A5D4D756767924C8F089_m1505D6B8C208CF150CCE48EBFCEB48455326175C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Boolean>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisBoolean_tB53F6830F670160873277339AA58F15CAED4399C_mE9F6E0D310E603EA96A953EF1DD6C68F39730C9C_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Byte>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisByte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07_m39C0E1BB2E4639B675A0B24E8F7C369E05F25685_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Char>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisChar_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_m2E9DF91734F88A23FAB1941B8BEB5A251046DF63_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.DictionaryEntry>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisDictionaryEntry_tB5348A26B94274FCC1DD77185BD5946E283B11A4_mC3AAD833A34DF3BF2CD9916A94EEBF85F84571D8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m68D137BA05D4E37DB2C783256679F06033ACD3D6_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m68D137BA05D4E37DB2C783256679F06033ACD3D6_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, Array_InternalArray__Insert_TisEntry_tA0FAB7734A12B6E84DEFCAB095338DEF014161C6_m68D137BA05D4E37DB2C783256679F06033ACD3D6_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>>(System.Int32,T)
IL2CPP_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, 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)
IL2CPP_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, 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)
IL2CPP_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, Array_InternalArray__Insert_TisEntry_t35447FB46EE257F0AD329D0D4FC3AC17C9C79B27_m640B87319C6D2DFCC1A5FB7DBD24015FD4EEB1A4_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int32Enum>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m27824B891D40511ED485164E89CB76CA70002671_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m27824B891D40511ED485164E89CB76CA70002671_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, Array_InternalArray__Insert_TisEntry_t2DF97B99E3A59770DAC9840961EC35B41C77DA5A_m27824B891D40511ED485164E89CB76CA70002671_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>>(System.Int32,T)
IL2CPP_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, 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)
IL2CPP_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, Array_InternalArray__Insert_TisEntry_t7D7748D5ED1AF0BF0D2AE30579C5C71A06D98D3D_mFC47BD3B041BC417842362A130A22922CA9D5210_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisEntry_tD950BFD70D1287D3DE34B8019C16932D6867ACD4_m884D02C12BDFF597EE9D9EBA4176EFDFB4C231A0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32>>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisEntry_t06E52CC4FA420E7C4AC082F266C2BBBC94AF8ECE_m04DE7DE6F8761B7C1A649CB503F3FB80435FAF53_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Int32Enum>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_mB24E736B6A966391D6CF02C05A3158AD32C143AA_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t4AF80C1385EAC25480F16E4599985179C47EA8DF ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_mB24E736B6A966391D6CF02C05A3158AD32C143AA_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, Array_InternalArray__Insert_TisEntry_t4AF80C1385EAC25480F16E4599985179C47EA8DF_mB24E736B6A966391D6CF02C05A3158AD32C143AA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.Object,System.Object>>(System.Int32,T)
IL2CPP_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, 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)
IL2CPP_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, Array_InternalArray__Insert_TisEntry_tF9DF2A46F3E6119E3AF03BA9B2FA24224378770D_mBFA6837DC3148B8268BBDC819CC2B30C9B98D344_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>>(System.Int32,T)
IL2CPP_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, 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)
IL2CPP_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, Array_InternalArray__Insert_TisEntry_tD304CC089DFC48EBF9E3ECC2C08CB84E0AB1AC9A_m795F453B39D52A9A0CDFA4849B8EAB8B432A46C5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<System.UInt64,System.Object>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_gshared (RuntimeArray * __this, int32_t ___index0, Entry_tF00169F106D087C791655821B46CB7BBDEAC4A29 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_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, Array_InternalArray__Insert_TisEntry_tF00169F106D087C791655821B46CB7BBDEAC4A29_m28D08A743D67FCCDD725EDF748AD9271AA31F7E0_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)
IL2CPP_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, Array_InternalArray__Insert_TisEntry_t687188C87EF1FD0D50038E634676DBC449857B8E_m59785DEDD32E06384722D716EB1122FA165DC164_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m9EF3FE0D545E7339E883312E962368BABDE24FD1_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m9EF3FE0D545E7339E883312E962368BABDE24FD1_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, Array_InternalArray__Insert_TisEntry_t64D38FA2992140132BE596DFDC676DAAB56D9A1E_m9EF3FE0D545E7339E883312E962368BABDE24FD1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.Dictionary`2_Entry<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m715B1309BA184A13F82358DFE43E4E1574993DBE_gshared (RuntimeArray * __this, int32_t ___index0, Entry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m715B1309BA184A13F82358DFE43E4E1574993DBE_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, Array_InternalArray__Insert_TisEntry_t111DE34ECD5EE4E51E00DE4667A4F582B59CC2F8_m715B1309BA184A13F82358DFE43E4E1574993DBE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.HashSet`1_Slot<System.Object>>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisSlot_t394A01CC2CDB2C0780E7D536D7851E87E9B85279_mA7BC4F9F207588AB3833593BCEAAA3AF827EC496_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<Google.ProtocolBuffers.ExtensionRegistry_ExtensionIntPair,System.Object>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m4905059D256B26872C3F91B65E7E008A47AB4DBA_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m4905059D256B26872C3F91B65E7E008A47AB4DBA_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, Array_InternalArray__Insert_TisKeyValuePair_2_t150941F781F5C0219943CA6E47663CDE1CBA4781_m4905059D256B26872C3F91B65E7E008A47AB4DBA_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.DateTime,System.Object>>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisKeyValuePair_2_t5DDBBB9A3C8CBE3A4A39721E8F0A10AEBF13737B_mFF6322E2EE3565369974ADC72D6091611498CEFB_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Int32>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_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, Array_InternalArray__Insert_TisKeyValuePair_2_t12CFA7FF15603BD4A555CDBFEBC08ECD343F1937_mC942C668F49633E4DF42559D07500C0398440CB8_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Guid,System.Object>>(System.Int32,T)
IL2CPP_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, 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)
IL2CPP_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, 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)
IL2CPP_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, 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)
IL2CPP_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, Array_InternalArray__Insert_TisKeyValuePair_2_tA9AFBC865B07606ED8F020A8E3AF8E27491AF809_m3FECC49D66B6A51DACC6BD52FDD25846EFDAD881_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int32Enum>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m2F33FAA19B8B4AAD71CC09D8E5350CB768D9A4ED_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m2F33FAA19B8B4AAD71CC09D8E5350CB768D9A4ED_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, Array_InternalArray__Insert_TisKeyValuePair_2_tA1ECB66A999F37D4CEE2E3317DEA1C770911D53E_m2F33FAA19B8B4AAD71CC09D8E5350CB768D9A4ED_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>(System.Int32,T)
IL2CPP_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, 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)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_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, Array_InternalArray__Insert_TisKeyValuePair_2_t86464C52F9602337EAC68825E6BE06951D7530CE_m982908B8D1321B92E6706BA118232673F1FCB2CD_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Int64,System.Object>>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisKeyValuePair_2_t01369E536C15A7A1AF58F260AD740C479FBFC4EA_m01AE1836246A090293461E55415D13408A161066_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32>>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisKeyValuePair_2_t3BAB6A80A3894F871F1F6B030436D8F2FF1D398E_m0AA4311C56D9888BBA00A9F3E6FE48C48E62C104_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Int32Enum>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m282F96657C55165FF3D73C046B2706FE57A030AD_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m282F96657C55165FF3D73C046B2706FE57A030AD_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, Array_InternalArray__Insert_TisKeyValuePair_2_tF5C55FD7AFA8164449EE2A5C295953C5B9CAE4F5_m282F96657C55165FF3D73C046B2706FE57A030AD_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>>(System.Int32,T)
IL2CPP_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, 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)
IL2CPP_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, Array_InternalArray__Insert_TisKeyValuePair_2_t2D8427F03B42441C4598C9D3AAB86FBA90CDF7F6_m0D2B5DDB8A92DC3C243626688F7C70607526A03D_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>(System.Int32,T)
IL2CPP_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, 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)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_mAC671FDB5325B51248B56AC79F51CA059A5EC445_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_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, Array_InternalArray__Insert_TisKeyValuePair_2_tB806C2F98E1E3559B07973D57F289EAD64113D67_mAC671FDB5325B51248B56AC79F51CA059A5EC445_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<System.UInt64,System.Object>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_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, Array_InternalArray__Insert_TisKeyValuePair_2_tBCE16D0D06F9AF10E3F89C064C5CCA69892173D4_mF052ED2BAC7CB313FC0CA4022B0237BA62DD08A9_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<UnityEngine.Experimental.TerrainAPI.TerrainUtility_TerrainMap_TileCoord,System.Object>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_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, Array_InternalArray__Insert_TisKeyValuePair_2_t198F3EF99C5CB706B8E678896CA900035FACF342_mC1C99E3AE87AC84E2085EC562DE7A9F22F628C4F_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Int32>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m334454A8200F21BE7403E62D35C2EF9B001B5492_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96 ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m334454A8200F21BE7403E62D35C2EF9B001B5492_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, Array_InternalArray__Insert_TisKeyValuePair_2_t72B1B50F3096E7CDC6F0711317B81F69BB278E96_m334454A8200F21BE7403E62D35C2EF9B001B5492_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Generic.KeyValuePair`2<UnityEngine.UIElements.StyleSheets.StyleSheetCache_SheetHandleKey,System.Object>>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m13052C709FCCC6DBB376ECB1DB4B206E471E249E_gshared (RuntimeArray * __this, int32_t ___index0, KeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m13052C709FCCC6DBB376ECB1DB4B206E471E249E_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, Array_InternalArray__Insert_TisKeyValuePair_2_tBD4A3C905E8662DBE7F4813A4C2CF04D5652B0BA_m13052C709FCCC6DBB376ECB1DB4B206E471E249E_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Collections.Hashtable_bucket>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_Tisbucket_t1C848488DF65838689F7773D46F9E7E8C881B083_mEE93EA250C3399D4F5A3779DB444AF83C9A2BB11_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.DateTime>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisDateTime_t349B7449FBAAFF4192636E2B7A07694DA9236132_mC1A470EC548C3EECA307AB7491C7C03ACBEB6295_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Decimal>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisDecimal_t44EE9DA309A1BF848308DE4DDFC070CAE6D95EE8_m506AB5C14FB35E185FF78BED19CFF4B12D2D79E2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Diagnostics.Tracing.EventProvider_SessionInfo>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_gshared (RuntimeArray * __this, int32_t ___index0, SessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_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, Array_InternalArray__Insert_TisSessionInfo_tEAFEEFE3C65BFE4DCD6DBA6F4B1F525553E17F4A_mA4ECE1E944CD19885D8C51D9C886E2E8BCDC78B0_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Diagnostics.Tracing.EventSource_EventMetadata>(System.Int32,T)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_gshared (RuntimeArray * __this, int32_t ___index0, EventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B ___item1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_method (Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_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, Array_InternalArray__Insert_TisEventMetadata_tDC146079349635A3A29F84F4655C39D480BBCF0B_m0DDF0DDB5D5A4EA8FA34F057FAD4F3EC47D5BE79_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Double>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisDouble_t358B8F23BDC52A5DD700E727E204F9F7CDE12409_m1F8E0FD15BFA1B3337DB17BB8862E5E7FDE3E7BE_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Globalization.InternalCodePageDataItem>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisInternalCodePageDataItem_t34EE39DE4A481B875348BB9BC6751E2A109AD0D4_m01B1B14297575D96EE9191074E5632BC0B51A914_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Globalization.InternalEncodingDataItem>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisInternalEncodingDataItem_t34BEF550D56496035752E8E0607127CD43378211_mF0B68FA4FB992EB82E6A755613ED52A537C1D7D7_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Guid>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisGuid_t_m9FD816450B7080391B67F48C9E123DB561466EF2_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Int16>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisInt16_t823A20635DAF5A3D93A1E01CFBF3CBA27CF00B4D_mF074234522318193EE734BC9138E605CD9622EB5_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Int32>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisInt32_t585191389E07734F19F3156FF88FB3EF4800D102_m87666E66010673C970F94E1C303DE5E8FAE0C8C3_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Int32Enum>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisInt32Enum_t6312CE4586C17FE2E2E513D2E7655B574F10FDCD_mAF387A609B4339D2D5B2A4E8863A5D517599D7B1_RuntimeMethod_var);
}
}
// System.Void System.Array::InternalArray__Insert<System.Int64>(System.Int32,T)
IL2CPP_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, Array_InternalArray__Insert_TisInt64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436_m4A9A88250BBA3249C36F53140B0F15D826777325_RuntimeMethod_var);
}
}
| [
"telkids4@gmail.com"
] | telkids4@gmail.com |
7f5de9ce3fb4e9c1e1fd0f52a05c02d0fb529f05 | 94b2148ef2af4db4dac486f9b6e36942df502578 | /uControl/UnitTest/Zephyr/Zephyr.ino | 7989096930cf205a460a8d2dbd0d6cd3a49c953c | [] | no_license | tomcircuit/Wyolum-old-archive | d30fcaa880cb8e1e7901f2710483c7a306f4aead | 07001059774cc4e4fccfc54970b60f108f8e1971 | refs/heads/master | 2021-12-24T06:38:34.489005 | 2016-03-06T21:14:50 | 2016-03-06T21:14:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,176 | ino | const int ZEPHYR_ADDR = 0x78; //0x49;
const byte IO_X = 7;
const byte IO_R = 8;
const byte DBG = 13;
#include <Wire.h>
// #include <I2C.h>
int x = 0;
int y = 0;
int z = 0;
void setup()
{
Serial.begin(115200);
pinMode(13, OUTPUT);
pinMode(IO_X, OUTPUT);
pinMode(DBG, OUTPUT);
digitalWrite(IO_X, HIGH);
Wire.begin();
probe_I2C();
// while(1) delay(100);
// I2c.begin();
}
/*
void loop()
{
Serial.print("x:");
//I2c.read(ZEPHYR_ADDR,0x0, 2); //read 2 bytes from the device
// x = I2c.receive() << 8;
// x |= I2c.receive();
Serial.println(x, BIN);
}
*/
/*
void setup(){
Wire.begin();
Serial.begin(115200);
pinMode(13, OUTPUT);
pinMode(IO_X, OUTPUT);
pinMode(DBG, OUTPUT);
digitalWrite(IO_X, HIGH);
Serial.println("Zephyr Test");
Serial.println("WyoLum 2013");
// probe_I2C();
//Wire.beginTransmission(ZEPHYR_ADDR);
//Wire.write(0);
//Wire.endTransmission();
//delay(10);
if(false){
Wire.requestFrom(ZEPHYR_ADDR, 2); // request n_bytes bytes
Serial.println(Wire.available());
while(Wire.available()){
Wire.read();
}
Wire.requestFrom(ZEPHYR_ADDR, 2); // request n_bytes bytes
Serial.println(Wire.available());
while(Wire.available()){
Wire.read();
}
}
}
*/
uint8_t loop_count;
const int FULL_SCALE_FLOW = 750;
const int n = 2;
void loop(){
if(loop_count > 100){
// Serial.println("Quit");
// while(1) delay(100);
}
uint8_t dest[n];
uint16_t flow_count;
float flow = 0;
// Wire.beginTransmission(ZEPHYR_ADDR);
// Wire.write(13);// no lock up
// Wire.endTransmission();
// Serial.print(loop_count, DEC);
// Serial.print(" -- ");
// digitalWrite(IO_X, loop_count++ % 50 > 24);
Wire.requestFrom(ZEPHYR_ADDR, n); // request n_bytes bytes
if(Wire.available()){
if(loop_count % 256 < 10){
Serial.print(" ");
}
else if(loop_count % 256 < 100){
Serial.print(" ");
}
Serial.print(loop_count++, DEC);
Serial.print("-- ");
for(uint8_t i = 0; i < n; i++){
dest[i] = Wire.read();
}
for(uint8_t i = 0; i < n; i++){
Serial.print(" ");
Serial.print(dest[i], BIN);
}
flow_count = (uint16_t)dest[0] * 256L + (uint16_t)dest[1];
Serial.print(" fc:");
Serial.print(flow_count);
// flow = FULL_SCALE_FLOW * ((flow_count / 16384.) - 0.5)/0.4;
flow = FULL_SCALE_FLOW * ((flow_count / 16384.) - 0.5) / 0.4;
Serial.print(" flow:");
Serial.print(flow);
Serial.println();
}
//delay(10);
}
/*******************************************************************************
* RTC code
******************************************************************************/
/*
bool flow_raw_read(uint8_t addr,
uint8_t n_bytes,
uint8_t *dest){
bool out = false;
Wire.beginTransmission(ZEPHYR_ADDR);
Wire.write(addr);
Wire.endTransmission();
Wire.requestFrom(ZEPHYR_ADDR, (int)n_bytes); // request n_bytes bytes
if(Wire.available()){
for(uint8_t i = 0; i < n_bytes; i++){
dest[i] = Wire.read();
}
out = true;
}
return out;
}
*/
/*
bool testFlow(){
bool status = true;
uint8_t flow[2];
delay(10);
if(flow_raw_read(0, 2, flow)){
Serial.print("FLOW: ");
Serial.print(flow[0], DEC);
Serial.print(":");
Serial.print(flow[1], DEC);
Serial.println("");
}
else{
Serial.println("FLOW FAIL");
status = false;
}
return status;
}
*/
/******************************************************************************
* END FLOW code
*****************************************************************************/
void probe_I2C(){
Serial.println("I2C Probe");
int count = 0;
for (byte i = 1; i < 120; i++){
Wire.beginTransmission (i);
if (Wire.endTransmission () == 0){
Serial.print ("Found address: ");
Serial.print (i, DEC);
Serial.print (" (0x");
Serial.print (i, HEX);
Serial.println (")");
count++;
delay (1); // maybe unneeded?
} // end of good response
} // end of for loop
Serial.println ("Done.");
Serial.print ("Found ");
Serial.print (count, DEC);
Serial.println (" device(s).");
} // end of setup
| [
"wyojustin@gmail.com"
] | wyojustin@gmail.com |
9318deeb375d74d961c287c0b01146e51c263cbc | d854fe22194169fa4010b94bc48252a4e3d1943b | /lab4/Student.hpp | 2cd633d3b4f9712677ab21b93d9da5b06fb62467 | [] | no_license | maslaral/cs162 | c65d9ede4993a59b87123f2a992730f5a33a8ad3 | b35ef0d271cc8569bd81c4d579b3be50b09c4a92 | refs/heads/master | 2022-01-08T02:42:57.111230 | 2019-06-11T18:42:27 | 2019-06-11T18:42:27 | 186,516,088 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,043 | hpp | /*************************************************************
** Program name: Lab 4
** Author: Alex Maslar
** Date: April 30 2019
** Description: Header file for the Student class. Contains
only functions as the variables are set in the abstract
person class.
*************************************************************/
#ifndef STUDENT_HPP
#define STUDENT_HPP
#include "Person.hpp"
#include <string>
class Student : public Person
{
private:
public:
// constructor
Student();
// destructor
~Student();
// create student - both from file and from user input
static Student* create_student();
static Student* create_student_file();
// setter functions
virtual void set_rating_gpa();
virtual void set_age();
virtual void do_work();
virtual void print_rating_gpa();
virtual int get_type();
// setter functions - used to read from file
virtual void set_rating_gpa_file(double);
virtual void set_name(std::string);
virtual void set_age_file(int);
};
#endif
| [
"maslara@flip1.engr.oregonstate.edu"
] | maslara@flip1.engr.oregonstate.edu |
e404b8dd117f8805b90a35990210c6fcd20294a2 | fc7d66d45668fa2f2af9e9f229ddc2325b8a8fbf | /old/2021S/03c++arraysandmemory/00overflow.cc | e9414385a03db8db658e7858ae0b671e686e9817 | [] | no_license | StevensDeptECE/CPE390 | 3b3e3f39c47bdaa768bc01dc875abeb6d44be303 | da6e657ecb94dde9f7d933c36bf17c1f2165540e | refs/heads/master | 2023-05-03T00:22:37.816177 | 2023-05-02T17:41:42 | 2023-05-02T17:41:42 | 144,867,364 | 61 | 53 | null | 2023-05-09T01:02:52 | 2018-08-15T14:59:41 | Assembly | UTF-8 | C++ | false | false | 1,517 | cc | #include <iostream>
#include <iomanip>
using namespace std;
// non-standard 128 bit int, but I can't print it!
__int128_t fact(int num) {
__int128_t total = 1; // needs to be uint64
for (int i = 1; i <= num; i++) {
total *= i; // total = total * uint64_t(i)
}
return total;
}
double fact2(int num) {
double total = 1; // needs to be uint64
for (int i = 1; i <= num; i++) {
total *= i; // total = total * uint64_t(i)
}
return total;
}
int main() {
//NOT IMPLEMENTED FOR 128 bit! BOO! cout << fact(25);
// floating point standard: IEEE754
float f = 1.5f; // 32 bits, 7 digits 1.234567 12345.67
//1.234567e+38 -1.234567e-38
double d = 1.23456789012345; // 64bits 15 digits
//1.23456789012345e+308
//1.23456789012345e-308
long double d2 = 1.23456789012345678901234567890L;
cout << setprecision(16);
for (int i = 1; i <= 100; i++)
cout << i << ": " << fact2(i) << '\n';
for (float f = 0; f < 10; f++)
cout << f << ' ';
cout << '\n';
/*
binary fractions
101 = 4+1 = 5
101.1 = 5.5
101.01 = 5.25
.001 = 1/8 = .125
decimal fractions
1/2 = 0.5 = 5/10
1/3 = .333333333333333333
1/10 = 0.1
1/10 = 1/2 * 1/5
.987 = 9/10 + 8/100 + 7/1000
1/2 1/4 1/8 1/16 1/32 1/64 ....
. 1 0 1 0 0 0 = 5/8 = .625
. 0 0 0 1
*/
cout << setprecision(8);
cout << 0.1;
for (float f = 0; f < 10; f += 0.1) //roundoff error
cout << f << ' ';
cout << '\n';
cout << setprecision(30);
cout << d2;
}
| [
"Dov.Kruger@stevens.edu"
] | Dov.Kruger@stevens.edu |
2d2173bccbb8f2c3383dfbc366749cc182734278 | 22af93db463774bfa5810ccc26193d91354849b9 | /3rd/flash_sdk_src/flash_cocos2dx/lua_binding/lua_cocos2dx_flashsdk.cpp | 9063c6b5fbf9d4c87ced0dd601b17f26091dbed6 | [] | no_license | adroitly/boom | f5ba38c1360e315cfc79a602ca787208f244b87c | 57bb7f29ba2da552e7d47ac5d2dd9691539ad78e | refs/heads/master | 2016-08-12T07:41:34.105425 | 2016-03-08T07:16:13 | 2016-03-08T07:16:13 | 53,380,550 | 0 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 3,838 | cpp | //=============================================================================
// FlashFire
//
// Copyright (C) 2015 PatGame. All rights reserved.
//
// Created by HJC
//
//=============================================================================
#include "../../core/base/fla_Base.h"
#if FLA_USE_LUA_BINDING == 1
#include "FlaSDK.h"
#include "tolua_fix.h"
#include "lua_cocos2dx_flashsdk.h"
#include "../../core/definition/fla_Collection.h"
#include "../src/fla_MoviePart.h"
#include "LuaBasicConversions.h"
#include "clover/ScopeGuard.h"
int lua_register_fla_MovieNode(lua_State* L);
int lua_register_fla_Definition(lua_State* L);
int lua_register_fla_Collection(lua_State* L);
int lua_register_fla_TimeMovieNode(lua_State* L);
int lua_register_fla_MoviePart(lua_State* L);
static int lua_register_fla_PixelFormat(lua_State* L)
{
// Handler
tolua_module(L, "PixelFormat", 0);
tolua_beginmodule(L, "PixelFormat");
CLOVER_SCOPE_EXIT
{
tolua_endmodule(L);
};
tolua_constant(L, "RGBA8888", (int)FlaPixelFormat::RGBA8888);
tolua_constant(L, "RGBA4444", (int)FlaPixelFormat::RGBA4444);
return 1;
}
static int lua_setTextureContentScaleFactor(lua_State* L)
{
lua_Number scale = luaL_checknumber(L, 1);
FlaSDK::setTextureContentScaleFactor(scale);
return 0;
}
static int lua_purgeCachedData(lua_State* L)
{
FlaSDK::purgeCachedData();
return 0;
}
int register_all_cocos2dx_flasdk(lua_State* L)
{
tolua_open(L);
tolua_module(L, "fla", 0);
tolua_beginmodule(L, "fla");
CLOVER_SCOPE_EXIT
{
tolua_endmodule(L);
};
lua_register_fla_Collection(L);
lua_register_fla_PixelFormat(L);
lua_register_fla_Definition(L);
lua_register_fla_MovieNode(L);
lua_register_fla_TimeMovieNode(L);
lua_register_fla_MoviePart(L);
tolua_function(L, "setTextureContentScaleFactor", lua_setTextureContentScaleFactor);
tolua_function(L, "purgeCachedData", lua_purgeCachedData);
return 1;
}
namespace flalua
{
void pushCollection(lua_State* L, const FlaCollection& collection)
{
if (collection.isNull())
{
lua_pushnil(L);
}
else
{
auto ptr = collection.getRaw();
ptr->retain();
ptr->autorelease();
object_to_luaval(L, "fla.Collection", ptr);
}
}
FlaCollection toCollection(lua_State* L, int idx)
{
auto cobj = (fla::Collection*)tolua_tousertype(L, idx, 0);
return FlaCollection(cobj);
}
FlaDefinition toDefinition(lua_State* L, int idx)
{
auto cobj = (fla::Definition*)tolua_tousertype(L, idx, 0);
return FlaDefinition(cobj);
}
static void s_pushDefinition(lua_State* L, fla::Definition* ptr)
{
if (ptr)
{
ptr->retain();
ptr->autorelease();
object_to_luaval<fla::Definition>(L, "fla.Definition", ptr);
}
else
{
lua_pushnil(L);
}
}
void pushMoviePart(lua_State* L, const FlaMoviePart& part)
{
if (part.isNull())
{
lua_pushnil(L);
}
else
{
auto ptr = part.getRaw();
ptr->retain();
ptr->autorelease();
object_to_luaval(L, "fla.MoviePart", ptr);
}
}
void pushDefinition(lua_State* L, const FlaDefinition& defintion)
{
if (defintion.isNull())
{
lua_pushnil(L);
}
else
{
auto impl = defintion.getRaw();
s_pushDefinition(L, impl);
}
}
void pushDefinition(lua_State* L, const fla::Definition::Ptr& defintion)
{
s_pushDefinition(L, defintion.get());
}
}
#endif
| [
"adroitly@163.com"
] | adroitly@163.com |
ac9e96f511fe2a1de820ca153991f9653e8a700b | bcacb834979082655e24973e78fc0c6b61117d5d | /InkerLinker/src/Nodes/BaseNode.h | 378785cd244be9069232b703d3bc33f8156ce954 | [
"MIT"
] | permissive | WatershedArts/InkerLinker | 66b45e05bb1bd24cf4cfd937421a0d2fc35db852 | b415476d177b578ee069bcca3eb662c9fb14f4bf | refs/heads/master | 2021-05-15T00:34:35.806034 | 2017-10-07T19:34:58 | 2017-10-07T19:34:58 | 103,272,891 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,997 | h | //--------------------------------------------------------------
// BaseNode.h
// InkerLinker.
// Created by David Haylock on 18/08/2017.
//! InkerLinker.
/** This is the Base Node Class. */
//--------------------------------------------------------------
#ifndef BaseNode_h
#define BaseNode_h
#include "ofxCenteredTrueTypeFont.h"
#include "ILIconButton.h"
#include "Port.h"
class BaseNode
{
public:
//-----------------------------------------------------
/** \brief Default Constructor */
//-----------------------------------------------------
BaseNode() { }
//-----------------------------------------------------
/** \brief Deconstructor
*
* This method removes the listeners from the node object.
*/
//-----------------------------------------------------
~BaseNode()
{
ofRemoveListener(closeNode->buttonPushed, this, &BaseNode::closeNodeEvent);
ofRemoveListener(ofEvents().mousePressed,this,&BaseNode::mousePressed);
ofRemoveListener(ofEvents().mouseReleased,this,&BaseNode::mouseReleased);
ofRemoveListener(ofEvents().mouseMoved,this,&BaseNode::mouseMoved);
ofRemoveListener(ofEvents().mouseDragged,this,&BaseNode::mouseDragged);
}
//-----------------------------------------------------
/** \brief Constructor.
* @param box : The position of the Node.
* @param font : The font.
* @param name : The name of the Node.
* @param id : Pointer to the id of the Node.
* @param noOfPorts : Number of ports to generate
*
* This method constructs a Base Node from the
* load file it generates the ports and layout of
* the node.
*/
//-----------------------------------------------------
BaseNode(ofRectangle box,ofxCenteredTrueTypeFont * font, string name, int *id,int noOfPorts)
{
type = IL_BASE_NODE;
bCanMoveNode = false;
bCanResizeNode = false;
bIsNodeSizeLocked = false;
this->id = id;
this->font = font;
this->name = name;
this->noOfPorts = noOfPorts;
this->box = box;
header = ofRectangle(box.x, box.y,box.width, 23);
resizeNode = ofRectangle(box.getBottomRight()+ofPoint(-25,-25),25,25);
for(int i = 0; i < noOfPorts; i++)
{
portNames.push_back(ofToString(i));
}
generatePorts(noOfPorts);
addMouseAndCloseListeners();
}
//-----------------------------------------------------
/** \brief Load Constructor.
* @param box : The position of the Node.
* @param font : The font.
* @param name : The name of the Node.
* @param id : Pointer to the id of the Node.
* @param ports : A vector of Port information.
*
* This method Constructs an Base Node from the
* load file it generates the ports and layout of
* the node.
*/
//-----------------------------------------------------
BaseNode(ofRectangle box,ofxCenteredTrueTypeFont *font, string name, int *id,vector<Port> ports)
{
type = IL_BASE_NODE;
bCanMoveNode = false;
bCanResizeNode = false;
bIsNodeSizeLocked = false;
this->id = id;
this->font = font;
this->name = name;
this->ports = ports;
this->box = box;
header = ofRectangle(box.x, box.y,box.width, 23);
resizeNode = ofRectangle(box.getBottomRight()+ofPoint(-25,-25),25,25);
reGeneratePortPositions(this->ports);
addMouseAndCloseListeners();
}
//-----------------------------------------------------
/** \brief Add Listeners to the Node Object
*
* This method Adds listeners to the node object
* and creates the close button.
*/
//-----------------------------------------------------
virtual void addMouseAndCloseListeners()
{
closeNode = new ILIconButton("Close",ofRectangle(header.getRight()-(GUI_BUTTON_WIDTH/2),header.getCenter().y-(GUI_BUTTON_HEIGHT/4),(GUI_BUTTON_WIDTH/2)-(GUI_PADDING_X*2),(GUI_BUTTON_HEIGHT/2)-(GUI_PADDING_X*2)),IL_ICON_CROSS,0,IL_DANGER_COLOR,IL_WARNING_COLOR);
closeNode->setEnabled(true);
ofAddListener(closeNode->buttonPushed, this, &BaseNode::closeNodeEvent);
ofAddListener(ofEvents().mousePressed,this,&BaseNode::mousePressed);
ofAddListener(ofEvents().mouseReleased,this,&BaseNode::mouseReleased);
ofAddListener(ofEvents().mouseMoved,this,&BaseNode::mouseMoved);
ofAddListener(ofEvents().mouseDragged,this,&BaseNode::mouseDragged);
bCanMoveNode = false;
bCanResizeNode = false;
}
//-----------------------------------------------------
/** \brief Removes the Listeners
*
* This method removes the listeners from the node object.
*/
//-----------------------------------------------------
virtual void removeMouseAndCloseListeners()
{
ofRemoveListener(closeNode->buttonPushed, this, &BaseNode::closeNodeEvent);
ofRemoveListener(ofEvents().mousePressed,this,&BaseNode::mousePressed);
ofRemoveListener(ofEvents().mouseReleased,this,&BaseNode::mouseReleased);
ofRemoveListener(ofEvents().mouseMoved,this,&BaseNode::mouseMoved);
ofRemoveListener(ofEvents().mouseDragged,this,&BaseNode::mouseDragged);
}
//-----------------------------------------------------
/** \brief Generate the Ports
* @param noOfPorts : Number of Ports to generate.
*
* This method generates the number of ports specified
* in the call.
*/
//-----------------------------------------------------
virtual void generatePorts(int noOfPorts)
{
this->noOfPorts = noOfPorts;
spacing = (box.height-header.height) / (20 + 5);
for(int i = 0; i < noOfPorts; i++)
{
ports.push_back(Port(box.getLeft()-20,header.getBottomLeft().y+spacing+(i*(20+spacing)),i,*this->id,portNames[i]));
}
}
//-----------------------------------------------------
/** \brief Regenerate the Ports
* @param pts : A vector of Ports.
*
* This method generates the number of ports from
* the load file.
*/
//-----------------------------------------------------
virtual void reGeneratePortPositions(vector <Port> pts)
{
spacing = (box.height-header.height) / (20 + 5);
for(int i = 0; i < pts.size(); i++)
{
pts[i].setPostion(ofRectangle(box.getLeft()-20,header.getBottomLeft().y+spacing+(i*(20+spacing)),20,20));
}
}
//-----------------------------------------------------
/** \brief Recalculate the port positions
*
* This method repositions the ports.
*/
//-----------------------------------------------------
virtual void recalculatePortPositions()
{
spacing = (box.height-header.height) / (20 + 5);
for(int i = 0; i < ports.size(); i++)
{
ports[i].update(box.getLeft()-19,header.getBottomLeft().y+spacing+(i*(20+spacing)));
}
}
//-----------------------------------------------------
/** \brief Draw
*
* This method Draws the BaseNode
*/
//-----------------------------------------------------
virtual void draw()
{
recalculatePortPositions();
for(int i = 0; i < ports.size(); i++) ports[i].draw();
ofFill();
ofSetColor(255);
ofDrawRectRounded(box,3);
ofFill();
ofSetColor(255);
ofDrawRectRounded(header,3);
ofSetColor(0);
font->drawString(name,header.getLeft()+8,header.getCenter().y+5);
closeNode->updateBox(header.getRight()-((GUI_BUTTON_WIDTH/2)+GUI_PADDING_Y),header.getCenter().y-(GUI_BUTTON_HEIGHT/6));
closeNode->draw();
ofNoFill();
ofSetColor(0);
ofDrawRectRounded(box,3);
}
//-----------------------------------------------------
/** \brief Draw Tooltips
*
* This method Draws the tooltips for the ports.
*/
//-----------------------------------------------------
virtual void drawTooltips()
{
for(int i = 0; i < ports.size(); i++) ports[i].drawTooltip();
}
//-----------------------------------------------------
/** \brief Trigger Port
* @param i : A integer of which event to trigger.
*
* This method trigger actions associated with the Node.
*/
//-----------------------------------------------------
virtual void triggerPort(int i)
{
}
//-----------------------------------------------------
/** \brief Draw Tooltips
* @param val : Event from button push (Not useful)
*
* This method listens for an event from the close
* button.
*/
//-----------------------------------------------------
virtual void closeNodeEvent(string &val)
{
removeMouseAndCloseListeners();
ofNotifyEvent(closedNodeId,*id,this);
}
#pragma mark - Mouse Events
//-----------------------------------------------------
/** \brief Mouse Pressed
* @param e : Mouse Arguements.
*
* This method listens for events from the mouse.
* It also handles the remove events from the ports.
* As well as move events.
*/
//-----------------------------------------------------
virtual void mousePressed(ofMouseEventArgs &e)
{
// Remove Patch Cord and Electrode Event
if(e.button == 2)
{
for(int i = 0; i < ports.size(); i++)
{
if(ports[i].getBox().inside(e.x,e.y))
{
currentPortId = i;
int id = ports[i].getPatchCordId();
ofNotifyEvent(removePatchCord, ports[i], this);
}
}
}
// Allow the Node to move
if(header.inside(e.x,e.y) && !bCanMoveNode)
{
mouseMoveOffset = ofPoint(e.x,e.y) - header.getTopLeft();
bCanMoveNode = true;
}
// Can the Node be resized
if(!bIsNodeSizeLocked) {
if(resizeNode.inside(e.x,e.y) && !bCanResizeNode)
{
mouseResizeOffset = ofPoint(e.x,e.y) - box.getTopLeft();
bCanResizeNode = true;
}
else {
bCanResizeNode = false;
}
}
}
//-----------------------------------------------------
/** \brief Mouse Released
* @param e : Mouse Arguements.
*
* This method listens for events from the mouse.
* It also handles the addition of events to the
* node.
*/
//-----------------------------------------------------
virtual void mouseReleased(ofMouseEventArgs &e)
{
// If the Button is Left Release
if( e.button == 0 )
{
for(int i = 0; i < ports.size(); i++)
{
if(ports[i].getBox().inside(e.x,e.y))
{
currentPortId = i;
ofNotifyEvent(attachPatchCord,ports[i],this);
}
}
}
// If the Button is Right Release
else if( e.button == 2 )
{
for(int i = 0; i < ports.size(); i++)
{
if(ports[i].getBox().inside(e.x,e.y))
{
currentPortId = i;
ofNotifyEvent(attachPatchCord,ports[i],this);
}
}
}
bCanMoveNode = false;
bCanResizeNode = false;
}
//-----------------------------------------------------
/** \brief Mouse Dragged
* @param e : Mouse Arguements.
*
* This method listens for events from the mouse.
* As well as move events.
*/
//-----------------------------------------------------
virtual void mouseDragged(ofMouseEventArgs &e)
{
if(bCanMoveNode)
{
ofPoint m(e.x,e.y);
header.setPosition(m-mouseMoveOffset);
box.setPosition(m-mouseMoveOffset);
resizeNode.setPosition(box.getBottomRight()+ofPoint(-25,-25));
}
if(!bIsNodeSizeLocked) {
if(bCanResizeNode)
{
ofPoint p = ofPoint(e.x,e.y) - box.getTopLeft();
p.x = ofClamp(p.x,IL_MIN_NODE_WIDTH,IL_MAX_NODE_WIDTH);
p.y = ofClamp(p.y,IL_MIN_NODE_HEIGHT,IL_MAX_NODE_HEIGHT);
box.setSize(p.x,p.y);
resizeNode.setPosition(box.getBottomRight()+ofPoint(-25,-25));
header.setWidth(box.width);
}
}
}
//-----------------------------------------------------
/** \brief Mouse Moved
* @param e : Mouse Arguements.
*
* This method listens for events from the mouse.
* It checks whether the mouse is hovering over the
* ports.
*/
//-----------------------------------------------------
virtual void mouseMoved(ofMouseEventArgs &e)
{
for(int i = 0; i < ports.size(); i++)
{
if(ports[i].getBox().inside(e.x,e.y))
{
ports[i].setHovering(true);
}
else
{
ports[i].setHovering(false);
}
}
}
#pragma mark - Getters
//-----------------------------------------------------
/** \brief Get the ID of the Node
* @return id : Id of the Node.
*
* This method returns the id of the Node.
*/
//-----------------------------------------------------
int getID()
{
return *id;
}
//-----------------------------------------------------
/** \brief Get the Node Name
* @return name : Name of Node
*
* This method returns the Name of the Node.
*/
//-----------------------------------------------------
string getName() const
{
return name;
}
//-----------------------------------------------------
/** \brief Get the Nodes Position
* @return box : Rectangle of the Node.
*
* This method returns the position and size of the
* Node.
*/
//-----------------------------------------------------
ofRectangle getBox()
{
return box;
}
//-----------------------------------------------------
/** \brief Get the Number of Ports
* @return noOfPorts : Number of Ports.
*
* This method returns the number of ports for the
* Node.
*/
//-----------------------------------------------------
int getNoOfPorts()
{
return noOfPorts;
}
//-----------------------------------------------------
/** \brief Get the Type of Node
* @return type : Number of Ports.
*
* This method returns the type of Node.
*/
//-----------------------------------------------------
IL_NODE_TYPE getType()
{
return type;
}
//-----------------------------------------------------
/** \brief Get the Ports
* @return ports : vector of Ports.
*
* This method returns the data associated with the
* ports.
*/
//-----------------------------------------------------
vector <Port> getPorts()
{
return ports;
}
//-----------------------------------------------------
/** \brief Get the Current Electrode Id
* @return electrode id : id of electrode.
*
* This method returns the selected electrode id.
*/
//-----------------------------------------------------
string getCurrentElectrodeId()
{
return ports[currentPortId].getElectrodeId();
}
//-----------------------------------------------------
/** \brief Get the Current Patch Cord Id
* @return patch cord id : id of patch cord.
*
* This method returns the selected patch cord id.
*/
//-----------------------------------------------------
int getCurrentPatchCordId()
{
return ports[currentPortId].getPatchCordId();
}
#pragma mark - Setters
//-----------------------------------------------------
/** \brief Set Patch Cord Id
* @param id : id of Cord.
*
* This method stores the patch cord id in the port.
*/
//-----------------------------------------------------
void setPatchCoordId(int id)
{
ports[currentPortId].setPatchCordId(id);
}
//-----------------------------------------------------
/** \brief Set Electrode Id
* @param id : id of Electrode.
*
* This method stores the Electrode id in the port.
*/
//-----------------------------------------------------
void setElectrodeId(string id)
{
ports[currentPortId].setElectrodeId(id);
}
//-----------------------------------------------------
/// Events
//-----------------------------------------------------
ofEvent<Port> attachPatchCord;
ofEvent<Port> removePatchCord;
ofEvent<int> closedNodeId;
//-----------------------------------------------------
/// Variables
//-----------------------------------------------------
ofRectangle box;
string name;
int *id;
int spacing;
vector<Port> ports;
int currentPortId;
vector <string> portNames;
bool bCanMoveNode;
bool bCanResizeNode;
bool bIsNodeSizeLocked;
int noOfPorts;
ofPoint mouseMoveOffset;
ofPoint mouseResizeOffset;
ofRectangle header;
ofxCenteredTrueTypeFont *font;
ILIconButton *closeNode;
ofRectangle resizeNode;
IL_NODE_TYPE type;
private:
};
#endif /* BaseNode_h */
| [
"david.haylock@watershed.co.uk"
] | david.haylock@watershed.co.uk |
f5842c85030b9e114e9f2b6269b63e25f919f441 | d0985731c45024388a2d8938a9e8a52dc7f985f3 | /src/server/scripts/Northrend/Nexus/Nexus/boss_magus_telestra.cpp | 9f4c68817d44fee7a0e5a96ac641be02a8a1a1ef | [] | no_license | Naios/MythCore | 1ac1096ad8afefdf743ed206e10c2432f7f57bed | 38acab976959eed1167b6b4438ce7c7075156dd8 | refs/heads/master | 2023-08-24T08:26:26.657783 | 2012-06-07T05:24:00 | 2012-06-07T05:24:00 | 4,604,578 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 13,369 | cpp | /*
* Copyright (C) 2008 - 2011 Trinity <http://www.trinitycore.org/>
*
* Copyright (C) 2010 - 2012 Myth Project <http://mythprojectnetwork.blogspot.com/>
*
* Myth Project's source is based on the Trinity Project source, you can find the
* link to that easily in Trinity Copyrights. Myth Project is a private community.
* To get access, you either have to donate or pass a developer test.
* You can't share Myth Project's sources! Only for personal use.
*/
#include "ScriptPCH.h"
#include "nexus.h"
enum Spells
{
SPELL_ICE_NOVA = 47772,
H_SPELL_ICE_NOVA = 56935,
SPELL_FIREBOMB = 47773,
H_SPELL_FIREBOMB = 56934,
SPELL_GRAVITY_WELL = 47756,
SPELL_TELESTRA_BACK = 47714,
SPELL_FIRE_MAGUS_VISUAL = 47705,
SPELL_FROST_MAGUS_VISUAL = 47706,
SPELL_ARCANE_MAGUS_VISUAL = 47704,
SPELL_CRITTER = 47731,
SPELL_TIMESTOP = 47736
};
enum Creatures
{
MOB_FIRE_MAGUS = 26928,
MOB_FROST_MAGUS = 26930,
MOB_ARCANE_MAGUS = 26929
};
enum Yells
{
SAY_AGGRO = -1576000,
SAY_KILL = -1576001,
SAY_DEATH = -1576002,
SAY_MERGE = -1576003,
SAY_SPLIT_1 = -1576004,
SAY_SPLIT_2 = -1576005
};
enum Achievements
{
ACHIEV_SPLIT_PERSONALITY = 2150,
ACHIEV_TIMER = 5*IN_MILLISECONDS
};
const Position CenterOfRoom = {504.80f, 89.07f, -16.12f, 6.27f};
class boss_magus_telestra : public CreatureScript
{
public:
boss_magus_telestra() : CreatureScript("boss_magus_telestra") { }
CreatureAI* GetAI(Creature* creature) const
{
return new boss_magus_telestraAI (creature);
}
struct boss_magus_telestraAI : public ScriptedAI
{
boss_magus_telestraAI(Creature* c) : ScriptedAI(c)
{
pInstance = c->GetInstanceScript();
}
InstanceScript* pInstance;
uint64 uiFireMagusGUID;
uint64 uiFrostMagusGUID;
uint64 uiArcaneMagusGUID;
bool bFireMagusDead;
bool bFrostMagusDead;
bool bArcaneMagusDead;
bool bIsWaitingToAppear;
bool bIsAchievementTimerRunning;
uint32 uiIsWaitingToAppearTimer;
uint32 uiIceNovaTimer;
uint32 uiFireBombTimer;
uint32 uiGravityWellTimer;
uint32 uiCooldown;
uint32 uiAchievementTimer;
uint8 Phase;
uint8 uiAchievementProgress;
void Reset()
{
Phase = 0;
uiIceNovaTimer = 7*IN_MILLISECONDS;
uiFireBombTimer = 0;
uiGravityWellTimer = 15*IN_MILLISECONDS;
uiCooldown = 0;
uiFireMagusGUID = 0;
uiFrostMagusGUID = 0;
uiArcaneMagusGUID = 0;
uiAchievementProgress = 0;
uiAchievementTimer = 0;
bIsAchievementTimerRunning = false;
bIsWaitingToAppear = false;
me->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
me->SetVisible(true);
if(pInstance)
pInstance->SetData(DATA_MAGUS_TELESTRA_EVENT, NOT_STARTED);
}
void EnterCombat(Unit* /*pWho*/)
{
DoScriptText(SAY_AGGRO, me);
if(pInstance)
pInstance->SetData(DATA_MAGUS_TELESTRA_EVENT, IN_PROGRESS);
}
void JustDied(Unit* /*pKiller*/)
{
DoScriptText(SAY_DEATH, me);
if(pInstance)
{
if(IsHeroic() && uiAchievementProgress == 2)
pInstance->DoCompleteAchievement(ACHIEV_SPLIT_PERSONALITY);
pInstance->SetData(DATA_MAGUS_TELESTRA_EVENT, DONE);
}
}
void KilledUnit(Unit* /*pVictim*/)
{
DoScriptText(SAY_KILL, me);
}
uint64 SplitPersonality(uint32 entry)
{
if(Creature* Summoned = me->SummonCreature(entry, me->GetPositionX(), me->GetPositionY(), me->GetPositionZ(), me->GetOrientation(), TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT, 1*IN_MILLISECONDS))
{
switch(entry)
{
case MOB_FIRE_MAGUS:
{
Summoned->CastSpell(Summoned, SPELL_FIRE_MAGUS_VISUAL, false);
break;
}
case MOB_FROST_MAGUS:
{
Summoned->CastSpell(Summoned, SPELL_FROST_MAGUS_VISUAL, false);
break;
}
case MOB_ARCANE_MAGUS:
{
Summoned->CastSpell(Summoned, SPELL_ARCANE_MAGUS_VISUAL, false);
break;
}
}
if(Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 0))
Summoned->AI()->AttackStart(target);
return Summoned->GetGUID();
}
return 0;
}
void SummonedCreatureDespawn(Creature* summon)
{
if(summon->isAlive())
return;
if(summon->GetGUID() == uiFireMagusGUID)
{
bFireMagusDead = true;
bIsAchievementTimerRunning = true;
}
else if(summon->GetGUID() == uiFrostMagusGUID)
{
bFrostMagusDead = true;
bIsAchievementTimerRunning = true;
}
else if(summon->GetGUID() == uiArcaneMagusGUID)
{
bArcaneMagusDead = true;
bIsAchievementTimerRunning = true;
}
}
void UpdateAI(const uint32 diff)
{
if(!UpdateVictim())
return;
if(bIsWaitingToAppear)
{
me->StopMoving();
me->AttackStop();
if(uiIsWaitingToAppearTimer <= diff)
{
me->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
bIsWaitingToAppear = false;
} else uiIsWaitingToAppearTimer -= diff;
return;
}
if((Phase == 1) ||(Phase == 3))
{
if(bIsAchievementTimerRunning)
uiAchievementTimer += diff;
if(bFireMagusDead && bFrostMagusDead && bArcaneMagusDead)
{
if(uiAchievementTimer <= ACHIEV_TIMER)
uiAchievementProgress +=1;
me->GetMotionMaster()->Clear();
me->GetMap()->CreatureRelocation(me, CenterOfRoom.GetPositionX(), CenterOfRoom.GetPositionY(), CenterOfRoom.GetPositionZ(), CenterOfRoom.GetOrientation());
DoCast(me, SPELL_TELESTRA_BACK);
me->SetVisible(true);
Phase++;
uiFireMagusGUID = 0;
uiFrostMagusGUID = 0;
uiArcaneMagusGUID = 0;
bIsWaitingToAppear = true;
uiIsWaitingToAppearTimer = 4*IN_MILLISECONDS;
DoScriptText(SAY_MERGE, me);
bIsAchievementTimerRunning = false;
uiAchievementTimer = 0;
} else return;
}
if((Phase == 0) && HealthBelowPct(50))
{
Phase = 1;
me->CastStop();
me->RemoveAllAuras();
me->SetVisible(false);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
uiFireMagusGUID = SplitPersonality(MOB_FIRE_MAGUS);
uiFrostMagusGUID = SplitPersonality(MOB_FROST_MAGUS);
uiArcaneMagusGUID = SplitPersonality(MOB_ARCANE_MAGUS);
bFireMagusDead = false;
bFrostMagusDead = false;
bArcaneMagusDead = false;
DoScriptText(RAND(SAY_SPLIT_1,SAY_SPLIT_2), me);
return;
}
if(IsHeroic() && (Phase == 2) && HealthBelowPct(15))
{
Phase = 3;
me->CastStop();
me->RemoveAllAuras();
me->SetVisible(false);
me->SetFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NOT_SELECTABLE);
uiFireMagusGUID = SplitPersonality(MOB_FIRE_MAGUS);
uiFrostMagusGUID = SplitPersonality(MOB_FROST_MAGUS);
uiArcaneMagusGUID = SplitPersonality(MOB_ARCANE_MAGUS);
bFireMagusDead = false;
bFrostMagusDead = false;
bArcaneMagusDead = false;
DoScriptText(RAND(SAY_SPLIT_1,SAY_SPLIT_2), me);
return;
}
if(uiCooldown)
{
if(uiCooldown <= diff)
uiCooldown = 0;
else
{
uiCooldown -= diff;
return;
}
}
if(uiIceNovaTimer <= diff)
{
if(Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 0))
{
DoCast(target, SPELL_ICE_NOVA, false);
uiCooldown = 1500;
}
uiIceNovaTimer = 15*IN_MILLISECONDS;
} else uiIceNovaTimer -= diff;
if(uiGravityWellTimer <= diff)
{
if(Unit* target = me->getVictim())
{
DoCast(target, SPELL_GRAVITY_WELL);
uiCooldown = 6*IN_MILLISECONDS;
}
uiGravityWellTimer = 15*IN_MILLISECONDS;
} else uiGravityWellTimer -= diff;
if(uiFireBombTimer <= diff)
{
if(Unit* target = SelectTarget(SELECT_TARGET_RANDOM, 0))
{
DoCast(target, SPELL_FIREBOMB, false);
uiCooldown = 2*IN_MILLISECONDS;
}
uiFireBombTimer = 2*IN_MILLISECONDS;
} else uiFireBombTimer -=diff;
DoMeleeAttackIfReady();
}
};
};
class boss_magus_telestra_arcane : public CreatureScript
{
public:
boss_magus_telestra_arcane() : CreatureScript("boss_magus_telestra_arcane") { }
struct boss_magus_telestra_arcaneAI : public ScriptedAI
{
boss_magus_telestra_arcaneAI(Creature* c) : ScriptedAI(c)
{
pInstance = c->GetInstanceScript();
}
InstanceScript* pInstance;
uint32 uiCritterTimer;
uint32 uiTimeStopTimer;
void Reset()
{
uiCritterTimer = urand(3000, 6000);
uiTimeStopTimer = urand(7000, 10000);
}
void UpdateAI(const uint32 diff)
{
if(!UpdateVictim())
return;
if(uiCritterTimer<=diff)
{
DoCast(SPELL_CRITTER);
uiCritterTimer = urand(5000, 8000);
} else uiCritterTimer-=diff;
if(uiTimeStopTimer<=diff)
{
DoCastAOE(SPELL_TIMESTOP);
uiTimeStopTimer = urand(15000, 18000);
} else uiTimeStopTimer-=diff;
DoMeleeAttackIfReady();
}
};
CreatureAI* GetAI(Creature* pCreature) const
{
return new boss_magus_telestra_arcaneAI(pCreature);
}
};
class spell_nexus_critter_targeting : public SpellScriptLoader
{
public:
spell_nexus_critter_targeting() : SpellScriptLoader("spell_nexus_critter_targeting") { }
class spell_nexus_critter_targeting_SpellScript : public SpellScript
{
PrepareSpellScript(spell_nexus_critter_targeting_SpellScript);
void FilterTargetsInitial(std::list<Unit*>& unitList)
{
sharedUnitList = unitList;
}
void FilterTargetsSubsequent(std::list<Unit*>& unitList)
{
unitList = sharedUnitList;
}
void Register()
{
OnUnitTargetSelect += SpellUnitTargetFn(spell_nexus_critter_targeting_SpellScript::FilterTargetsInitial, EFFECT_0, TARGET_UNIT_AREA_ENEMY_SRC);
OnUnitTargetSelect += SpellUnitTargetFn(spell_nexus_critter_targeting_SpellScript::FilterTargetsSubsequent, EFFECT_1, TARGET_UNIT_AREA_ENEMY_SRC);
OnUnitTargetSelect += SpellUnitTargetFn(spell_nexus_critter_targeting_SpellScript::FilterTargetsSubsequent, EFFECT_2, TARGET_UNIT_AREA_ENEMY_SRC);
}
std::list<Unit*> sharedUnitList;
};
SpellScript* GetSpellScript() const
{
return new spell_nexus_critter_targeting_SpellScript();
}
};
void AddSC_boss_magus_telestra()
{
new boss_magus_telestra;
new boss_magus_telestra_arcane;
new spell_nexus_critter_targeting;
} | [
"taumer943@gmail.com"
] | taumer943@gmail.com |
d7e35e3f86dcef8c9e48b1a825affa7659cd5b2b | 986981c13babcd5398a8524c0db8f3183dcb9184 | /src/dbl/service/configurator/factory.cxx | 572bb53ca3798f719d8090cc7750b8cf46cc7c75 | [
"MIT"
] | permissive | Cloudxtreme/dbl-service | f63c7dc8d7d51871cacc6e1ba2c70354a40422db | 9af5aee06be0a4b909782b251bf6078513399d33 | refs/heads/master | 2020-03-31T11:59:29.132216 | 2018-04-01T11:27:23 | 2018-04-01T11:27:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 396 | cxx | #include "factory.hxx"
#if defined(__unix)
#include "unix.hxx"
typedef dbl::service::configurator::Unix Configurator_t;
#endif
namespace dbl {
namespace service {
namespace configurator {
std::unique_ptr<Configurator> create(std::shared_ptr<core::Api> api)
{
std::unique_ptr<Configurator> ptr(
new Configurator_t(api)
);
return std::move(ptr);
}
} // configurator
} // service
} // dbl
| [
"dbl@localhost"
] | dbl@localhost |
c0dbc4e2ed751a32e4f265e8b78b9581734403cb | f40aa909c5edb26dd1d0af194b737abaec4fb744 | /CPP/overloading/Untitled6.cpp | 313299ef1359632c767b3d7a1b7965f30f6792ab | [] | no_license | shariquesha/OOP-LAB | 403b0116c6418db91564c172b2890e7a77f8025e | 35801f7d6a628831db663c28464859f4a5bbd331 | refs/heads/master | 2021-07-21T17:33:29.487436 | 2017-11-01T19:30:46 | 2017-11-01T19:30:46 | 109,173,533 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 403 | cpp | #include<iostream>
using namespace std;
class counter{
private :
int data;
public:
counter():data(0){
}
void init_data(int x)
{
data=x;
}
void show()
{
cout<<data;
}
void operator ++ ();
void operator ++ (int);
};
void counter::operator ++()
{
++data;
}
void counter ::operator ++(int)
{
data++;
}
int main()
{
counter c1;
++c1;
c1++;
c1.show();
}
| [
"shariqueshahab@gmail.com"
] | shariqueshahab@gmail.com |
1bff3c3925f23093fe439406784a4989b4b7e726 | ba95db24a066c791f6c2e009275393abc7831cab | /Interview Bit/3-sum-zero.cpp | f5433afed2d393969ec35f22d3cf889e24bb7ea6 | [] | no_license | anumehaagrawal/Interview-Questions | 5602135151aebe5f31cdebc061ffd072f96f4c86 | a8b42b23c5e1892c83f561c2a458f692f59c74e5 | refs/heads/master | 2020-03-17T02:52:32.100896 | 2018-12-14T18:31:51 | 2018-12-14T18:31:51 | 133,210,000 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 907 | cpp | vector<vector<int> > Solution::threeSum(vector<int> &A) {
set<vector<int> > sol;
sort(A.begin(),A.end());
vector<vector<int> > fin;
if(A.size()<3){
return fin;
}
for(int i=0;i<A.size()-1;i++){
int l = i+1;
int r = A.size()-1;
int x = A[i];
while(l<r){
if(x+A[l]+A[r]==0){
vector<int> v;
v.push_back(x);
v.push_back(A[l]);
v.push_back(A[r]);
sol.insert(v);
l++;
r--;
}
else if(x+A[l]+A[r]>0 ){
r--;
}
else{
l++;
}
}
}
set<vector<int>>::iterator it = sol.begin();
while (it != sol.end())
{
fin.push_back(*it);
it++;
}
if(fin.size()>0){
return fin;
}
} | [
"anuzenith29@gmail.com"
] | anuzenith29@gmail.com |
61c4f67f988a63ad18671e0f692e3b2b1b399f53 | 19d1bb2d3fa6b863e966abf417a73650788481b3 | /Library/Il2cppBuildCache/WebGL/il2cppOutput/UnityEngine.Physics2DModule.cpp | 61b951af94571465e3e6727b0ee70f79374394ff | [] | no_license | xansh/Alien-Shooter | c3e65fb220da867c4706681e62d23974e84ff94e | 65aa502d87604ea9d87fca4b2a4075176281c4be | refs/heads/main | 2023-09-04T10:42:47.453887 | 2021-10-19T13:30:11 | 2021-10-19T13:30:11 | 413,310,854 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 189,184 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
// System.Collections.Generic.List`1<System.Object>
struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5;
// System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>
struct List_1_t3926283FA9AE49778D95220056CEBFB01D034379;
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
struct List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1;
// System.Char[]
struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34;
// UnityEngine.ContactPoint2D[]
struct ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277;
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09;
// UnityEngine.Rigidbody2D[]
struct Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF;
// UnityEngine.Collider2D
struct Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722;
// UnityEngine.Collision2D
struct Collision2D_t95B5FD331CE95276D3658140844190B485D26564;
// UnityEngine.Component
struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684;
// UnityEngine.GameObject
struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319;
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A;
// UnityEngine.Rigidbody2D
struct Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5;
// System.String
struct String_t;
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5;
IL2CPP_EXTERN_C RuntimeClass* Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C RuntimeClass* Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5_il2cpp_TypeInfo_var;
IL2CPP_EXTERN_C String_t* _stringLiteral21ACE806CE655297BC379B3AD17E97F0A68B6AEC;
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m42BFD7A7FC288F4627CD724F28FF73E9BC0FE7AB_RuntimeMethod_var;
struct ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 ;
struct ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277;
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE;
struct RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09;
IL2CPP_EXTERN_C_BEGIN
IL2CPP_EXTERN_C_END
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// <Module>
struct U3CModuleU3E_tB9AD1E70EEC6CD05D7E857DE3C07E77B470C8679
{
public:
public:
};
// System.Object
// System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>
struct List_1_t3926283FA9AE49778D95220056CEBFB01D034379 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t3926283FA9AE49778D95220056CEBFB01D034379, ____items_1)); }
inline RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* get__items_1() const { return ____items_1; }
inline RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t3926283FA9AE49778D95220056CEBFB01D034379, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t3926283FA9AE49778D95220056CEBFB01D034379, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t3926283FA9AE49778D95220056CEBFB01D034379, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t3926283FA9AE49778D95220056CEBFB01D034379_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t3926283FA9AE49778D95220056CEBFB01D034379_StaticFields, ____emptyArray_5)); }
inline RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* get__emptyArray_5() const { return ____emptyArray_5; }
inline RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>
struct List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF* ____items_1;
// System.Int32 System.Collections.Generic.List`1::_size
int32_t ____size_2;
// System.Int32 System.Collections.Generic.List`1::_version
int32_t ____version_3;
// System.Object System.Collections.Generic.List`1::_syncRoot
RuntimeObject * ____syncRoot_4;
public:
inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1, ____items_1)); }
inline Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF* get__items_1() const { return ____items_1; }
inline Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF* value)
{
____items_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value);
}
inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1, ____size_2)); }
inline int32_t get__size_2() const { return ____size_2; }
inline int32_t* get_address_of__size_2() { return &____size_2; }
inline void set__size_2(int32_t value)
{
____size_2 = value;
}
inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1, ____version_3)); }
inline int32_t get__version_3() const { return ____version_3; }
inline int32_t* get_address_of__version_3() { return &____version_3; }
inline void set__version_3(int32_t value)
{
____version_3 = value;
}
inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1, ____syncRoot_4)); }
inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; }
inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; }
inline void set__syncRoot_4(RuntimeObject * value)
{
____syncRoot_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value);
}
};
struct List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1_StaticFields, ____emptyArray_5)); }
inline Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF* get__emptyArray_5() const { return ____emptyArray_5; }
inline Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(Rigidbody2DU5BU5D_t9CE3D06C92F81A1266F9DDF9BE6180FE19CC5CEF* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value);
}
};
struct Il2CppArrayBounds;
// System.Array
// UnityEngine.Physics2D
struct Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92 : public RuntimeObject
{
public:
public:
};
struct Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_StaticFields
{
public:
// System.Collections.Generic.List`1<UnityEngine.Rigidbody2D> UnityEngine.Physics2D::m_LastDisabledRigidbody2D
List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 * ___m_LastDisabledRigidbody2D_0;
public:
inline static int32_t get_offset_of_m_LastDisabledRigidbody2D_0() { return static_cast<int32_t>(offsetof(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_StaticFields, ___m_LastDisabledRigidbody2D_0)); }
inline List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 * get_m_LastDisabledRigidbody2D_0() const { return ___m_LastDisabledRigidbody2D_0; }
inline List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 ** get_address_of_m_LastDisabledRigidbody2D_0() { return &___m_LastDisabledRigidbody2D_0; }
inline void set_m_LastDisabledRigidbody2D_0(List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 * value)
{
___m_LastDisabledRigidbody2D_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LastDisabledRigidbody2D_0), (void*)value);
}
};
// System.String
struct String_t : public RuntimeObject
{
public:
// System.Int32 System.String::m_stringLength
int32_t ___m_stringLength_0;
// System.Char System.String::m_firstChar
Il2CppChar ___m_firstChar_1;
public:
inline static int32_t get_offset_of_m_stringLength_0() { return static_cast<int32_t>(offsetof(String_t, ___m_stringLength_0)); }
inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; }
inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; }
inline void set_m_stringLength_0(int32_t value)
{
___m_stringLength_0 = value;
}
inline static int32_t get_offset_of_m_firstChar_1() { return static_cast<int32_t>(offsetof(String_t, ___m_firstChar_1)); }
inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; }
inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; }
inline void set_m_firstChar_1(Il2CppChar value)
{
___m_firstChar_1 = value;
}
};
struct String_t_StaticFields
{
public:
// System.String System.String::Empty
String_t* ___Empty_5;
public:
inline static int32_t get_offset_of_Empty_5() { return static_cast<int32_t>(offsetof(String_t_StaticFields, ___Empty_5)); }
inline String_t* get_Empty_5() const { return ___Empty_5; }
inline String_t** get_address_of_Empty_5() { return &___Empty_5; }
inline void set_Empty_5(String_t* value)
{
___Empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value);
}
};
// System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject
{
public:
public:
};
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com
{
};
// System.Boolean
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52
{
public:
public:
};
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields
{
public:
// System.Char[] System.Enum::enumSeperatorCharArray
CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0;
public:
inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast<int32_t>(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; }
inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; }
inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value)
{
___enumSeperatorCharArray_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value);
}
};
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com
{
};
// System.Int32
struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046
{
public:
// System.Int32 System.Int32::m_value
int32_t ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); }
inline int32_t get_m_value_0() const { return ___m_value_0; }
inline int32_t* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(int32_t value)
{
___m_value_0 = value;
}
};
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
// UnityEngine.LayerMask
struct LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8
{
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_t5FA647D8C300EA0621360CA4424717C3C73190A8, ___m_Mask_0)); }
inline int32_t get_m_Mask_0() const { return ___m_Mask_0; }
inline int32_t* get_address_of_m_Mask_0() { return &___m_Mask_0; }
inline void set_m_Mask_0(int32_t value)
{
___m_Mask_0 = value;
}
};
// UnityEngine.PhysicsScene2D
struct PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48
{
public:
// System.Int32 UnityEngine.PhysicsScene2D::m_Handle
int32_t ___m_Handle_0;
public:
inline static int32_t get_offset_of_m_Handle_0() { return static_cast<int32_t>(offsetof(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48, ___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;
}
};
// System.Single
struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E
{
public:
// System.Single System.Single::m_value
float ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); }
inline float get_m_value_0() const { return ___m_value_0; }
inline float* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(float value)
{
___m_value_0 = value;
}
};
// UnityEngine.Vector2
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9
{
public:
// System.Single UnityEngine.Vector2::x
float ___x_0;
// System.Single UnityEngine.Vector2::y
float ___y_1;
public:
inline static int32_t get_offset_of_x_0() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); }
inline float get_x_0() const { return ___x_0; }
inline float* get_address_of_x_0() { return &___x_0; }
inline void set_x_0(float value)
{
___x_0 = value;
}
inline static int32_t get_offset_of_y_1() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); }
inline float get_y_1() const { return ___y_1; }
inline float* get_address_of_y_1() { return &___y_1; }
inline void set_y_1(float value)
{
___y_1 = value;
}
};
struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields
{
public:
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2;
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3;
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4;
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5;
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6;
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7;
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8;
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9;
public:
inline static int32_t get_offset_of_zeroVector_2() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; }
inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___zeroVector_2 = value;
}
inline static int32_t get_offset_of_oneVector_3() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; }
inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___oneVector_3 = value;
}
inline static int32_t get_offset_of_upVector_4() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; }
inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___upVector_4 = value;
}
inline static int32_t get_offset_of_downVector_5() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; }
inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___downVector_5 = value;
}
inline static int32_t get_offset_of_leftVector_6() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; }
inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___leftVector_6 = value;
}
inline static int32_t get_offset_of_rightVector_7() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; }
inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___rightVector_7 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; }
inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___positiveInfinityVector_8 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast<int32_t>(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; }
inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___negativeInfinityVector_9 = value;
}
};
// UnityEngine.Vector3
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E
{
public:
// System.Single UnityEngine.Vector3::x
float ___x_2;
// System.Single UnityEngine.Vector3::y
float ___y_3;
// System.Single UnityEngine.Vector3::z
float ___z_4;
public:
inline static int32_t get_offset_of_x_2() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); }
inline float get_x_2() const { return ___x_2; }
inline float* get_address_of_x_2() { return &___x_2; }
inline void set_x_2(float value)
{
___x_2 = value;
}
inline static int32_t get_offset_of_y_3() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); }
inline float get_y_3() const { return ___y_3; }
inline float* get_address_of_y_3() { return &___y_3; }
inline void set_y_3(float value)
{
___y_3 = value;
}
inline static int32_t get_offset_of_z_4() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); }
inline float get_z_4() const { return ___z_4; }
inline float* get_address_of_z_4() { return &___z_4; }
inline void set_z_4(float value)
{
___z_4 = value;
}
};
struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields
{
public:
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5;
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6;
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7;
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8;
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9;
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10;
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11;
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12;
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13;
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14;
public:
inline static int32_t get_offset_of_zeroVector_5() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; }
inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___zeroVector_5 = value;
}
inline static int32_t get_offset_of_oneVector_6() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; }
inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___oneVector_6 = value;
}
inline static int32_t get_offset_of_upVector_7() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; }
inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___upVector_7 = value;
}
inline static int32_t get_offset_of_downVector_8() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; }
inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___downVector_8 = value;
}
inline static int32_t get_offset_of_leftVector_9() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; }
inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___leftVector_9 = value;
}
inline static int32_t get_offset_of_rightVector_10() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; }
inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___rightVector_10 = value;
}
inline static int32_t get_offset_of_forwardVector_11() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; }
inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___forwardVector_11 = value;
}
inline static int32_t get_offset_of_backVector_12() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; }
inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___backVector_12 = value;
}
inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; }
inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___positiveInfinityVector_13 = value;
}
inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast<int32_t>(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; }
inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___negativeInfinityVector_14 = value;
}
};
// System.Void
struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5
{
public:
union
{
struct
{
};
uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1];
};
public:
};
// UnityEngine.Collision2D
struct Collision2D_t95B5FD331CE95276D3658140844190B485D26564 : public RuntimeObject
{
public:
// System.Int32 UnityEngine.Collision2D::m_Collider
int32_t ___m_Collider_0;
// System.Int32 UnityEngine.Collision2D::m_OtherCollider
int32_t ___m_OtherCollider_1;
// System.Int32 UnityEngine.Collision2D::m_Rigidbody
int32_t ___m_Rigidbody_2;
// System.Int32 UnityEngine.Collision2D::m_OtherRigidbody
int32_t ___m_OtherRigidbody_3;
// UnityEngine.Vector2 UnityEngine.Collision2D::m_RelativeVelocity
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_RelativeVelocity_4;
// System.Int32 UnityEngine.Collision2D::m_Enabled
int32_t ___m_Enabled_5;
// System.Int32 UnityEngine.Collision2D::m_ContactCount
int32_t ___m_ContactCount_6;
// UnityEngine.ContactPoint2D[] UnityEngine.Collision2D::m_ReusedContacts
ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* ___m_ReusedContacts_7;
// UnityEngine.ContactPoint2D[] UnityEngine.Collision2D::m_LegacyContacts
ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* ___m_LegacyContacts_8;
public:
inline static int32_t get_offset_of_m_Collider_0() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_Collider_0)); }
inline int32_t get_m_Collider_0() const { return ___m_Collider_0; }
inline int32_t* get_address_of_m_Collider_0() { return &___m_Collider_0; }
inline void set_m_Collider_0(int32_t value)
{
___m_Collider_0 = value;
}
inline static int32_t get_offset_of_m_OtherCollider_1() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_OtherCollider_1)); }
inline int32_t get_m_OtherCollider_1() const { return ___m_OtherCollider_1; }
inline int32_t* get_address_of_m_OtherCollider_1() { return &___m_OtherCollider_1; }
inline void set_m_OtherCollider_1(int32_t value)
{
___m_OtherCollider_1 = value;
}
inline static int32_t get_offset_of_m_Rigidbody_2() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_Rigidbody_2)); }
inline int32_t get_m_Rigidbody_2() const { return ___m_Rigidbody_2; }
inline int32_t* get_address_of_m_Rigidbody_2() { return &___m_Rigidbody_2; }
inline void set_m_Rigidbody_2(int32_t value)
{
___m_Rigidbody_2 = value;
}
inline static int32_t get_offset_of_m_OtherRigidbody_3() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_OtherRigidbody_3)); }
inline int32_t get_m_OtherRigidbody_3() const { return ___m_OtherRigidbody_3; }
inline int32_t* get_address_of_m_OtherRigidbody_3() { return &___m_OtherRigidbody_3; }
inline void set_m_OtherRigidbody_3(int32_t value)
{
___m_OtherRigidbody_3 = value;
}
inline static int32_t get_offset_of_m_RelativeVelocity_4() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_RelativeVelocity_4)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_RelativeVelocity_4() const { return ___m_RelativeVelocity_4; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_RelativeVelocity_4() { return &___m_RelativeVelocity_4; }
inline void set_m_RelativeVelocity_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_RelativeVelocity_4 = value;
}
inline static int32_t get_offset_of_m_Enabled_5() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_Enabled_5)); }
inline int32_t get_m_Enabled_5() const { return ___m_Enabled_5; }
inline int32_t* get_address_of_m_Enabled_5() { return &___m_Enabled_5; }
inline void set_m_Enabled_5(int32_t value)
{
___m_Enabled_5 = value;
}
inline static int32_t get_offset_of_m_ContactCount_6() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_ContactCount_6)); }
inline int32_t get_m_ContactCount_6() const { return ___m_ContactCount_6; }
inline int32_t* get_address_of_m_ContactCount_6() { return &___m_ContactCount_6; }
inline void set_m_ContactCount_6(int32_t value)
{
___m_ContactCount_6 = value;
}
inline static int32_t get_offset_of_m_ReusedContacts_7() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_ReusedContacts_7)); }
inline ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* get_m_ReusedContacts_7() const { return ___m_ReusedContacts_7; }
inline ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277** get_address_of_m_ReusedContacts_7() { return &___m_ReusedContacts_7; }
inline void set_m_ReusedContacts_7(ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* value)
{
___m_ReusedContacts_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ReusedContacts_7), (void*)value);
}
inline static int32_t get_offset_of_m_LegacyContacts_8() { return static_cast<int32_t>(offsetof(Collision2D_t95B5FD331CE95276D3658140844190B485D26564, ___m_LegacyContacts_8)); }
inline ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* get_m_LegacyContacts_8() const { return ___m_LegacyContacts_8; }
inline ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277** get_address_of_m_LegacyContacts_8() { return &___m_LegacyContacts_8; }
inline void set_m_LegacyContacts_8(ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277* value)
{
___m_LegacyContacts_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LegacyContacts_8), (void*)value);
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Collision2D
struct Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_pinvoke
{
int32_t ___m_Collider_0;
int32_t ___m_OtherCollider_1;
int32_t ___m_Rigidbody_2;
int32_t ___m_OtherRigidbody_3;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_RelativeVelocity_4;
int32_t ___m_Enabled_5;
int32_t ___m_ContactCount_6;
ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * ___m_ReusedContacts_7;
ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * ___m_LegacyContacts_8;
};
// Native definition for COM marshalling of UnityEngine.Collision2D
struct Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_com
{
int32_t ___m_Collider_0;
int32_t ___m_OtherCollider_1;
int32_t ___m_Rigidbody_2;
int32_t ___m_OtherRigidbody_3;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_RelativeVelocity_4;
int32_t ___m_Enabled_5;
int32_t ___m_ContactCount_6;
ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * ___m_ReusedContacts_7;
ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * ___m_LegacyContacts_8;
};
// UnityEngine.ContactFilter2D
struct ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB
{
public:
// System.Boolean UnityEngine.ContactFilter2D::useTriggers
bool ___useTriggers_0;
// System.Boolean UnityEngine.ContactFilter2D::useLayerMask
bool ___useLayerMask_1;
// System.Boolean UnityEngine.ContactFilter2D::useDepth
bool ___useDepth_2;
// System.Boolean UnityEngine.ContactFilter2D::useOutsideDepth
bool ___useOutsideDepth_3;
// System.Boolean UnityEngine.ContactFilter2D::useNormalAngle
bool ___useNormalAngle_4;
// System.Boolean UnityEngine.ContactFilter2D::useOutsideNormalAngle
bool ___useOutsideNormalAngle_5;
// UnityEngine.LayerMask UnityEngine.ContactFilter2D::layerMask
LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___layerMask_6;
// System.Single UnityEngine.ContactFilter2D::minDepth
float ___minDepth_7;
// System.Single UnityEngine.ContactFilter2D::maxDepth
float ___maxDepth_8;
// System.Single UnityEngine.ContactFilter2D::minNormalAngle
float ___minNormalAngle_9;
// System.Single UnityEngine.ContactFilter2D::maxNormalAngle
float ___maxNormalAngle_10;
public:
inline static int32_t get_offset_of_useTriggers_0() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___useTriggers_0)); }
inline bool get_useTriggers_0() const { return ___useTriggers_0; }
inline bool* get_address_of_useTriggers_0() { return &___useTriggers_0; }
inline void set_useTriggers_0(bool value)
{
___useTriggers_0 = value;
}
inline static int32_t get_offset_of_useLayerMask_1() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___useLayerMask_1)); }
inline bool get_useLayerMask_1() const { return ___useLayerMask_1; }
inline bool* get_address_of_useLayerMask_1() { return &___useLayerMask_1; }
inline void set_useLayerMask_1(bool value)
{
___useLayerMask_1 = value;
}
inline static int32_t get_offset_of_useDepth_2() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___useDepth_2)); }
inline bool get_useDepth_2() const { return ___useDepth_2; }
inline bool* get_address_of_useDepth_2() { return &___useDepth_2; }
inline void set_useDepth_2(bool value)
{
___useDepth_2 = value;
}
inline static int32_t get_offset_of_useOutsideDepth_3() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___useOutsideDepth_3)); }
inline bool get_useOutsideDepth_3() const { return ___useOutsideDepth_3; }
inline bool* get_address_of_useOutsideDepth_3() { return &___useOutsideDepth_3; }
inline void set_useOutsideDepth_3(bool value)
{
___useOutsideDepth_3 = value;
}
inline static int32_t get_offset_of_useNormalAngle_4() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___useNormalAngle_4)); }
inline bool get_useNormalAngle_4() const { return ___useNormalAngle_4; }
inline bool* get_address_of_useNormalAngle_4() { return &___useNormalAngle_4; }
inline void set_useNormalAngle_4(bool value)
{
___useNormalAngle_4 = value;
}
inline static int32_t get_offset_of_useOutsideNormalAngle_5() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___useOutsideNormalAngle_5)); }
inline bool get_useOutsideNormalAngle_5() const { return ___useOutsideNormalAngle_5; }
inline bool* get_address_of_useOutsideNormalAngle_5() { return &___useOutsideNormalAngle_5; }
inline void set_useOutsideNormalAngle_5(bool value)
{
___useOutsideNormalAngle_5 = value;
}
inline static int32_t get_offset_of_layerMask_6() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___layerMask_6)); }
inline LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 get_layerMask_6() const { return ___layerMask_6; }
inline LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 * get_address_of_layerMask_6() { return &___layerMask_6; }
inline void set_layerMask_6(LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 value)
{
___layerMask_6 = value;
}
inline static int32_t get_offset_of_minDepth_7() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___minDepth_7)); }
inline float get_minDepth_7() const { return ___minDepth_7; }
inline float* get_address_of_minDepth_7() { return &___minDepth_7; }
inline void set_minDepth_7(float value)
{
___minDepth_7 = value;
}
inline static int32_t get_offset_of_maxDepth_8() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___maxDepth_8)); }
inline float get_maxDepth_8() const { return ___maxDepth_8; }
inline float* get_address_of_maxDepth_8() { return &___maxDepth_8; }
inline void set_maxDepth_8(float value)
{
___maxDepth_8 = value;
}
inline static int32_t get_offset_of_minNormalAngle_9() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___minNormalAngle_9)); }
inline float get_minNormalAngle_9() const { return ___minNormalAngle_9; }
inline float* get_address_of_minNormalAngle_9() { return &___minNormalAngle_9; }
inline void set_minNormalAngle_9(float value)
{
___minNormalAngle_9 = value;
}
inline static int32_t get_offset_of_maxNormalAngle_10() { return static_cast<int32_t>(offsetof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB, ___maxNormalAngle_10)); }
inline float get_maxNormalAngle_10() const { return ___maxNormalAngle_10; }
inline float* get_address_of_maxNormalAngle_10() { return &___maxNormalAngle_10; }
inline void set_maxNormalAngle_10(float value)
{
___maxNormalAngle_10 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.ContactFilter2D
struct ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshaled_pinvoke
{
int32_t ___useTriggers_0;
int32_t ___useLayerMask_1;
int32_t ___useDepth_2;
int32_t ___useOutsideDepth_3;
int32_t ___useNormalAngle_4;
int32_t ___useOutsideNormalAngle_5;
LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___layerMask_6;
float ___minDepth_7;
float ___maxDepth_8;
float ___minNormalAngle_9;
float ___maxNormalAngle_10;
};
// Native definition for COM marshalling of UnityEngine.ContactFilter2D
struct ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshaled_com
{
int32_t ___useTriggers_0;
int32_t ___useLayerMask_1;
int32_t ___useDepth_2;
int32_t ___useOutsideDepth_3;
int32_t ___useNormalAngle_4;
int32_t ___useOutsideNormalAngle_5;
LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___layerMask_6;
float ___minDepth_7;
float ___maxDepth_8;
float ___minNormalAngle_9;
float ___maxNormalAngle_10;
};
// UnityEngine.ContactPoint2D
struct ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62
{
public:
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Point
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Point_0;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_Normal
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Normal_1;
// UnityEngine.Vector2 UnityEngine.ContactPoint2D::m_RelativeVelocity
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___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_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___m_Point_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Point_0() const { return ___m_Point_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Point_0() { return &___m_Point_0; }
inline void set_m_Point_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Point_0 = value;
}
inline static int32_t get_offset_of_m_Normal_1() { return static_cast<int32_t>(offsetof(ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___m_Normal_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Normal_1() const { return ___m_Normal_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Normal_1() { return &___m_Normal_1; }
inline void set_m_Normal_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Normal_1 = value;
}
inline static int32_t get_offset_of_m_RelativeVelocity_2() { return static_cast<int32_t>(offsetof(ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___m_RelativeVelocity_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_RelativeVelocity_2() const { return ___m_RelativeVelocity_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_RelativeVelocity_2() { return &___m_RelativeVelocity_2; }
inline void set_m_RelativeVelocity_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_RelativeVelocity_2 = value;
}
inline static int32_t get_offset_of_m_Separation_3() { return static_cast<int32_t>(offsetof(ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___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_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___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_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___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_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___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_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___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_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___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_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___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_t5A4C242ABAE740C565BF01A35CEE279058E66A62, ___m_Enabled_10)); }
inline int32_t get_m_Enabled_10() const { return ___m_Enabled_10; }
inline int32_t* get_address_of_m_Enabled_10() { return &___m_Enabled_10; }
inline void set_m_Enabled_10(int32_t value)
{
___m_Enabled_10 = value;
}
};
// UnityEngine.ForceMode2D
struct ForceMode2D_tAD695DED33FB7C591354430C88D220D71109ABF4
{
public:
// System.Int32 UnityEngine.ForceMode2D::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ForceMode2D_tAD695DED33FB7C591354430C88D220D71109ABF4, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.Ray
struct Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6
{
public:
// UnityEngine.Vector3 UnityEngine.Ray::m_Origin
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Origin_0;
// UnityEngine.Vector3 UnityEngine.Ray::m_Direction
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Direction_1;
public:
inline static int32_t get_offset_of_m_Origin_0() { return static_cast<int32_t>(offsetof(Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6, ___m_Origin_0)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Origin_0() const { return ___m_Origin_0; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Origin_0() { return &___m_Origin_0; }
inline void set_m_Origin_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Origin_0 = value;
}
inline static int32_t get_offset_of_m_Direction_1() { return static_cast<int32_t>(offsetof(Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6, ___m_Direction_1)); }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Direction_1() const { return ___m_Direction_1; }
inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Direction_1() { return &___m_Direction_1; }
inline void set_m_Direction_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value)
{
___m_Direction_1 = value;
}
};
// UnityEngine.RaycastHit2D
struct RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4
{
public:
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Centroid
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Centroid_0;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Point
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_Point_1;
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::m_Normal
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___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_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Centroid_0)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Centroid_0() const { return ___m_Centroid_0; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Centroid_0() { return &___m_Centroid_0; }
inline void set_m_Centroid_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Centroid_0 = value;
}
inline static int32_t get_offset_of_m_Point_1() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Point_1)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Point_1() const { return ___m_Point_1; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Point_1() { return &___m_Point_1; }
inline void set_m_Point_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Point_1 = value;
}
inline static int32_t get_offset_of_m_Normal_2() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Normal_2)); }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_Normal_2() const { return ___m_Normal_2; }
inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_Normal_2() { return &___m_Normal_2; }
inline void set_m_Normal_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value)
{
___m_Normal_2 = value;
}
inline static int32_t get_offset_of_m_Distance_3() { return static_cast<int32_t>(offsetof(RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4, ___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_t210878DAEBC96C1F69DF9883C454758724A106A4, ___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_t210878DAEBC96C1F69DF9883C454758724A106A4, ___m_Collider_5)); }
inline int32_t get_m_Collider_5() const { return ___m_Collider_5; }
inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; }
inline void set_m_Collider_5(int32_t value)
{
___m_Collider_5 = value;
}
};
// UnityEngine.Component
struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.GameObject
struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A
{
public:
public:
};
// UnityEngine.Behaviour
struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.Rigidbody2D
struct Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684
{
public:
public:
};
// UnityEngine.Collider2D
struct Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9
{
public:
public:
};
// UnityEngine.PolygonCollider2D
struct PolygonCollider2D_t0DE3E0562D6B75598DFDB71D7605BD8A1761835D : public Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// UnityEngine.ContactPoint2D[]
struct ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 m_Items[1];
public:
inline ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * 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, ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 value)
{
m_Items[index] = value;
}
};
// UnityEngine.RaycastHit2D[]
struct RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09 : public RuntimeArray
{
public:
ALIGN_FIELD (8) RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 m_Items[1];
public:
inline RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * 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, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
}
inline RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 value)
{
m_Items[index] = value;
}
};
// System.Object[]
struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray
{
public:
ALIGN_FIELD (8) RuntimeObject * m_Items[1];
public:
inline RuntimeObject * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline RuntimeObject ** GetAddressAt(il2cpp_array_size_t index)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items + index;
}
inline void SetAt(il2cpp_array_size_t index, RuntimeObject * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline RuntimeObject * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline RuntimeObject ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Void System.Collections.Generic.List`1<System.Object>::.ctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method);
// UnityEngine.Object UnityEngine.Object::FindObjectFromInstanceID(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * Object_FindObjectFromInstanceID_m0AD731D3F583CBBDC7DC0E08B38F742B447FA44A (int32_t ___instanceID0, const RuntimeMethod* method);
// UnityEngine.Rigidbody2D UnityEngine.Collision2D::get_rigidbody()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * Collision2D_get_rigidbody_m82AF533E110DFDBDED6D6C74EB479902E813D42E (Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method);
// UnityEngine.Collider2D UnityEngine.Collision2D::get_collider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * Collision2D_get_collider_mA7687EDB0D47A2F211BFE8DB89266B9AA05CFDDD (Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * __this, const RuntimeMethod* method);
// UnityEngine.GameObject UnityEngine.Component::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.ContactFilter2D::CheckConsistency_Injected(UnityEngine.ContactFilter2D&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContactFilter2D_CheckConsistency_Injected_mFF4A5178E9F60CCF59DDE6B6F0013D182294573E (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * ____unity_self0, const RuntimeMethod* method);
// System.Void UnityEngine.ContactFilter2D::CheckConsistency()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContactFilter2D_CheckConsistency_m4B6DAA0197DC017E3B7A8B8F661729431504C5D1 (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * __this, const RuntimeMethod* method);
// System.Void UnityEngine.ContactFilter2D::SetLayerMask(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContactFilter2D_SetLayerMask_m925C98BC2EEAA78349B3ED3654BC3C362743BBDE (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * __this, LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___layerMask0, const RuntimeMethod* method);
// System.Void UnityEngine.ContactFilter2D::SetDepth(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContactFilter2D_SetDepth_m63872B3F8BBDB962AF44D064BA328599C74D840F (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * __this, float ___minDepth0, float ___maxDepth1, const RuntimeMethod* method);
// System.Boolean UnityEngine.Physics2D::get_queriesHitTriggers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Physics2D_get_queriesHitTriggers_mA735707551D682297446435DFC7963E97F562E44 (const RuntimeMethod* method);
// UnityEngine.LayerMask UnityEngine.LayerMask::op_Implicit(System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 LayerMask_op_Implicit_mC7EE32122D2A4786D3C00B93E41604B71BF1397C (int32_t ___intVal0, const RuntimeMethod* method);
// UnityEngine.PhysicsScene2D UnityEngine.Physics2D::get_defaultPhysicsScene()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83 (const RuntimeMethod* method);
// UnityEngine.RaycastHit2D UnityEngine.PhysicsScene2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 PhysicsScene2D_Raycast_m22F55CAAA1B34A02757A5C6E2B573F6464B32723 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, int32_t ___layerMask3, const RuntimeMethod* method);
// UnityEngine.ContactFilter2D UnityEngine.ContactFilter2D::CreateLegacyFilter(System.Int32,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ContactFilter2D_CreateLegacyFilter_mA293F293D35236A5564D57574012590BD6DF385A (int32_t ___layerMask0, float ___minDepth1, float ___maxDepth2, const RuntimeMethod* method);
// UnityEngine.RaycastHit2D UnityEngine.PhysicsScene2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 PhysicsScene2D_Raycast_m167DAEC271F46133013EB0AAF2C7807064EBB3F2 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_Raycast_m3B011D4A6CA691739178E253665799A7AD0CB423 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results4, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_Raycast_m6FB2BBC4E3BE53114D7F6EFA975F5AF703ADCDC0 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * ___results4, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Ray::get_origin()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Ray_get_origin_m0C1B2BFF99CDF5231AC29AC031C161F55B53C1D0 (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 * __this, const RuntimeMethod* method);
// UnityEngine.Vector3 UnityEngine.Ray::get_direction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Ray_get_direction_m2B31F86F19B64474A901B28D3808011AE7A13EFC (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 * __this, const RuntimeMethod* method);
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* Physics2D_GetRayIntersectionAll_Internal_mA2BD81667462FF3C9E67A7E0445CC874009CF337 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___origin1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___direction2, float ___distance3, int32_t ___layerMask4, const RuntimeMethod* method);
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector3&,UnityEngine.Vector3&,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* Physics2D_GetRayIntersectionAll_Internal_Injected_m87038811DE210AFEEAD218D82268AF482BBD24C7 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___origin1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___direction2, float ___distance3, int32_t ___layerMask4, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::GetRayIntersection(UnityEngine.Ray,System.Single,UnityEngine.RaycastHit2D[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_GetRayIntersection_mB6F14C8BB95609094BE9BDB218483EAAC4117B5A (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, float ___distance1, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results2, int32_t ___layerMask3, const RuntimeMethod* method);
// System.Void System.Collections.Generic.List`1<UnityEngine.Rigidbody2D>::.ctor()
inline void List_1__ctor_m42BFD7A7FC288F4627CD724F28FF73E9BC0FE7AB (List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 * __this, const RuntimeMethod* method)
{
(( void (*) (List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method);
}
// System.String UnityEngine.UnityString::Format(System.String,System.Object[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9 (String_t* ___fmt0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method);
// System.String UnityEngine.PhysicsScene2D::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PhysicsScene2D_ToString_mDA6F499BD218AA31A450D918BB6C1890A9CE1109 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_GetHashCode_m4B5D8DCBA0AD6E5767C4D7A6AD6BC789EB19C8F5 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, const RuntimeMethod* method);
// System.Boolean UnityEngine.PhysicsScene2D::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene2D_Equals_m0C61F175C3B1BB308ADBC2AB323CEC45D1B5E99C (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, RuntimeObject * ___other0, const RuntimeMethod* method);
// System.Boolean UnityEngine.PhysicsScene2D::Equals(UnityEngine.PhysicsScene2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene2D_Equals_m581586F404E7A3BD3B6F0A05362974A6B523A2DA (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___other0, const RuntimeMethod* method);
// UnityEngine.RaycastHit2D UnityEngine.PhysicsScene2D::Raycast_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 PhysicsScene2D_Raycast_Internal_m933E452FA1E36FFC87A0EC896EE4D36859935C91 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter4, const RuntimeMethod* method);
// System.Void UnityEngine.PhysicsScene2D::Raycast_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsScene2D_Raycast_Internal_Injected_m6CEAF96A977FEDD926FBAAA74FFA2D571D75C422 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * ___contactFilter4, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * ___ret5, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::RaycastArray_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_RaycastArray_Internal_mB02544544B0F0AA17972D1D9ABC7CA0171537D9D (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter4, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results5, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::RaycastArray_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_RaycastArray_Internal_Injected_mE7F2FCB47E154BB4062BCEFECD74385275109D76 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * ___contactFilter4, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results5, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::RaycastList_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_RaycastList_Internal_m10A64653E2C399B6523B2D04B1E1C8626BF68B24 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter4, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * ___results5, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::RaycastList_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_RaycastList_Internal_Injected_m0866D19E97A4D9267F9E91C3CE33B7D34AB2DFBC (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * ___contactFilter4, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * ___results5, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::GetRayIntersectionArray_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_GetRayIntersectionArray_Internal_m44D4B8638806360B19BDCFDCC090C1AD1267539E (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___origin1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___direction2, float ___distance3, int32_t ___layerMask4, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results5, const RuntimeMethod* method);
// System.Int32 UnityEngine.PhysicsScene2D::GetRayIntersectionArray_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector3&,UnityEngine.Vector3&,System.Single,System.Int32,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_GetRayIntersectionArray_Internal_Injected_mAF80210771484878DF20775EE91ADF1D19CCA99D (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___origin1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___direction2, float ___distance3, int32_t ___layerMask4, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results5, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_point()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RaycastHit2D_get_point_m10D5AB3B26EAE62583BE35CFA13A3E40BDAF30AE (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method);
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_normal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RaycastHit2D_get_normal_m6F8B9F4018EFA126CC33126E8E42B09BB5A82637 (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.RaycastHit2D::get_distance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit2D_get_distance_mA910B45BD349A8F70139F6BC1E686F47F40A1662 (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method);
// System.Single UnityEngine.RaycastHit2D::get_fraction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit2D_get_fraction_mBB22819886A490EA6EC0FA5AA4B546D9A0902CC7 (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method);
// UnityEngine.Collider2D UnityEngine.RaycastHit2D::get_collider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * RaycastHit2D_get_collider_m00F7EC55C36F39E2ED64B31354FB4D9C8938D563 (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method);
// System.Void UnityEngine.Rigidbody2D::AddForce(UnityEngine.Vector2,UnityEngine.ForceMode2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody2D_AddForce_m2360EEDAF4E9F279AAB77DBD785A7F7161865343 (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___force0, int32_t ___mode1, const RuntimeMethod* method);
// System.Void UnityEngine.Rigidbody2D::AddForce_Injected(UnityEngine.Vector2&,UnityEngine.ForceMode2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody2D_AddForce_Injected_m238B89F81818A2A5A0CBD3BADE376151EA7243C7 (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___force0, int32_t ___mode1, const RuntimeMethod* method);
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.Collision2D
IL2CPP_EXTERN_C void Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshal_pinvoke(const Collision2D_t95B5FD331CE95276D3658140844190B485D26564& unmarshaled, Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_pinvoke& marshaled)
{
marshaled.___m_Collider_0 = unmarshaled.get_m_Collider_0();
marshaled.___m_OtherCollider_1 = unmarshaled.get_m_OtherCollider_1();
marshaled.___m_Rigidbody_2 = unmarshaled.get_m_Rigidbody_2();
marshaled.___m_OtherRigidbody_3 = unmarshaled.get_m_OtherRigidbody_3();
marshaled.___m_RelativeVelocity_4 = unmarshaled.get_m_RelativeVelocity_4();
marshaled.___m_Enabled_5 = unmarshaled.get_m_Enabled_5();
marshaled.___m_ContactCount_6 = unmarshaled.get_m_ContactCount_6();
if (unmarshaled.get_m_ReusedContacts_7() != NULL)
{
il2cpp_array_size_t _unmarshaled_m_ReusedContacts_Length = (unmarshaled.get_m_ReusedContacts_7())->max_length;
marshaled.___m_ReusedContacts_7 = il2cpp_codegen_marshal_allocate_array<ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 >(_unmarshaled_m_ReusedContacts_Length);
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_m_ReusedContacts_Length); i++)
{
(marshaled.___m_ReusedContacts_7)[i] = (unmarshaled.get_m_ReusedContacts_7())->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
}
}
else
{
marshaled.___m_ReusedContacts_7 = NULL;
}
if (unmarshaled.get_m_LegacyContacts_8() != NULL)
{
il2cpp_array_size_t _unmarshaled_m_LegacyContacts_Length = (unmarshaled.get_m_LegacyContacts_8())->max_length;
marshaled.___m_LegacyContacts_8 = il2cpp_codegen_marshal_allocate_array<ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 >(_unmarshaled_m_LegacyContacts_Length);
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_m_LegacyContacts_Length); i++)
{
(marshaled.___m_LegacyContacts_8)[i] = (unmarshaled.get_m_LegacyContacts_8())->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
}
}
else
{
marshaled.___m_LegacyContacts_8 = NULL;
}
}
IL2CPP_EXTERN_C void Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshal_pinvoke_back(const Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_pinvoke& marshaled, Collision2D_t95B5FD331CE95276D3658140844190B485D26564& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t unmarshaled_m_Collider_temp_0 = 0;
unmarshaled_m_Collider_temp_0 = marshaled.___m_Collider_0;
unmarshaled.set_m_Collider_0(unmarshaled_m_Collider_temp_0);
int32_t unmarshaled_m_OtherCollider_temp_1 = 0;
unmarshaled_m_OtherCollider_temp_1 = marshaled.___m_OtherCollider_1;
unmarshaled.set_m_OtherCollider_1(unmarshaled_m_OtherCollider_temp_1);
int32_t unmarshaled_m_Rigidbody_temp_2 = 0;
unmarshaled_m_Rigidbody_temp_2 = marshaled.___m_Rigidbody_2;
unmarshaled.set_m_Rigidbody_2(unmarshaled_m_Rigidbody_temp_2);
int32_t unmarshaled_m_OtherRigidbody_temp_3 = 0;
unmarshaled_m_OtherRigidbody_temp_3 = marshaled.___m_OtherRigidbody_3;
unmarshaled.set_m_OtherRigidbody_3(unmarshaled_m_OtherRigidbody_temp_3);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 unmarshaled_m_RelativeVelocity_temp_4;
memset((&unmarshaled_m_RelativeVelocity_temp_4), 0, sizeof(unmarshaled_m_RelativeVelocity_temp_4));
unmarshaled_m_RelativeVelocity_temp_4 = marshaled.___m_RelativeVelocity_4;
unmarshaled.set_m_RelativeVelocity_4(unmarshaled_m_RelativeVelocity_temp_4);
int32_t unmarshaled_m_Enabled_temp_5 = 0;
unmarshaled_m_Enabled_temp_5 = marshaled.___m_Enabled_5;
unmarshaled.set_m_Enabled_5(unmarshaled_m_Enabled_temp_5);
int32_t unmarshaled_m_ContactCount_temp_6 = 0;
unmarshaled_m_ContactCount_temp_6 = marshaled.___m_ContactCount_6;
unmarshaled.set_m_ContactCount_6(unmarshaled_m_ContactCount_temp_6);
if (marshaled.___m_ReusedContacts_7 != NULL)
{
if (unmarshaled.get_m_ReusedContacts_7() == NULL)
{
unmarshaled.set_m_ReusedContacts_7(reinterpret_cast<ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277*>((ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277*)SZArrayNew(ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277_il2cpp_TypeInfo_var, 1)));
}
il2cpp_array_size_t _arrayLength = (unmarshaled.get_m_ReusedContacts_7())->max_length;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++)
{
(unmarshaled.get_m_ReusedContacts_7())->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), (marshaled.___m_ReusedContacts_7)[i]);
}
}
if (marshaled.___m_LegacyContacts_8 != NULL)
{
if (unmarshaled.get_m_LegacyContacts_8() == NULL)
{
unmarshaled.set_m_LegacyContacts_8(reinterpret_cast<ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277*>((ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277*)SZArrayNew(ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277_il2cpp_TypeInfo_var, 1)));
}
il2cpp_array_size_t _arrayLength = (unmarshaled.get_m_LegacyContacts_8())->max_length;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++)
{
(unmarshaled.get_m_LegacyContacts_8())->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), (marshaled.___m_LegacyContacts_8)[i]);
}
}
}
// Conversion method for clean up from marshalling of: UnityEngine.Collision2D
IL2CPP_EXTERN_C void Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshal_pinvoke_cleanup(Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_pinvoke& marshaled)
{
if (marshaled.___m_ReusedContacts_7 != NULL)
{
il2cpp_codegen_marshal_free(marshaled.___m_ReusedContacts_7);
marshaled.___m_ReusedContacts_7 = NULL;
}
if (marshaled.___m_LegacyContacts_8 != NULL)
{
il2cpp_codegen_marshal_free(marshaled.___m_LegacyContacts_8);
marshaled.___m_LegacyContacts_8 = NULL;
}
}
// Conversion methods for marshalling of: UnityEngine.Collision2D
IL2CPP_EXTERN_C void Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshal_com(const Collision2D_t95B5FD331CE95276D3658140844190B485D26564& unmarshaled, Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_com& marshaled)
{
marshaled.___m_Collider_0 = unmarshaled.get_m_Collider_0();
marshaled.___m_OtherCollider_1 = unmarshaled.get_m_OtherCollider_1();
marshaled.___m_Rigidbody_2 = unmarshaled.get_m_Rigidbody_2();
marshaled.___m_OtherRigidbody_3 = unmarshaled.get_m_OtherRigidbody_3();
marshaled.___m_RelativeVelocity_4 = unmarshaled.get_m_RelativeVelocity_4();
marshaled.___m_Enabled_5 = unmarshaled.get_m_Enabled_5();
marshaled.___m_ContactCount_6 = unmarshaled.get_m_ContactCount_6();
if (unmarshaled.get_m_ReusedContacts_7() != NULL)
{
il2cpp_array_size_t _unmarshaled_m_ReusedContacts_Length = (unmarshaled.get_m_ReusedContacts_7())->max_length;
marshaled.___m_ReusedContacts_7 = il2cpp_codegen_marshal_allocate_array<ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 >(_unmarshaled_m_ReusedContacts_Length);
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_m_ReusedContacts_Length); i++)
{
(marshaled.___m_ReusedContacts_7)[i] = (unmarshaled.get_m_ReusedContacts_7())->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
}
}
else
{
marshaled.___m_ReusedContacts_7 = NULL;
}
if (unmarshaled.get_m_LegacyContacts_8() != NULL)
{
il2cpp_array_size_t _unmarshaled_m_LegacyContacts_Length = (unmarshaled.get_m_LegacyContacts_8())->max_length;
marshaled.___m_LegacyContacts_8 = il2cpp_codegen_marshal_allocate_array<ContactPoint2D_t5A4C242ABAE740C565BF01A35CEE279058E66A62 >(_unmarshaled_m_LegacyContacts_Length);
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_m_LegacyContacts_Length); i++)
{
(marshaled.___m_LegacyContacts_8)[i] = (unmarshaled.get_m_LegacyContacts_8())->GetAtUnchecked(static_cast<il2cpp_array_size_t>(i));
}
}
else
{
marshaled.___m_LegacyContacts_8 = NULL;
}
}
IL2CPP_EXTERN_C void Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshal_com_back(const Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_com& marshaled, Collision2D_t95B5FD331CE95276D3658140844190B485D26564& unmarshaled)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
int32_t unmarshaled_m_Collider_temp_0 = 0;
unmarshaled_m_Collider_temp_0 = marshaled.___m_Collider_0;
unmarshaled.set_m_Collider_0(unmarshaled_m_Collider_temp_0);
int32_t unmarshaled_m_OtherCollider_temp_1 = 0;
unmarshaled_m_OtherCollider_temp_1 = marshaled.___m_OtherCollider_1;
unmarshaled.set_m_OtherCollider_1(unmarshaled_m_OtherCollider_temp_1);
int32_t unmarshaled_m_Rigidbody_temp_2 = 0;
unmarshaled_m_Rigidbody_temp_2 = marshaled.___m_Rigidbody_2;
unmarshaled.set_m_Rigidbody_2(unmarshaled_m_Rigidbody_temp_2);
int32_t unmarshaled_m_OtherRigidbody_temp_3 = 0;
unmarshaled_m_OtherRigidbody_temp_3 = marshaled.___m_OtherRigidbody_3;
unmarshaled.set_m_OtherRigidbody_3(unmarshaled_m_OtherRigidbody_temp_3);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 unmarshaled_m_RelativeVelocity_temp_4;
memset((&unmarshaled_m_RelativeVelocity_temp_4), 0, sizeof(unmarshaled_m_RelativeVelocity_temp_4));
unmarshaled_m_RelativeVelocity_temp_4 = marshaled.___m_RelativeVelocity_4;
unmarshaled.set_m_RelativeVelocity_4(unmarshaled_m_RelativeVelocity_temp_4);
int32_t unmarshaled_m_Enabled_temp_5 = 0;
unmarshaled_m_Enabled_temp_5 = marshaled.___m_Enabled_5;
unmarshaled.set_m_Enabled_5(unmarshaled_m_Enabled_temp_5);
int32_t unmarshaled_m_ContactCount_temp_6 = 0;
unmarshaled_m_ContactCount_temp_6 = marshaled.___m_ContactCount_6;
unmarshaled.set_m_ContactCount_6(unmarshaled_m_ContactCount_temp_6);
if (marshaled.___m_ReusedContacts_7 != NULL)
{
if (unmarshaled.get_m_ReusedContacts_7() == NULL)
{
unmarshaled.set_m_ReusedContacts_7(reinterpret_cast<ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277*>((ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277*)SZArrayNew(ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277_il2cpp_TypeInfo_var, 1)));
}
il2cpp_array_size_t _arrayLength = (unmarshaled.get_m_ReusedContacts_7())->max_length;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++)
{
(unmarshaled.get_m_ReusedContacts_7())->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), (marshaled.___m_ReusedContacts_7)[i]);
}
}
if (marshaled.___m_LegacyContacts_8 != NULL)
{
if (unmarshaled.get_m_LegacyContacts_8() == NULL)
{
unmarshaled.set_m_LegacyContacts_8(reinterpret_cast<ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277*>((ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277*)SZArrayNew(ContactPoint2DU5BU5D_t7AE0F95E9BFC90DE859575689AA76B503D433277_il2cpp_TypeInfo_var, 1)));
}
il2cpp_array_size_t _arrayLength = (unmarshaled.get_m_LegacyContacts_8())->max_length;
for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++)
{
(unmarshaled.get_m_LegacyContacts_8())->SetAtUnchecked(static_cast<il2cpp_array_size_t>(i), (marshaled.___m_LegacyContacts_8)[i]);
}
}
}
// Conversion method for clean up from marshalling of: UnityEngine.Collision2D
IL2CPP_EXTERN_C void Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshal_com_cleanup(Collision2D_t95B5FD331CE95276D3658140844190B485D26564_marshaled_com& marshaled)
{
if (marshaled.___m_ReusedContacts_7 != NULL)
{
il2cpp_codegen_marshal_free(marshaled.___m_ReusedContacts_7);
marshaled.___m_ReusedContacts_7 = NULL;
}
if (marshaled.___m_LegacyContacts_8 != NULL)
{
il2cpp_codegen_marshal_free(marshaled.___m_LegacyContacts_8);
marshaled.___m_LegacyContacts_8 = NULL;
}
}
// UnityEngine.Collider2D UnityEngine.Collision2D::get_collider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * Collision2D_get_collider_mA7687EDB0D47A2F211BFE8DB89266B9AA05CFDDD (Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * V_0 = NULL;
{
int32_t L_0 = __this->get_m_Collider_0();
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * L_1;
L_1 = Object_FindObjectFromInstanceID_m0AD731D3F583CBBDC7DC0E08B38F742B447FA44A(L_0, /*hidden argument*/NULL);
V_0 = ((Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 *)IsInstClass((RuntimeObject*)L_1, Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * L_2 = V_0;
return L_2;
}
}
// UnityEngine.Rigidbody2D UnityEngine.Collision2D::get_rigidbody()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * Collision2D_get_rigidbody_m82AF533E110DFDBDED6D6C74EB479902E813D42E (Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * V_0 = NULL;
{
int32_t L_0 = __this->get_m_Rigidbody_2();
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * L_1;
L_1 = Object_FindObjectFromInstanceID_m0AD731D3F583CBBDC7DC0E08B38F742B447FA44A(L_0, /*hidden argument*/NULL);
V_0 = ((Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 *)IsInstSealed((RuntimeObject*)L_1, Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * L_2 = V_0;
return L_2;
}
}
// UnityEngine.GameObject UnityEngine.Collision2D::get_gameObject()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Collision2D_get_gameObject_m6F07B9CA1FAD187933EB6D8E44BD9F870658F89F (Collision2D_t95B5FD331CE95276D3658140844190B485D26564 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * V_0 = NULL;
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * G_B3_0 = NULL;
{
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * L_0;
L_0 = Collision2D_get_rigidbody_m82AF533E110DFDBDED6D6C74EB479902E813D42E(__this, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
bool L_1;
L_1 = Object_op_Inequality_mE1F187520BD83FB7D86A6D850710C4D42B864E90(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL);
if (L_1)
{
goto IL_001c;
}
}
{
Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * L_2;
L_2 = Collision2D_get_collider_mA7687EDB0D47A2F211BFE8DB89266B9AA05CFDDD(__this, /*hidden argument*/NULL);
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3;
L_3 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_2, /*hidden argument*/NULL);
G_B3_0 = L_3;
goto IL_0027;
}
IL_001c:
{
Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * L_4;
L_4 = Collision2D_get_rigidbody_m82AF533E110DFDBDED6D6C74EB479902E813D42E(__this, /*hidden argument*/NULL);
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_5;
L_5 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_4, /*hidden argument*/NULL);
G_B3_0 = L_5;
}
IL_0027:
{
V_0 = G_B3_0;
goto IL_002a;
}
IL_002a:
{
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_6 = V_0;
return L_6;
}
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// Conversion methods for marshalling of: UnityEngine.ContactFilter2D
IL2CPP_EXTERN_C void ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshal_pinvoke(const ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB& unmarshaled, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshaled_pinvoke& marshaled)
{
marshaled.___useTriggers_0 = static_cast<int32_t>(unmarshaled.get_useTriggers_0());
marshaled.___useLayerMask_1 = static_cast<int32_t>(unmarshaled.get_useLayerMask_1());
marshaled.___useDepth_2 = static_cast<int32_t>(unmarshaled.get_useDepth_2());
marshaled.___useOutsideDepth_3 = static_cast<int32_t>(unmarshaled.get_useOutsideDepth_3());
marshaled.___useNormalAngle_4 = static_cast<int32_t>(unmarshaled.get_useNormalAngle_4());
marshaled.___useOutsideNormalAngle_5 = static_cast<int32_t>(unmarshaled.get_useOutsideNormalAngle_5());
marshaled.___layerMask_6 = unmarshaled.get_layerMask_6();
marshaled.___minDepth_7 = unmarshaled.get_minDepth_7();
marshaled.___maxDepth_8 = unmarshaled.get_maxDepth_8();
marshaled.___minNormalAngle_9 = unmarshaled.get_minNormalAngle_9();
marshaled.___maxNormalAngle_10 = unmarshaled.get_maxNormalAngle_10();
}
IL2CPP_EXTERN_C void ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshal_pinvoke_back(const ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshaled_pinvoke& marshaled, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB& unmarshaled)
{
bool unmarshaled_useTriggers_temp_0 = false;
unmarshaled_useTriggers_temp_0 = static_cast<bool>(marshaled.___useTriggers_0);
unmarshaled.set_useTriggers_0(unmarshaled_useTriggers_temp_0);
bool unmarshaled_useLayerMask_temp_1 = false;
unmarshaled_useLayerMask_temp_1 = static_cast<bool>(marshaled.___useLayerMask_1);
unmarshaled.set_useLayerMask_1(unmarshaled_useLayerMask_temp_1);
bool unmarshaled_useDepth_temp_2 = false;
unmarshaled_useDepth_temp_2 = static_cast<bool>(marshaled.___useDepth_2);
unmarshaled.set_useDepth_2(unmarshaled_useDepth_temp_2);
bool unmarshaled_useOutsideDepth_temp_3 = false;
unmarshaled_useOutsideDepth_temp_3 = static_cast<bool>(marshaled.___useOutsideDepth_3);
unmarshaled.set_useOutsideDepth_3(unmarshaled_useOutsideDepth_temp_3);
bool unmarshaled_useNormalAngle_temp_4 = false;
unmarshaled_useNormalAngle_temp_4 = static_cast<bool>(marshaled.___useNormalAngle_4);
unmarshaled.set_useNormalAngle_4(unmarshaled_useNormalAngle_temp_4);
bool unmarshaled_useOutsideNormalAngle_temp_5 = false;
unmarshaled_useOutsideNormalAngle_temp_5 = static_cast<bool>(marshaled.___useOutsideNormalAngle_5);
unmarshaled.set_useOutsideNormalAngle_5(unmarshaled_useOutsideNormalAngle_temp_5);
LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 unmarshaled_layerMask_temp_6;
memset((&unmarshaled_layerMask_temp_6), 0, sizeof(unmarshaled_layerMask_temp_6));
unmarshaled_layerMask_temp_6 = marshaled.___layerMask_6;
unmarshaled.set_layerMask_6(unmarshaled_layerMask_temp_6);
float unmarshaled_minDepth_temp_7 = 0.0f;
unmarshaled_minDepth_temp_7 = marshaled.___minDepth_7;
unmarshaled.set_minDepth_7(unmarshaled_minDepth_temp_7);
float unmarshaled_maxDepth_temp_8 = 0.0f;
unmarshaled_maxDepth_temp_8 = marshaled.___maxDepth_8;
unmarshaled.set_maxDepth_8(unmarshaled_maxDepth_temp_8);
float unmarshaled_minNormalAngle_temp_9 = 0.0f;
unmarshaled_minNormalAngle_temp_9 = marshaled.___minNormalAngle_9;
unmarshaled.set_minNormalAngle_9(unmarshaled_minNormalAngle_temp_9);
float unmarshaled_maxNormalAngle_temp_10 = 0.0f;
unmarshaled_maxNormalAngle_temp_10 = marshaled.___maxNormalAngle_10;
unmarshaled.set_maxNormalAngle_10(unmarshaled_maxNormalAngle_temp_10);
}
// Conversion method for clean up from marshalling of: UnityEngine.ContactFilter2D
IL2CPP_EXTERN_C void ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshal_pinvoke_cleanup(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshaled_pinvoke& marshaled)
{
}
// Conversion methods for marshalling of: UnityEngine.ContactFilter2D
IL2CPP_EXTERN_C void ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshal_com(const ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB& unmarshaled, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshaled_com& marshaled)
{
marshaled.___useTriggers_0 = static_cast<int32_t>(unmarshaled.get_useTriggers_0());
marshaled.___useLayerMask_1 = static_cast<int32_t>(unmarshaled.get_useLayerMask_1());
marshaled.___useDepth_2 = static_cast<int32_t>(unmarshaled.get_useDepth_2());
marshaled.___useOutsideDepth_3 = static_cast<int32_t>(unmarshaled.get_useOutsideDepth_3());
marshaled.___useNormalAngle_4 = static_cast<int32_t>(unmarshaled.get_useNormalAngle_4());
marshaled.___useOutsideNormalAngle_5 = static_cast<int32_t>(unmarshaled.get_useOutsideNormalAngle_5());
marshaled.___layerMask_6 = unmarshaled.get_layerMask_6();
marshaled.___minDepth_7 = unmarshaled.get_minDepth_7();
marshaled.___maxDepth_8 = unmarshaled.get_maxDepth_8();
marshaled.___minNormalAngle_9 = unmarshaled.get_minNormalAngle_9();
marshaled.___maxNormalAngle_10 = unmarshaled.get_maxNormalAngle_10();
}
IL2CPP_EXTERN_C void ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshal_com_back(const ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshaled_com& marshaled, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB& unmarshaled)
{
bool unmarshaled_useTriggers_temp_0 = false;
unmarshaled_useTriggers_temp_0 = static_cast<bool>(marshaled.___useTriggers_0);
unmarshaled.set_useTriggers_0(unmarshaled_useTriggers_temp_0);
bool unmarshaled_useLayerMask_temp_1 = false;
unmarshaled_useLayerMask_temp_1 = static_cast<bool>(marshaled.___useLayerMask_1);
unmarshaled.set_useLayerMask_1(unmarshaled_useLayerMask_temp_1);
bool unmarshaled_useDepth_temp_2 = false;
unmarshaled_useDepth_temp_2 = static_cast<bool>(marshaled.___useDepth_2);
unmarshaled.set_useDepth_2(unmarshaled_useDepth_temp_2);
bool unmarshaled_useOutsideDepth_temp_3 = false;
unmarshaled_useOutsideDepth_temp_3 = static_cast<bool>(marshaled.___useOutsideDepth_3);
unmarshaled.set_useOutsideDepth_3(unmarshaled_useOutsideDepth_temp_3);
bool unmarshaled_useNormalAngle_temp_4 = false;
unmarshaled_useNormalAngle_temp_4 = static_cast<bool>(marshaled.___useNormalAngle_4);
unmarshaled.set_useNormalAngle_4(unmarshaled_useNormalAngle_temp_4);
bool unmarshaled_useOutsideNormalAngle_temp_5 = false;
unmarshaled_useOutsideNormalAngle_temp_5 = static_cast<bool>(marshaled.___useOutsideNormalAngle_5);
unmarshaled.set_useOutsideNormalAngle_5(unmarshaled_useOutsideNormalAngle_temp_5);
LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 unmarshaled_layerMask_temp_6;
memset((&unmarshaled_layerMask_temp_6), 0, sizeof(unmarshaled_layerMask_temp_6));
unmarshaled_layerMask_temp_6 = marshaled.___layerMask_6;
unmarshaled.set_layerMask_6(unmarshaled_layerMask_temp_6);
float unmarshaled_minDepth_temp_7 = 0.0f;
unmarshaled_minDepth_temp_7 = marshaled.___minDepth_7;
unmarshaled.set_minDepth_7(unmarshaled_minDepth_temp_7);
float unmarshaled_maxDepth_temp_8 = 0.0f;
unmarshaled_maxDepth_temp_8 = marshaled.___maxDepth_8;
unmarshaled.set_maxDepth_8(unmarshaled_maxDepth_temp_8);
float unmarshaled_minNormalAngle_temp_9 = 0.0f;
unmarshaled_minNormalAngle_temp_9 = marshaled.___minNormalAngle_9;
unmarshaled.set_minNormalAngle_9(unmarshaled_minNormalAngle_temp_9);
float unmarshaled_maxNormalAngle_temp_10 = 0.0f;
unmarshaled_maxNormalAngle_temp_10 = marshaled.___maxNormalAngle_10;
unmarshaled.set_maxNormalAngle_10(unmarshaled_maxNormalAngle_temp_10);
}
// Conversion method for clean up from marshalling of: UnityEngine.ContactFilter2D
IL2CPP_EXTERN_C void ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshal_com_cleanup(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB_marshaled_com& marshaled)
{
}
// System.Void UnityEngine.ContactFilter2D::CheckConsistency()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContactFilter2D_CheckConsistency_m4B6DAA0197DC017E3B7A8B8F661729431504C5D1 (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * __this, const RuntimeMethod* method)
{
{
ContactFilter2D_CheckConsistency_Injected_mFF4A5178E9F60CCF59DDE6B6F0013D182294573E((ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *)__this, /*hidden argument*/NULL);
return;
}
}
IL2CPP_EXTERN_C void ContactFilter2D_CheckConsistency_m4B6DAA0197DC017E3B7A8B8F661729431504C5D1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * _thisAdjusted = reinterpret_cast<ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *>(__this + _offset);
ContactFilter2D_CheckConsistency_m4B6DAA0197DC017E3B7A8B8F661729431504C5D1(_thisAdjusted, method);
}
// System.Void UnityEngine.ContactFilter2D::SetLayerMask(UnityEngine.LayerMask)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContactFilter2D_SetLayerMask_m925C98BC2EEAA78349B3ED3654BC3C362743BBDE (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * __this, LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___layerMask0, const RuntimeMethod* method)
{
{
LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 L_0 = ___layerMask0;
__this->set_layerMask_6(L_0);
__this->set_useLayerMask_1((bool)1);
return;
}
}
IL2CPP_EXTERN_C void ContactFilter2D_SetLayerMask_m925C98BC2EEAA78349B3ED3654BC3C362743BBDE_AdjustorThunk (RuntimeObject * __this, LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___layerMask0, const RuntimeMethod* method)
{
int32_t _offset = 1;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * _thisAdjusted = reinterpret_cast<ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *>(__this + _offset);
ContactFilter2D_SetLayerMask_m925C98BC2EEAA78349B3ED3654BC3C362743BBDE(_thisAdjusted, ___layerMask0, method);
}
// System.Void UnityEngine.ContactFilter2D::SetDepth(System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContactFilter2D_SetDepth_m63872B3F8BBDB962AF44D064BA328599C74D840F (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * __this, float ___minDepth0, float ___maxDepth1, const RuntimeMethod* method)
{
{
float L_0 = ___minDepth0;
__this->set_minDepth_7(L_0);
float L_1 = ___maxDepth1;
__this->set_maxDepth_8(L_1);
__this->set_useDepth_2((bool)1);
ContactFilter2D_CheckConsistency_m4B6DAA0197DC017E3B7A8B8F661729431504C5D1((ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *)__this, /*hidden argument*/NULL);
return;
}
}
IL2CPP_EXTERN_C void ContactFilter2D_SetDepth_m63872B3F8BBDB962AF44D064BA328599C74D840F_AdjustorThunk (RuntimeObject * __this, float ___minDepth0, float ___maxDepth1, const RuntimeMethod* method)
{
int32_t _offset = 1;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * _thisAdjusted = reinterpret_cast<ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *>(__this + _offset);
ContactFilter2D_SetDepth_m63872B3F8BBDB962AF44D064BA328599C74D840F(_thisAdjusted, ___minDepth0, ___maxDepth1, method);
}
// UnityEngine.ContactFilter2D UnityEngine.ContactFilter2D::CreateLegacyFilter(System.Int32,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ContactFilter2D_CreateLegacyFilter_mA293F293D35236A5564D57574012590BD6DF385A (int32_t ___layerMask0, float ___minDepth1, float ___maxDepth2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB V_0;
memset((&V_0), 0, sizeof(V_0));
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB V_1;
memset((&V_1), 0, sizeof(V_1));
{
il2cpp_codegen_initobj((&V_0), sizeof(ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ));
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
bool L_0;
L_0 = Physics2D_get_queriesHitTriggers_mA735707551D682297446435DFC7963E97F562E44(/*hidden argument*/NULL);
(&V_0)->set_useTriggers_0(L_0);
int32_t L_1 = ___layerMask0;
LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 L_2;
L_2 = LayerMask_op_Implicit_mC7EE32122D2A4786D3C00B93E41604B71BF1397C(L_1, /*hidden argument*/NULL);
ContactFilter2D_SetLayerMask_m925C98BC2EEAA78349B3ED3654BC3C362743BBDE((ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *)(&V_0), L_2, /*hidden argument*/NULL);
float L_3 = ___minDepth1;
float L_4 = ___maxDepth2;
ContactFilter2D_SetDepth_m63872B3F8BBDB962AF44D064BA328599C74D840F((ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *)(&V_0), L_3, L_4, /*hidden argument*/NULL);
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_5 = V_0;
V_1 = L_5;
goto IL_0031;
}
IL_0031:
{
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_6 = V_1;
return L_6;
}
}
// System.Void UnityEngine.ContactFilter2D::CheckConsistency_Injected(UnityEngine.ContactFilter2D&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContactFilter2D_CheckConsistency_Injected_mFF4A5178E9F60CCF59DDE6B6F0013D182294573E (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * ____unity_self0, const RuntimeMethod* method)
{
typedef void (*ContactFilter2D_CheckConsistency_Injected_mFF4A5178E9F60CCF59DDE6B6F0013D182294573E_ftn) (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *);
static ContactFilter2D_CheckConsistency_Injected_mFF4A5178E9F60CCF59DDE6B6F0013D182294573E_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (ContactFilter2D_CheckConsistency_Injected_mFF4A5178E9F60CCF59DDE6B6F0013D182294573E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.ContactFilter2D::CheckConsistency_Injected(UnityEngine.ContactFilter2D&)");
_il2cpp_icall_func(____unity_self0);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.PhysicsScene2D UnityEngine.Physics2D::get_defaultPhysicsScene()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83 (const RuntimeMethod* method)
{
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_1;
memset((&V_1), 0, sizeof(V_1));
{
il2cpp_codegen_initobj((&V_0), sizeof(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ));
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0 = V_0;
V_1 = L_0;
goto IL_000d;
}
IL_000d:
{
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_1 = V_1;
return L_1;
}
}
// System.Boolean UnityEngine.Physics2D::get_queriesHitTriggers()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Physics2D_get_queriesHitTriggers_mA735707551D682297446435DFC7963E97F562E44 (const RuntimeMethod* method)
{
typedef bool (*Physics2D_get_queriesHitTriggers_mA735707551D682297446435DFC7963E97F562E44_ftn) ();
static Physics2D_get_queriesHitTriggers_mA735707551D682297446435DFC7963E97F562E44_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Physics2D_get_queriesHitTriggers_mA735707551D682297446435DFC7963E97F562E44_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Physics2D::get_queriesHitTriggers()");
bool icallRetVal = _il2cpp_icall_func();
return icallRetVal;
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 Physics2D_Raycast_m9DF2A5F7852F9C736CA4F1BABA52DC0AB24ED983 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 V_1;
memset((&V_1), 0, sizeof(V_1));
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_0 = L_0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___direction1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_3;
L_3 = PhysicsScene2D_Raycast_m22F55CAAA1B34A02757A5C6E2B573F6464B32723((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_0), L_1, L_2, (std::numeric_limits<float>::infinity()), ((int32_t)-5), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_001a;
}
IL_001a:
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_4 = V_1;
return L_4;
}
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 Physics2D_Raycast_m684AD52FAD1E3BF5AE53F8E48AF92202114053C2 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 V_1;
memset((&V_1), 0, sizeof(V_1));
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_0 = L_0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___direction1;
float L_3 = ___distance2;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_4;
L_4 = PhysicsScene2D_Raycast_m22F55CAAA1B34A02757A5C6E2B573F6464B32723((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_0), L_1, L_2, L_3, ((int32_t)-5), /*hidden argument*/NULL);
V_1 = L_4;
goto IL_0016;
}
IL_0016:
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_5 = V_1;
return L_5;
}
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 Physics2D_Raycast_mE1F849D695803D7409790B7C736D00FD9724F65A (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, int32_t ___layerMask3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB V_0;
memset((&V_0), 0, sizeof(V_0));
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_1;
memset((&V_1), 0, sizeof(V_1));
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___layerMask3;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_1;
L_1 = ContactFilter2D_CreateLegacyFilter_mA293F293D35236A5564D57574012590BD6DF385A(L_0, (-std::numeric_limits<float>::infinity()), (std::numeric_limits<float>::infinity()), /*hidden argument*/NULL);
V_0 = L_1;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_2;
L_2 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_1 = L_2;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = ___direction1;
float L_5 = ___distance2;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_6 = V_0;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_7;
L_7 = PhysicsScene2D_Raycast_m167DAEC271F46133013EB0AAF2C7807064EBB3F2((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_1), L_3, L_4, L_5, L_6, /*hidden argument*/NULL);
V_2 = L_7;
goto IL_0026;
}
IL_0026:
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_8 = V_2;
return L_8;
}
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 Physics2D_Raycast_mCA2AD72EC8244B2208955E072BD0B619F9376143 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, int32_t ___layerMask3, float ___minDepth4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB V_0;
memset((&V_0), 0, sizeof(V_0));
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_1;
memset((&V_1), 0, sizeof(V_1));
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___layerMask3;
float L_1 = ___minDepth4;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_2;
L_2 = ContactFilter2D_CreateLegacyFilter_mA293F293D35236A5564D57574012590BD6DF385A(L_0, L_1, (std::numeric_limits<float>::infinity()), /*hidden argument*/NULL);
V_0 = L_2;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_3;
L_3 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_1 = L_3;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_5 = ___direction1;
float L_6 = ___distance2;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_7 = V_0;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_8;
L_8 = PhysicsScene2D_Raycast_m167DAEC271F46133013EB0AAF2C7807064EBB3F2((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_1), L_4, L_5, L_6, L_7, /*hidden argument*/NULL);
V_2 = L_8;
goto IL_0023;
}
IL_0023:
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_9 = V_2;
return L_9;
}
}
// UnityEngine.RaycastHit2D UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32,System.Single,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 Physics2D_Raycast_mF01414D1A1EF5BA1B012AB14583518BAD0A65CB0 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, int32_t ___layerMask3, float ___minDepth4, float ___maxDepth5, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB V_0;
memset((&V_0), 0, sizeof(V_0));
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_1;
memset((&V_1), 0, sizeof(V_1));
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 V_2;
memset((&V_2), 0, sizeof(V_2));
{
int32_t L_0 = ___layerMask3;
float L_1 = ___minDepth4;
float L_2 = ___maxDepth5;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_3;
L_3 = ContactFilter2D_CreateLegacyFilter_mA293F293D35236A5564D57574012590BD6DF385A(L_0, L_1, L_2, /*hidden argument*/NULL);
V_0 = L_3;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_4;
L_4 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_1 = L_4;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_5 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_6 = ___direction1;
float L_7 = ___distance2;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_8 = V_0;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_9;
L_9 = PhysicsScene2D_Raycast_m167DAEC271F46133013EB0AAF2C7807064EBB3F2((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_1), L_5, L_6, L_7, L_8, /*hidden argument*/NULL);
V_2 = L_9;
goto IL_0020;
}
IL_0020:
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_10 = V_2;
return L_10;
}
}
// System.Int32 UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Physics2D_Raycast_mEB1CCF6AF3D9FC18576F70C95E2FD82C8CF840A4 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter2, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_0 = L_0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___direction1;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_3 = ___contactFilter2;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_4 = ___results3;
int32_t L_5;
L_5 = PhysicsScene2D_Raycast_m3B011D4A6CA691739178E253665799A7AD0CB423((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_0), L_1, L_2, (std::numeric_limits<float>::infinity()), L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
goto IL_001a;
}
IL_001a:
{
int32_t L_6 = V_1;
return L_6;
}
}
// System.Int32 UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[],System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Physics2D_Raycast_m007A72E26CA79C348434B46F9D04DD915CE6CE67 (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter2, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results3, float ___distance4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_0 = L_0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___direction1;
float L_3 = ___distance4;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_4 = ___contactFilter2;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_5 = ___results3;
int32_t L_6;
L_6 = PhysicsScene2D_Raycast_m3B011D4A6CA691739178E253665799A7AD0CB423((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_0), L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_1 = L_6;
goto IL_0017;
}
IL_0017:
{
int32_t L_7 = V_1;
return L_7;
}
}
// System.Int32 UnityEngine.Physics2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,UnityEngine.ContactFilter2D,System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Physics2D_Raycast_m2A909F3065F530329891F5B8D1B80202300786AA (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter2, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * ___results3, float ___distance4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_0 = L_0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___direction1;
float L_3 = ___distance4;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_4 = ___contactFilter2;
List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * L_5 = ___results3;
int32_t L_6;
L_6 = PhysicsScene2D_Raycast_m6FB2BBC4E3BE53114D7F6EFA975F5AF703ADCDC0((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_0), L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_1 = L_6;
goto IL_0017;
}
IL_0017:
{
int32_t L_7 = V_1;
return L_7;
}
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll(UnityEngine.Ray)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* Physics2D_GetRayIntersectionAll_m233595BB5435D09B5F38773D14C01C9A3BD8C04D (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1;
L_1 = Ray_get_origin_m0C1B2BFF99CDF5231AC29AC031C161F55B53C1D0((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&___ray0), /*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2;
L_2 = Ray_get_direction_m2B31F86F19B64474A901B28D3808011AE7A13EFC((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&___ray0), /*hidden argument*/NULL);
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_3;
L_3 = Physics2D_GetRayIntersectionAll_Internal_mA2BD81667462FF3C9E67A7E0445CC874009CF337(L_0, L_1, L_2, (std::numeric_limits<float>::infinity()), ((int32_t)-5), /*hidden argument*/NULL);
V_0 = L_3;
goto IL_0023;
}
IL_0023:
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_4 = V_0;
return L_4;
}
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll(UnityEngine.Ray,System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* Physics2D_GetRayIntersectionAll_m496B28AE025E60DE4DA540159C10AEBFE6B1A28A (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, float ___distance1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1;
L_1 = Ray_get_origin_m0C1B2BFF99CDF5231AC29AC031C161F55B53C1D0((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&___ray0), /*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2;
L_2 = Ray_get_direction_m2B31F86F19B64474A901B28D3808011AE7A13EFC((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&___ray0), /*hidden argument*/NULL);
float L_3 = ___distance1;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_4;
L_4 = Physics2D_GetRayIntersectionAll_Internal_mA2BD81667462FF3C9E67A7E0445CC874009CF337(L_0, L_1, L_2, L_3, ((int32_t)-5), /*hidden argument*/NULL);
V_0 = L_4;
goto IL_001f;
}
IL_001f:
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_5 = V_0;
return L_5;
}
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll(UnityEngine.Ray,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* Physics2D_GetRayIntersectionAll_m71FB456B2AA9C909119CF5399AD8F4CB6EDED7F2 (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, float ___distance1, int32_t ___layerMask2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* V_0 = NULL;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1;
L_1 = Ray_get_origin_m0C1B2BFF99CDF5231AC29AC031C161F55B53C1D0((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&___ray0), /*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2;
L_2 = Ray_get_direction_m2B31F86F19B64474A901B28D3808011AE7A13EFC((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&___ray0), /*hidden argument*/NULL);
float L_3 = ___distance1;
int32_t L_4 = ___layerMask2;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_5;
L_5 = Physics2D_GetRayIntersectionAll_Internal_mA2BD81667462FF3C9E67A7E0445CC874009CF337(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_001e;
}
IL_001e:
{
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_6 = V_0;
return L_6;
}
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* Physics2D_GetRayIntersectionAll_Internal_mA2BD81667462FF3C9E67A7E0445CC874009CF337 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___origin1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___direction2, float ___distance3, int32_t ___layerMask4, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
float L_0 = ___distance3;
int32_t L_1 = ___layerMask4;
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_2;
L_2 = Physics2D_GetRayIntersectionAll_Internal_Injected_m87038811DE210AFEEAD218D82268AF482BBD24C7((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&___physicsScene0), (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&___origin1), (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&___direction2), L_0, L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 UnityEngine.Physics2D::GetRayIntersectionNonAlloc(UnityEngine.Ray,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Physics2D_GetRayIntersectionNonAlloc_m5E63F05DC3EE41BEE3B869614CEE27DA4A0340F4 (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results1, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_0 = L_0;
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_1 = ___ray0;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_2 = ___results1;
int32_t L_3;
L_3 = PhysicsScene2D_GetRayIntersection_mB6F14C8BB95609094BE9BDB218483EAAC4117B5A((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_0), L_1, (std::numeric_limits<float>::infinity()), L_2, ((int32_t)-5), /*hidden argument*/NULL);
V_1 = L_3;
goto IL_001a;
}
IL_001a:
{
int32_t L_4 = V_1;
return L_4;
}
}
// System.Int32 UnityEngine.Physics2D::GetRayIntersectionNonAlloc(UnityEngine.Ray,UnityEngine.RaycastHit2D[],System.Single)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Physics2D_GetRayIntersectionNonAlloc_m866F0C065F53C6CDD6BDD8EEB9CE1EB213763548 (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results1, float ___distance2, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_0 = L_0;
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_1 = ___ray0;
float L_2 = ___distance2;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_3 = ___results1;
int32_t L_4;
L_4 = PhysicsScene2D_GetRayIntersection_mB6F14C8BB95609094BE9BDB218483EAAC4117B5A((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_0), L_1, L_2, L_3, ((int32_t)-5), /*hidden argument*/NULL);
V_1 = L_4;
goto IL_0016;
}
IL_0016:
{
int32_t L_5 = V_1;
return L_5;
}
}
// System.Int32 UnityEngine.Physics2D::GetRayIntersectionNonAlloc(UnityEngine.Ray,UnityEngine.RaycastHit2D[],System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Physics2D_GetRayIntersectionNonAlloc_m8EED1B31A7E557C3D7B6C67D2D3AD77A8BA31B5F (Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results1, float ___distance2, int32_t ___layerMask3, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
int32_t V_1 = 0;
{
IL2CPP_RUNTIME_CLASS_INIT(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0;
L_0 = Physics2D_get_defaultPhysicsScene_m067B3BAED5AD5E0E71C1462480BFC107ED901A83(/*hidden argument*/NULL);
V_0 = L_0;
Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 L_1 = ___ray0;
float L_2 = ___distance2;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_3 = ___results1;
int32_t L_4 = ___layerMask3;
int32_t L_5;
L_5 = PhysicsScene2D_GetRayIntersection_mB6F14C8BB95609094BE9BDB218483EAAC4117B5A((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&V_0), L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
V_1 = L_5;
goto IL_0015;
}
IL_0015:
{
int32_t L_6 = V_1;
return L_6;
}
}
// System.Void UnityEngine.Physics2D::.cctor()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Physics2D__cctor_m2C742CE7156A78480229016DEEF403B45E4DAFEE (const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m42BFD7A7FC288F4627CD724F28FF73E9BC0FE7AB_RuntimeMethod_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
{
List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 * L_0 = (List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1 *)il2cpp_codegen_object_new(List_1_t61A36FEC0532A7CC39DB1770BFA5C1967348FAC1_il2cpp_TypeInfo_var);
List_1__ctor_m42BFD7A7FC288F4627CD724F28FF73E9BC0FE7AB(L_0, /*hidden argument*/List_1__ctor_m42BFD7A7FC288F4627CD724F28FF73E9BC0FE7AB_RuntimeMethod_var);
((Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_StaticFields*)il2cpp_codegen_static_fields_for(Physics2D_t1C1ECE6BA2F958C5C1440DDB9E9A5DAAA8F86D92_il2cpp_TypeInfo_var))->set_m_LastDisabledRigidbody2D_0(L_0);
return;
}
}
// UnityEngine.RaycastHit2D[] UnityEngine.Physics2D::GetRayIntersectionAll_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector3&,UnityEngine.Vector3&,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* Physics2D_GetRayIntersectionAll_Internal_Injected_m87038811DE210AFEEAD218D82268AF482BBD24C7 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___origin1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___direction2, float ___distance3, int32_t ___layerMask4, const RuntimeMethod* method)
{
typedef RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* (*Physics2D_GetRayIntersectionAll_Internal_Injected_m87038811DE210AFEEAD218D82268AF482BBD24C7_ftn) (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *, float, int32_t);
static Physics2D_GetRayIntersectionAll_Internal_Injected_m87038811DE210AFEEAD218D82268AF482BBD24C7_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Physics2D_GetRayIntersectionAll_Internal_Injected_m87038811DE210AFEEAD218D82268AF482BBD24C7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Physics2D::GetRayIntersectionAll_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector3&,UnityEngine.Vector3&,System.Single,System.Int32)");
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* icallRetVal = _il2cpp_icall_func(___physicsScene0, ___origin1, ___direction2, ___distance3, ___layerMask4);
return icallRetVal;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.String UnityEngine.PhysicsScene2D::ToString()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PhysicsScene2D_ToString_mDA6F499BD218AA31A450D918BB6C1890A9CE1109 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral21ACE806CE655297BC379B3AD17E97F0A68B6AEC);
s_Il2CppMethodInitialized = true;
}
String_t* V_0 = NULL;
{
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_0 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = L_0;
int32_t L_2 = __this->get_m_Handle_0();
int32_t L_3 = L_2;
RuntimeObject * L_4 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_3);
ArrayElementTypeCheck (L_1, L_4);
(L_1)->SetAtUnchecked(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)L_4);
String_t* L_5;
L_5 = UnityString_Format_m7A07C068ED408DD06F634070770FB55F13AA4EC9(_stringLiteral21ACE806CE655297BC379B3AD17E97F0A68B6AEC, L_1, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0022;
}
IL_0022:
{
String_t* L_6 = V_0;
return L_6;
}
}
IL2CPP_EXTERN_C String_t* PhysicsScene2D_ToString_mDA6F499BD218AA31A450D918BB6C1890A9CE1109_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
String_t* _returnValue;
_returnValue = PhysicsScene2D_ToString_mDA6F499BD218AA31A450D918BB6C1890A9CE1109(_thisAdjusted, method);
return _returnValue;
}
// System.Int32 UnityEngine.PhysicsScene2D::GetHashCode()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_GetHashCode_m4B5D8DCBA0AD6E5767C4D7A6AD6BC789EB19C8F5 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
int32_t L_0 = __this->get_m_Handle_0();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
int32_t L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C int32_t PhysicsScene2D_GetHashCode_m4B5D8DCBA0AD6E5767C4D7A6AD6BC789EB19C8F5_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
int32_t _returnValue;
_returnValue = PhysicsScene2D_GetHashCode_m4B5D8DCBA0AD6E5767C4D7A6AD6BC789EB19C8F5(_thisAdjusted, method);
return _returnValue;
}
// System.Boolean UnityEngine.PhysicsScene2D::Equals(System.Object)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene2D_Equals_m0C61F175C3B1BB308ADBC2AB323CEC45D1B5E99C (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 V_0;
memset((&V_0), 0, sizeof(V_0));
bool V_1 = false;
bool V_2 = false;
{
RuntimeObject * L_0 = ___other0;
V_1 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject *)((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject *)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
bool L_1 = V_1;
if (!L_1)
{
goto IL_0015;
}
}
{
V_2 = (bool)0;
goto IL_002d;
}
IL_0015:
{
RuntimeObject * L_2 = ___other0;
V_0 = ((*(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)UnBox(L_2, PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48_il2cpp_TypeInfo_var))));
int32_t L_3 = __this->get_m_Handle_0();
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_4 = V_0;
int32_t L_5 = L_4.get_m_Handle_0();
V_2 = (bool)((((int32_t)L_3) == ((int32_t)L_5))? 1 : 0);
goto IL_002d;
}
IL_002d:
{
bool L_6 = V_2;
return L_6;
}
}
IL2CPP_EXTERN_C bool PhysicsScene2D_Equals_m0C61F175C3B1BB308ADBC2AB323CEC45D1B5E99C_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
bool _returnValue;
_returnValue = PhysicsScene2D_Equals_m0C61F175C3B1BB308ADBC2AB323CEC45D1B5E99C(_thisAdjusted, ___other0, method);
return _returnValue;
}
// System.Boolean UnityEngine.PhysicsScene2D::Equals(UnityEngine.PhysicsScene2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PhysicsScene2D_Equals_m581586F404E7A3BD3B6F0A05362974A6B523A2DA (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___other0, const RuntimeMethod* method)
{
bool V_0 = false;
{
int32_t L_0 = __this->get_m_Handle_0();
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_1 = ___other0;
int32_t L_2 = L_1.get_m_Handle_0();
V_0 = (bool)((((int32_t)L_0) == ((int32_t)L_2))? 1 : 0);
goto IL_0012;
}
IL_0012:
{
bool L_3 = V_0;
return L_3;
}
}
IL2CPP_EXTERN_C bool PhysicsScene2D_Equals_m581586F404E7A3BD3B6F0A05362974A6B523A2DA_AdjustorThunk (RuntimeObject * __this, PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___other0, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
bool _returnValue;
_returnValue = PhysicsScene2D_Equals_m581586F404E7A3BD3B6F0A05362974A6B523A2DA(_thisAdjusted, ___other0, method);
return _returnValue;
}
// UnityEngine.RaycastHit2D UnityEngine.PhysicsScene2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 PhysicsScene2D_Raycast_m22F55CAAA1B34A02757A5C6E2B573F6464B32723 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, int32_t ___layerMask3, const RuntimeMethod* method)
{
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB V_0;
memset((&V_0), 0, sizeof(V_0));
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 V_1;
memset((&V_1), 0, sizeof(V_1));
{
int32_t L_0 = ___layerMask3;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_1;
L_1 = ContactFilter2D_CreateLegacyFilter_mA293F293D35236A5564D57574012590BD6DF385A(L_0, (-std::numeric_limits<float>::infinity()), (std::numeric_limits<float>::infinity()), /*hidden argument*/NULL);
V_0 = L_1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_2 = (*(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)__this);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_3 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_4 = ___direction1;
float L_5 = ___distance2;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_6 = V_0;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_7;
L_7 = PhysicsScene2D_Raycast_Internal_m933E452FA1E36FFC87A0EC896EE4D36859935C91(L_2, L_3, L_4, L_5, L_6, /*hidden argument*/NULL);
V_1 = L_7;
goto IL_0025;
}
IL_0025:
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_8 = V_1;
return L_8;
}
}
IL2CPP_EXTERN_C RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 PhysicsScene2D_Raycast_m22F55CAAA1B34A02757A5C6E2B573F6464B32723_AdjustorThunk (RuntimeObject * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, int32_t ___layerMask3, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 _returnValue;
_returnValue = PhysicsScene2D_Raycast_m22F55CAAA1B34A02757A5C6E2B573F6464B32723(_thisAdjusted, ___origin0, ___direction1, ___distance2, ___layerMask3, method);
return _returnValue;
}
// UnityEngine.RaycastHit2D UnityEngine.PhysicsScene2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 PhysicsScene2D_Raycast_m167DAEC271F46133013EB0AAF2C7807064EBB3F2 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, const RuntimeMethod* method)
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0 = (*(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)__this);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___direction1;
float L_3 = ___distance2;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_4 = ___contactFilter3;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_5;
L_5 = PhysicsScene2D_Raycast_Internal_m933E452FA1E36FFC87A0EC896EE4D36859935C91(L_0, L_1, L_2, L_3, L_4, /*hidden argument*/NULL);
V_0 = L_5;
goto IL_0014;
}
IL_0014:
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_6 = V_0;
return L_6;
}
}
IL2CPP_EXTERN_C RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 PhysicsScene2D_Raycast_m167DAEC271F46133013EB0AAF2C7807064EBB3F2_AdjustorThunk (RuntimeObject * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 _returnValue;
_returnValue = PhysicsScene2D_Raycast_m167DAEC271F46133013EB0AAF2C7807064EBB3F2(_thisAdjusted, ___origin0, ___direction1, ___distance2, ___contactFilter3, method);
return _returnValue;
}
// UnityEngine.RaycastHit2D UnityEngine.PhysicsScene2D::Raycast_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 PhysicsScene2D_Raycast_Internal_m933E452FA1E36FFC87A0EC896EE4D36859935C91 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter4, const RuntimeMethod* method)
{
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 V_0;
memset((&V_0), 0, sizeof(V_0));
{
float L_0 = ___distance3;
PhysicsScene2D_Raycast_Internal_Injected_m6CEAF96A977FEDD926FBAAA74FFA2D571D75C422((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&___physicsScene0), (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___origin1), (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___direction2), L_0, (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *)(&___contactFilter4), (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *)(&V_0), /*hidden argument*/NULL);
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 L_1 = V_0;
return L_1;
}
}
// System.Int32 UnityEngine.PhysicsScene2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_Raycast_m3B011D4A6CA691739178E253665799A7AD0CB423 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0 = (*(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)__this);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___direction1;
float L_3 = ___distance2;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_4 = ___contactFilter3;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_5 = ___results4;
int32_t L_6;
L_6 = PhysicsScene2D_RaycastArray_Internal_mB02544544B0F0AA17972D1D9ABC7CA0171537D9D(L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_0016;
}
IL_0016:
{
int32_t L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C int32_t PhysicsScene2D_Raycast_m3B011D4A6CA691739178E253665799A7AD0CB423_AdjustorThunk (RuntimeObject * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results4, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
int32_t _returnValue;
_returnValue = PhysicsScene2D_Raycast_m3B011D4A6CA691739178E253665799A7AD0CB423(_thisAdjusted, ___origin0, ___direction1, ___distance2, ___contactFilter3, ___results4, method);
return _returnValue;
}
// System.Int32 UnityEngine.PhysicsScene2D::RaycastArray_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_RaycastArray_Internal_mB02544544B0F0AA17972D1D9ABC7CA0171537D9D (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter4, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results5, const RuntimeMethod* method)
{
{
float L_0 = ___distance3;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_1 = ___results5;
int32_t L_2;
L_2 = PhysicsScene2D_RaycastArray_Internal_Injected_mE7F2FCB47E154BB4062BCEFECD74385275109D76((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&___physicsScene0), (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___origin1), (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___direction2), L_0, (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *)(&___contactFilter4), L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 UnityEngine.PhysicsScene2D::Raycast(UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_Raycast_m6FB2BBC4E3BE53114D7F6EFA975F5AF703ADCDC0 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * ___results4, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0 = (*(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)__this);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = ___origin0;
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_2 = ___direction1;
float L_3 = ___distance2;
ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB L_4 = ___contactFilter3;
List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * L_5 = ___results4;
int32_t L_6;
L_6 = PhysicsScene2D_RaycastList_Internal_m10A64653E2C399B6523B2D04B1E1C8626BF68B24(L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_0016;
}
IL_0016:
{
int32_t L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C int32_t PhysicsScene2D_Raycast_m6FB2BBC4E3BE53114D7F6EFA975F5AF703ADCDC0_AdjustorThunk (RuntimeObject * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction1, float ___distance2, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter3, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * ___results4, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
int32_t _returnValue;
_returnValue = PhysicsScene2D_Raycast_m6FB2BBC4E3BE53114D7F6EFA975F5AF703ADCDC0(_thisAdjusted, ___origin0, ___direction1, ___distance2, ___contactFilter3, ___results4, method);
return _returnValue;
}
// System.Int32 UnityEngine.PhysicsScene2D::RaycastList_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector2,UnityEngine.Vector2,System.Single,UnityEngine.ContactFilter2D,System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_RaycastList_Internal_m10A64653E2C399B6523B2D04B1E1C8626BF68B24 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB ___contactFilter4, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * ___results5, const RuntimeMethod* method)
{
{
float L_0 = ___distance3;
List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * L_1 = ___results5;
int32_t L_2;
L_2 = PhysicsScene2D_RaycastList_Internal_Injected_m0866D19E97A4D9267F9E91C3CE33B7D34AB2DFBC((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&___physicsScene0), (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___origin1), (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___direction2), L_0, (ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *)(&___contactFilter4), L_1, /*hidden argument*/NULL);
return L_2;
}
}
// System.Int32 UnityEngine.PhysicsScene2D::GetRayIntersection(UnityEngine.Ray,System.Single,UnityEngine.RaycastHit2D[],System.Int32)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_GetRayIntersection_mB6F14C8BB95609094BE9BDB218483EAAC4117B5A (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * __this, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, float ___distance1, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results2, int32_t ___layerMask3, const RuntimeMethod* method)
{
int32_t V_0 = 0;
{
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 L_0 = (*(PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)__this);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_1;
L_1 = Ray_get_origin_m0C1B2BFF99CDF5231AC29AC031C161F55B53C1D0((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&___ray0), /*hidden argument*/NULL);
Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2;
L_2 = Ray_get_direction_m2B31F86F19B64474A901B28D3808011AE7A13EFC((Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 *)(&___ray0), /*hidden argument*/NULL);
float L_3 = ___distance1;
int32_t L_4 = ___layerMask3;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_5 = ___results2;
int32_t L_6;
L_6 = PhysicsScene2D_GetRayIntersectionArray_Internal_m44D4B8638806360B19BDCFDCC090C1AD1267539E(L_0, L_1, L_2, L_3, L_4, L_5, /*hidden argument*/NULL);
V_0 = L_6;
goto IL_0021;
}
IL_0021:
{
int32_t L_7 = V_0;
return L_7;
}
}
IL2CPP_EXTERN_C int32_t PhysicsScene2D_GetRayIntersection_mB6F14C8BB95609094BE9BDB218483EAAC4117B5A_AdjustorThunk (RuntimeObject * __this, Ray_t2E9E67CC8B03EE6ED2BBF3D2C9C96DDF70E1D5E6 ___ray0, float ___distance1, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results2, int32_t ___layerMask3, const RuntimeMethod* method)
{
int32_t _offset = 1;
PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * _thisAdjusted = reinterpret_cast<PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *>(__this + _offset);
int32_t _returnValue;
_returnValue = PhysicsScene2D_GetRayIntersection_mB6F14C8BB95609094BE9BDB218483EAAC4117B5A(_thisAdjusted, ___ray0, ___distance1, ___results2, ___layerMask3, method);
return _returnValue;
}
// System.Int32 UnityEngine.PhysicsScene2D::GetRayIntersectionArray_Internal(UnityEngine.PhysicsScene2D,UnityEngine.Vector3,UnityEngine.Vector3,System.Single,System.Int32,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_GetRayIntersectionArray_Internal_m44D4B8638806360B19BDCFDCC090C1AD1267539E (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 ___physicsScene0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___origin1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___direction2, float ___distance3, int32_t ___layerMask4, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results5, const RuntimeMethod* method)
{
{
float L_0 = ___distance3;
int32_t L_1 = ___layerMask4;
RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* L_2 = ___results5;
int32_t L_3;
L_3 = PhysicsScene2D_GetRayIntersectionArray_Internal_Injected_mAF80210771484878DF20775EE91ADF1D19CCA99D((PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *)(&___physicsScene0), (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&___origin1), (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *)(&___direction2), L_0, L_1, L_2, /*hidden argument*/NULL);
return L_3;
}
}
// System.Void UnityEngine.PhysicsScene2D::Raycast_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D&)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PhysicsScene2D_Raycast_Internal_Injected_m6CEAF96A977FEDD926FBAAA74FFA2D571D75C422 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * ___contactFilter4, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * ___ret5, const RuntimeMethod* method)
{
typedef void (*PhysicsScene2D_Raycast_Internal_Injected_m6CEAF96A977FEDD926FBAAA74FFA2D571D75C422_ftn) (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, float, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *, RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *);
static PhysicsScene2D_Raycast_Internal_Injected_m6CEAF96A977FEDD926FBAAA74FFA2D571D75C422_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (PhysicsScene2D_Raycast_Internal_Injected_m6CEAF96A977FEDD926FBAAA74FFA2D571D75C422_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.PhysicsScene2D::Raycast_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D&)");
_il2cpp_icall_func(___physicsScene0, ___origin1, ___direction2, ___distance3, ___contactFilter4, ___ret5);
}
// System.Int32 UnityEngine.PhysicsScene2D::RaycastArray_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_RaycastArray_Internal_Injected_mE7F2FCB47E154BB4062BCEFECD74385275109D76 (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * ___contactFilter4, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results5, const RuntimeMethod* method)
{
typedef int32_t (*PhysicsScene2D_RaycastArray_Internal_Injected_mE7F2FCB47E154BB4062BCEFECD74385275109D76_ftn) (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, float, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09*);
static PhysicsScene2D_RaycastArray_Internal_Injected_mE7F2FCB47E154BB4062BCEFECD74385275109D76_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (PhysicsScene2D_RaycastArray_Internal_Injected_mE7F2FCB47E154BB4062BCEFECD74385275109D76_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.PhysicsScene2D::RaycastArray_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,UnityEngine.RaycastHit2D[])");
int32_t icallRetVal = _il2cpp_icall_func(___physicsScene0, ___origin1, ___direction2, ___distance3, ___contactFilter4, ___results5);
return icallRetVal;
}
// System.Int32 UnityEngine.PhysicsScene2D::RaycastList_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_RaycastList_Internal_Injected_m0866D19E97A4D9267F9E91C3CE33B7D34AB2DFBC (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___origin1, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___direction2, float ___distance3, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB * ___contactFilter4, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 * ___results5, const RuntimeMethod* method)
{
typedef int32_t (*PhysicsScene2D_RaycastList_Internal_Injected_m0866D19E97A4D9267F9E91C3CE33B7D34AB2DFBC_ftn) (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, float, ContactFilter2D_t82BBB159A7E392A24921803A0E79669F4E34DFCB *, List_1_t3926283FA9AE49778D95220056CEBFB01D034379 *);
static PhysicsScene2D_RaycastList_Internal_Injected_m0866D19E97A4D9267F9E91C3CE33B7D34AB2DFBC_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (PhysicsScene2D_RaycastList_Internal_Injected_m0866D19E97A4D9267F9E91C3CE33B7D34AB2DFBC_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.PhysicsScene2D::RaycastList_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector2&,UnityEngine.Vector2&,System.Single,UnityEngine.ContactFilter2D&,System.Collections.Generic.List`1<UnityEngine.RaycastHit2D>)");
int32_t icallRetVal = _il2cpp_icall_func(___physicsScene0, ___origin1, ___direction2, ___distance3, ___contactFilter4, ___results5);
return icallRetVal;
}
// System.Int32 UnityEngine.PhysicsScene2D::GetRayIntersectionArray_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector3&,UnityEngine.Vector3&,System.Single,System.Int32,UnityEngine.RaycastHit2D[])
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PhysicsScene2D_GetRayIntersectionArray_Internal_Injected_mAF80210771484878DF20775EE91ADF1D19CCA99D (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 * ___physicsScene0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___origin1, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * ___direction2, float ___distance3, int32_t ___layerMask4, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09* ___results5, const RuntimeMethod* method)
{
typedef int32_t (*PhysicsScene2D_GetRayIntersectionArray_Internal_Injected_mAF80210771484878DF20775EE91ADF1D19CCA99D_ftn) (PhysicsScene2D_tB68D090292BC3369F94CBB7496FE96EB00853E48 *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E *, float, int32_t, RaycastHit2DU5BU5D_tDEABD9FBBA32C695C932A32A1B8FB9C06A496F09*);
static PhysicsScene2D_GetRayIntersectionArray_Internal_Injected_mAF80210771484878DF20775EE91ADF1D19CCA99D_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (PhysicsScene2D_GetRayIntersectionArray_Internal_Injected_mAF80210771484878DF20775EE91ADF1D19CCA99D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.PhysicsScene2D::GetRayIntersectionArray_Internal_Injected(UnityEngine.PhysicsScene2D&,UnityEngine.Vector3&,UnityEngine.Vector3&,System.Single,System.Int32,UnityEngine.RaycastHit2D[])");
int32_t icallRetVal = _il2cpp_icall_func(___physicsScene0, ___origin1, ___direction2, ___distance3, ___layerMask4, ___results5);
return icallRetVal;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_point()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RaycastHit2D_get_point_m10D5AB3B26EAE62583BE35CFA13A3E40BDAF30AE (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method)
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Point_1();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RaycastHit2D_get_point_m10D5AB3B26EAE62583BE35CFA13A3E40BDAF30AE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *>(__this + _offset);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 _returnValue;
_returnValue = RaycastHit2D_get_point_m10D5AB3B26EAE62583BE35CFA13A3E40BDAF30AE(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Vector2 UnityEngine.RaycastHit2D::get_normal()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RaycastHit2D_get_normal_m6F8B9F4018EFA126CC33126E8E42B09BB5A82637 (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method)
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 V_0;
memset((&V_0), 0, sizeof(V_0));
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = __this->get_m_Normal_2();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 RaycastHit2D_get_normal_m6F8B9F4018EFA126CC33126E8E42B09BB5A82637_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *>(__this + _offset);
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 _returnValue;
_returnValue = RaycastHit2D_get_normal_m6F8B9F4018EFA126CC33126E8E42B09BB5A82637(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.RaycastHit2D::get_distance()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit2D_get_distance_mA910B45BD349A8F70139F6BC1E686F47F40A1662 (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Distance_3();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float RaycastHit2D_get_distance_mA910B45BD349A8F70139F6BC1E686F47F40A1662_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *>(__this + _offset);
float _returnValue;
_returnValue = RaycastHit2D_get_distance_mA910B45BD349A8F70139F6BC1E686F47F40A1662(_thisAdjusted, method);
return _returnValue;
}
// System.Single UnityEngine.RaycastHit2D::get_fraction()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit2D_get_fraction_mBB22819886A490EA6EC0FA5AA4B546D9A0902CC7 (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method)
{
float V_0 = 0.0f;
{
float L_0 = __this->get_m_Fraction_4();
V_0 = L_0;
goto IL_000a;
}
IL_000a:
{
float L_1 = V_0;
return L_1;
}
}
IL2CPP_EXTERN_C float RaycastHit2D_get_fraction_mBB22819886A490EA6EC0FA5AA4B546D9A0902CC7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *>(__this + _offset);
float _returnValue;
_returnValue = RaycastHit2D_get_fraction_mBB22819886A490EA6EC0FA5AA4B546D9A0902CC7(_thisAdjusted, method);
return _returnValue;
}
// UnityEngine.Collider2D UnityEngine.RaycastHit2D::get_collider()
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * RaycastHit2D_get_collider_m00F7EC55C36F39E2ED64B31354FB4D9C8938D563 (RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * __this, const RuntimeMethod* method)
{
static bool s_Il2CppMethodInitialized;
if (!s_Il2CppMethodInitialized)
{
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722_il2cpp_TypeInfo_var);
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
s_Il2CppMethodInitialized = true;
}
Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * V_0 = NULL;
{
int32_t L_0 = __this->get_m_Collider_5();
IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var);
Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * L_1;
L_1 = Object_FindObjectFromInstanceID_m0AD731D3F583CBBDC7DC0E08B38F742B447FA44A(L_0, /*hidden argument*/NULL);
V_0 = ((Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 *)IsInstClass((RuntimeObject*)L_1, Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722_il2cpp_TypeInfo_var));
goto IL_0014;
}
IL_0014:
{
Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * L_2 = V_0;
return L_2;
}
}
IL2CPP_EXTERN_C Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * RaycastHit2D_get_collider_m00F7EC55C36F39E2ED64B31354FB4D9C8938D563_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method)
{
int32_t _offset = 1;
RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 * _thisAdjusted = reinterpret_cast<RaycastHit2D_t210878DAEBC96C1F69DF9883C454758724A106A4 *>(__this + _offset);
Collider2D_tDDBF081328B83D21D0BA3B5036D77B32528BA722 * _returnValue;
_returnValue = RaycastHit2D_get_collider_m00F7EC55C36F39E2ED64B31354FB4D9C8938D563(_thisAdjusted, method);
return _returnValue;
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void UnityEngine.Rigidbody2D::set_freezeRotation(System.Boolean)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody2D_set_freezeRotation_mF8E01A84694933A5E21F71869CAA42DB247CE987 (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * __this, bool ___value0, const RuntimeMethod* method)
{
typedef void (*Rigidbody2D_set_freezeRotation_mF8E01A84694933A5E21F71869CAA42DB247CE987_ftn) (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 *, bool);
static Rigidbody2D_set_freezeRotation_mF8E01A84694933A5E21F71869CAA42DB247CE987_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Rigidbody2D_set_freezeRotation_mF8E01A84694933A5E21F71869CAA42DB247CE987_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Rigidbody2D::set_freezeRotation(System.Boolean)");
_il2cpp_icall_func(__this, ___value0);
}
// System.Void UnityEngine.Rigidbody2D::AddForce(UnityEngine.Vector2)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody2D_AddForce_mB4754FC98ED65E5381854CDC858D12F0504FB3A2 (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___force0, const RuntimeMethod* method)
{
{
Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 L_0 = ___force0;
Rigidbody2D_AddForce_m2360EEDAF4E9F279AAB77DBD785A7F7161865343(__this, L_0, 0, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Rigidbody2D::AddForce(UnityEngine.Vector2,UnityEngine.ForceMode2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody2D_AddForce_m2360EEDAF4E9F279AAB77DBD785A7F7161865343 (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___force0, int32_t ___mode1, const RuntimeMethod* method)
{
{
int32_t L_0 = ___mode1;
Rigidbody2D_AddForce_Injected_m238B89F81818A2A5A0CBD3BADE376151EA7243C7(__this, (Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *)(&___force0), L_0, /*hidden argument*/NULL);
return;
}
}
// System.Void UnityEngine.Rigidbody2D::AddForce_Injected(UnityEngine.Vector2&,UnityEngine.ForceMode2D)
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rigidbody2D_AddForce_Injected_m238B89F81818A2A5A0CBD3BADE376151EA7243C7 (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 * __this, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * ___force0, int32_t ___mode1, const RuntimeMethod* method)
{
typedef void (*Rigidbody2D_AddForce_Injected_m238B89F81818A2A5A0CBD3BADE376151EA7243C7_ftn) (Rigidbody2D_tD23204FEE9CB4A36737043B97FD409DE05D5DCE5 *, Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 *, int32_t);
static Rigidbody2D_AddForce_Injected_m238B89F81818A2A5A0CBD3BADE376151EA7243C7_ftn _il2cpp_icall_func;
if (!_il2cpp_icall_func)
_il2cpp_icall_func = (Rigidbody2D_AddForce_Injected_m238B89F81818A2A5A0CBD3BADE376151EA7243C7_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Rigidbody2D::AddForce_Injected(UnityEngine.Vector2&,UnityEngine.ForceMode2D)");
_il2cpp_icall_func(__this, ___force0, ___mode1);
}
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"1928013@kiit.ac.in"
] | 1928013@kiit.ac.in |
dec63965e00711fa394c35da2ab8d044625befad | f5d56a145d3083a11388ee735d12dcfcee65abc5 | /WCI/buffer.cpp | 6419c96c3c5fee8b6a02360cf4095a3feec3de7e | [] | no_license | Irwin1985/Writing-Compilers-Interpreters | 2939d83d03a1467cf086be231853d88cb77a0708 | b1c1d5a0fce7a596b5e29d2ae167b6b845fc7ab5 | refs/heads/master | 2021-09-03T02:34:35.270675 | 2018-01-04T23:29:23 | 2018-01-04T23:29:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,517 | cpp | //
// buffer.cpp
// WCI
//
// Created by cameron belt on 8/9/17.
// Copyright © 2017 Cameron Belt. All rights reserved.
//
#include "stdafx.h"
#include <stdio.h>
#include <string.h>
#include <iostream>
#include <time.h>
#include "common.h"
#include "buffer.h"
char eofChar = 0x7f;
int inputPostion;
int listFlag = true;
//constructor
TTextInBuffer::TTextInBuffer(const char *pInputFileName, TAbortCode ac)
:pFileName(new char[strlen(pInputFileName)]){
strcpy(pFileName, pInputFileName);
file.open(pFileName, ios::in);
if (!file.good())
AbortTranslation(ac);
}
//get next character
char TTextInBuffer::GetChar(void){
const int tabSize = 8;
char ch;
if(*pChar == eofChar){
return eofChar;
}
else if(*pChar == '\0'){
ch = GetLine();
}
else{
++pChar;
++inputPostion;
ch = *pChar;
}
if (ch == '\t'){
inputPostion += tabSize - inputPostion%tabSize;
}
return ch;
}
char TTextInBuffer::PutBackChar(void){
--pChar;
--inputPostion;
return *pChar;
}
TSourceBuffer::TSourceBuffer(const char *pSourceFileName)
: TTextInBuffer(pSourceFileName, abortSourceFileOpenFailed){
if(listFlag){
list.Initialize(pSourceFileName);
}
GetLine();
}
char TSourceBuffer::GetLine(void){
extern int lineNumber, currentNestingLevel;
if(file.eof()){
pChar = &eofChar;
}
else{
file.getline(text,maxInputBufferSize);
pChar = text;
if(listFlag)
list.PutLine(text, ++currentLineNumber, currentNestingLevel);
}
inputPostion = 0;
return *pChar;
}
const int maxPrintLineLength = 80;
const int maxLinesPerPage = 50;
TListBuffer list;
void TListBuffer::PrintPageHeader(void){
const char formFeedChar = '\f';
cout << formFeedChar << "Page " << ++pageNumber << " " << pSourceFileName <<
" " << date << endl << endl;
lineCount = 0;
}
void TListBuffer::Initialize(const char *pFileName){
text[0] = '\0';
pageNumber = 0;
pSourceFileName = new char[strlen(pFileName) + 1];
strcpy(pSourceFileName, pFileName);
time_t timer;
time(&timer);
strcpy_s(date, asctime(localtime(&timer)));
date[strlen(date) - 1] = '\0';
PrintPageHeader();
}
void TListBuffer::PutLine(void){
if(listFlag && (lineCount == maxLinesPerPage)) PrintPageHeader();
text[maxPrintLineLength] = '\0';
cout << text << endl;
text[0] = '\0';
++lineCount;
}
| [
"camerontbelt@gmail.com"
] | camerontbelt@gmail.com |
a4203d4b66231a972dad1b88b0ad64540c6c7302 | 90047daeb462598a924d76ddf4288e832e86417c | /cc/debug/traced_value.h | c5c4b0cef3cad5eac53a69d2a430817e95c36c05 | [
"BSD-3-Clause"
] | permissive | massbrowser/android | 99b8c21fa4552a13c06bbedd0f9c88dd4a4ad080 | a9c4371682c9443d6e1d66005d4db61a24a9617c | refs/heads/master | 2022-11-04T21:15:50.656802 | 2017-06-08T12:31:39 | 2017-06-08T12:31:39 | 93,747,579 | 2 | 2 | BSD-3-Clause | 2022-10-31T10:34:25 | 2017-06-08T12:36:07 | null | UTF-8 | C++ | false | false | 1,319 | h | // Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CC_DEBUG_TRACED_VALUE_H_
#define CC_DEBUG_TRACED_VALUE_H_
#include "cc/debug/debug_export.h"
namespace base {
namespace trace_event {
class TracedValue;
}
}
namespace cc {
class CC_DEBUG_EXPORT TracedValue {
public:
static void AppendIDRef(const void* id,
base::trace_event::TracedValue* array);
static void SetIDRef(const void* id,
base::trace_event::TracedValue* dict,
const char* name);
static void MakeDictIntoImplicitSnapshot(base::trace_event::TracedValue* dict,
const char* object_name,
const void* id);
static void MakeDictIntoImplicitSnapshotWithCategory(
const char* category,
base::trace_event::TracedValue* dict,
const char* object_name,
const void* id);
static void MakeDictIntoImplicitSnapshotWithCategory(
const char* category,
base::trace_event::TracedValue* dict,
const char* object_base_type_name,
const char* object_name,
const void* id);
};
} // namespace cc
#endif // CC_DEBUG_TRACED_VALUE_H_
| [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
1cbcf40de61706a8f1cadc9082ced56886e15c6c | 1dcbffec33416860a6a4bc4cea3b7b0da78dc2f3 | /UNO(with_servo)/index/index.ino | 81f39d8406ccdac8cccf693231b5fa8e3d2988d7 | [] | no_license | Marius-S/SLAM-Arduino-autonomous-robot | e23073eaf6fe0b453004eaec39ad5a7219647c07 | edd9d57b8e36acb963d936c888a379bf57376f52 | refs/heads/Develop | 2020-04-11T16:07:54.719324 | 2017-04-27T20:54:15 | 2017-04-27T20:54:15 | 60,722,048 | 4 | 0 | null | 2017-04-26T18:52:12 | 2016-06-08T18:48:06 | Arduino | UTF-8 | C++ | false | false | 586 | ino | #include <LiquidCrystal.h>
LiquidCrystal lcd(2, 10, 4, 5, 6, 7);
//lcd
int work = 0;
int motor_speed = 150;
int x = 0;
int y = 0;
int Array[20][20] = {{}}; //4 x 4 meters square
int compas = 1;
//ultrasonic
long duration, cm;
void setup() {
lcd_setup();
Serial.begin(9600);
pinMode(12, OUTPUT);
pinMode(9, OUTPUT);
pinMode(13, OUTPUT);
pinMode(8, OUTPUT);
}
void loop() {
lcds();
if (work == 2) {
turn_right(motor_speed);
work = 0;
}
switch (work) {
case 2:
calculate();
break;
case 4:
Array_to_serial();
break;
}
}
| [
"smigelskas.marius@gmail.com"
] | smigelskas.marius@gmail.com |
231d04fe972339cf72ece3e2141902993f63b217 | c26e9d3f92d95f7ce9d0fd5ef2c18dd95ec209a5 | /Algorithms_Practice/graphs/restore.cpp | 841c9ee727ae46c2a32e63590815bc61aa0a1d6b | [] | no_license | crystal95/Competetive-Programming-at-different-platforms | c9ad1684f6258539309d07960ed6abfa7d1a16d0 | 92d283171b0ae0307e9ded473c6eea16f62cb60e | refs/heads/master | 2021-01-09T21:44:28.175506 | 2016-03-27T21:26:26 | 2016-03-27T21:26:26 | 54,848,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,126 | cpp | #include<iostream>
#include<stdio.h>
#include<vector>
#include<queue>
#include<algorithm>
using namespace std;
int main()
{
int i,j,k,l,n,x,h,curr,flag=0;
cin>>n>>k;
pair<int, int> sam,sam1,sam2,sam3;
vector < pair<int ,int > > arr(n);
vector<int> count(n);
queue < pair<int,int> > q1(n);
queue < pair<int,int> > q2(n);
for(i=0;i<n;i++)
{
cin>>x;
count[x]++;
sam.first=x;
sam.second=i;
q1[i].push(sam);
}
if(count[0]>1)
flag=1;
for(i=1;i<n;i++)
{
if(count[i]>count[i-1]*k)
flag=1;
}
if(flag==0)
{
sort(q1.begin(),q1.end());
sam=q1.front();
q1.pop();
q2.push(sam);
while(!q1.empty())
{
sam2=q2.front();
curr=sam2.first;
while(!q1.empty() && (q1.front()).first==curr+1)
{
sam3=q1.front();
//for(i=1;i<=k;i++)
//{
q2.push_back(sam3);
h++;
cout<<sam2.second<<" "<<sam1.front()<<endl;
if(h==k)
{
h=0;
q2.pop();
sam2=q2.front();
curr=sam2.first;
}
//}
}
q2.popfront();
}
}
if(flag==1)
cout<<"-1"<<endl;
/*for(i=0;i<n;i++)
{
cout<<arr[i].first<<" "<<arr[i].second<<endl;
}*/
return 0;
}
| [
"dsodhi95@gmail.com"
] | dsodhi95@gmail.com |
f162538130dd544eda1c1dd57d46286f434e7316 | 60a15a584b00895e47628c5a485bd1f14cfeebbe | /common/helpbase.h | fc307526da56e9875971ffcfbeefa92040033905 | [] | no_license | fcccode/vt5 | ce4c1d8fe819715f2580586c8113cfedf2ab44ac | c88049949ebb999304f0fc7648f3d03f6501c65b | refs/heads/master | 2020-09-27T22:56:55.348501 | 2019-06-17T20:39:46 | 2019-06-17T20:39:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,022 | h | #ifndef __helpbase_h__
#define __helpbase_h__
#include "utils.h"
#include "misc5.h"
class std_dll CHelpInfoImpl : public CImplBase
{
public:
CHelpInfoImpl();
BEGIN_INTERFACE_PART_EXPORT(Help, IHelpInfo2)
com_call GetHelpInfo( BSTR *pbstrHelpFile, BSTR *pbstrHelpTopic, DWORD *pdwFlags );
com_call GetHelpInfo2( BSTR *pbstrHelpFile, BSTR *pbstrHelpTopic, DWORD *pdwFlags, BSTR *pbstrHelpPrefix );
END_INTERFACE_PART(Help)
virtual const char *GetHelpTopic();
protected:
HINSTANCE m_hHelpInstance;
};
std_dll void HelpDisplay( IUnknown *punkHelpInfo );
std_dll bool HelpRegisterWindow( const char *pszType, const char *pszCaption );
std_dll bool HelpLoadCollection( const char *pszWinType );
std_dll bool HelpDisplayPopup( const char *pszFileName, const char *pszPrefix, const char *pszName, HWND hwnd );
std_dll bool HelpDisplayTopic( const char *pszFileName, const char *pszPrefix, const char *pszName, const char *pszWinType );
std_dll bool HelpDisplay( const char *pszFileName );
#endif // __helpbase_h__ | [
"videotestc@gmail.com"
] | videotestc@gmail.com |
19882e4a92d60a6ad0046aa2ff11823e3c953061 | a79c4ec1a3021a613ded411b3275ca2c7529db26 | /3Dmath/Mat3D.h | b69f702fa111fc001acb5e6aac3541c3aee0228d | [] | no_license | ChristophHaag/offroad-copy | f93d3bc9a1d59dff6b8fe34c13ad52ff47f4d691 | b1e75c5062ecb78a72a2864ad322e59c5e996064 | refs/heads/master | 2020-04-16T08:34:01.491438 | 2016-09-12T08:29:53 | 2016-09-12T08:29:53 | 67,986,990 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,993 | h | /*
Offroad - 2008 Edition
Copyright (C) 2014 Milan Timko
http://www.milantimko.info
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/gpl-3.0.txt>.
*/
/*
* File: Mat3D.h
* Author: Milan Timko
* email: milantimko@seznam.cz
* Created on 28. únor 2009, 14:38
*/
#ifndef _MAT3D_H
#define _MAT3D_H
#include "Vec3D.h"
class Mat3D{
private:
Vec3D e1;
Vec3D e2;
Vec3D e3;
public:
Mat3D();
Mat3D(const Vec3D& e1, const Vec3D& e2, const Vec3D& e3);
Mat3D(const Mat3D& m);
Mat3D(const double* array);
void clear();
Mat3D transpose() const;
Mat3D invert() const;
bool singular() const;
double det() const;
void rotateX(const double angle);
void rotateY(const double angle);
void rotateZ(const double angle);
void print() const;
void convertToOpenGL(double* mat) const;
void operator=(const Mat3D& m);
Mat3D operator*(const double m) const;
Mat3D operator*(const Mat3D& m) const;
Vec3D operator*(const Vec3D& v) const;
void operator*=(const double m);
void operator*=(const Mat3D& m);
Mat3D operator+(const Mat3D& m) const;
void operator+=(const Mat3D& m);
Mat3D operator-() const;
const Vec3D& getE1() const {return e1;}
const Vec3D& getE2() const {return e2;}
const Vec3D& getE3() const {return e3;}
//double* toArray();
void toArray(double* mat) const;
};
#endif /* _MAT3D_H */
| [
"yodacz@bccd3d8c-720c-43b6-9822-fbe46cbbf1eb"
] | yodacz@bccd3d8c-720c-43b6-9822-fbe46cbbf1eb |
bd1733dccbe0cd839935a3f007b343f5f92cba83 | 70d51d3dffd8d8d8aa71b988980d22bc7cdfdcd6 | /cuteui/base/operation/threadpool.h | 0d7f53b125a8492cb5696a73ab653f68612ef763 | [] | no_license | icylight/fr | 46b753181c4c8e5d022c4b6644b5471e503347c0 | f711f2e51895965ca19ddfa6cec2c1af524e7d0c | refs/heads/master | 2020-04-06T22:00:04.479129 | 2018-01-12T10:51:40 | 2018-01-12T10:51:40 | 157,821,913 | 0 | 0 | null | 2018-11-16T06:19:26 | 2018-11-16T06:19:26 | null | UTF-8 | C++ | false | false | 985 | h |
#ifndef _SNOW_CUTE_OPERATION_THREADPOOL_H_
#define _SNOW_CUTE_OPERATION_THREADPOOL_H_ 1
#include "../common.h"
namespace operation{
typedef struct _THREAD_POOL
{
HANDLE QuitEvent;
HANDLE WorkItemSemaphore;
LONG WorkItemCount;
LIST_ENTRY WorkItemHeader;
CRITICAL_SECTION WorkItemLock;
LONG ThreadNum;
HANDLE *ThreadsArray;
}THREAD_POOL, *PTHREAD_POOL;
typedef void (*WORK_ITEM_PROC)(PVOID Param);
typedef struct _WORK_ITEM
{
LIST_ENTRY List;
WORK_ITEM_PROC UserProc;
PVOID UserParam;
}WORK_ITEM, *PWORK_ITEM;
class CThreadPool{
public:
CThreadPool();
~CThreadPool();
bool Initialize(int threads);
void Destroy();
bool PostWorkItem(WORK_ITEM_PROC UserProc, PVOID UserParam);
unsigned long GetUseTime();
static DWORD WINAPI WorkerThread(PVOID pParam);
protected:
bool m_destoried;
unsigned long m_begintime;
unsigned long m_itemcount;
HANDLE m_complete_event;
THREAD_POOL m_threadpool;
};
};
#endif | [
"tengattack@foxmail.com"
] | tengattack@foxmail.com |
5f038f7e7c663ce7520f1f4469f4aab3d1e95a40 | 2356d2a68be40016dd3490fc9eeefa4d257120f3 | /addons/ark_ai_sentry/CfgVehicles.hpp | d09f80ec6cfcbb9d498d945f7d3aa4aeacc87bae | [] | no_license | kami-/ark_inhouse | 940d43fd16981958b321cee68c62a8f5954da959 | 6a7dfdf3c772e34579f4834571eee17855fc2ed7 | refs/heads/master | 2021-01-20T21:19:34.458078 | 2018-10-16T21:03:56 | 2018-10-16T21:03:56 | 60,200,301 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 606 | hpp | class CfgVehicles {
class ARK_Module;
class ARK_Make_Sentry: ARK_Module {
scope = 2;
displayName = "Make Sentry";
function = "ark_ai_sentry_module_make_sentry";
class ModuleDescription {
description = "Set options to make an EI sentry";
};
class Arguments {
class Enabled_Nightvision {
displayName = "Enabled Nightvision";
description = "Enables or Disables nightvision for the sentry";
typeName = "BOOL";
defaultValue = true;
};
};
};
}; | [
"root.cyruz@gmail.com"
] | root.cyruz@gmail.com |
30017dc8de1abba334de7103cbe4955ccd4b0350 | 13cf42eb2a6ae982dcc8edbeb4386b562ec4cd6f | /unicorn/string-escape-test.cpp | 132d7a05dadf7a628fdf6b43962cc8f20220498c | [
"MIT"
] | permissive | zrnsm/unicorn-lib | 676bc3dd80c5345661ecd78a5d78df1fece60842 | 1f29be34b5fef834047b3c8be323d6479fd242f5 | refs/heads/master | 2023-06-21T14:53:54.783445 | 2016-12-22T22:03:27 | 2016-12-22T22:03:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,779 | cpp | #include "unicorn/string.hpp"
#include "unicorn/core.hpp"
#include "prion/unit-test.hpp"
#include <string>
using namespace std::literals;
using namespace Unicorn;
namespace {
void check_encode_uri() {
u8string s1, s2;
s1 = ""; TRY(s2 = str_encode_uri(s1)); TEST_EQUAL(s2, "");
s1 = "Hello world"; TRY(s2 = str_encode_uri(s1)); TEST_EQUAL(s2, "Hello%20world");
s1 = "http://www.example.com/"; TRY(s2 = str_encode_uri(s1)); TEST_EQUAL(s2, "http://www.example.com/");
s1 = "\"%<>\\^`{|}"; TRY(s2 = str_encode_uri(s1)); TEST_EQUAL(s2, "%22%25%3c%3e%5c%5e%60%7b%7c%7d");
s1 = "!#$&'()*+,/:;=?@[]"; TRY(s2 = str_encode_uri(s1)); TEST_EQUAL(s2, "!#$&'()*+,/:;=?@[]");
s1 = "-._~"; TRY(s2 = str_encode_uri(s1)); TEST_EQUAL(s2, "-._~");
s1 = u8"αβγδε"; TRY(s2 = str_encode_uri(s1)); TEST_EQUAL(s2, "%ce%b1%ce%b2%ce%b3%ce%b4%ce%b5");
s1 = ""; TRY(s2 = str_encode_uri_component(s1)); TEST_EQUAL(s2, "");
s1 = "Hello world"; TRY(s2 = str_encode_uri_component(s1)); TEST_EQUAL(s2, "Hello%20world");
s1 = "http://www.example.com/"; TRY(s2 = str_encode_uri_component(s1)); TEST_EQUAL(s2, "http%3a%2f%2fwww.example.com%2f");
s1 = "\"%<>\\^`{|}"; TRY(s2 = str_encode_uri_component(s1)); TEST_EQUAL(s2, "%22%25%3c%3e%5c%5e%60%7b%7c%7d");
s1 = "!#$&'()*+,/:;=?@[]"; TRY(s2 = str_encode_uri_component(s1)); TEST_EQUAL(s2, "%21%23%24%26%27%28%29%2a%2b%2c%2f%3a%3b%3d%3f%40%5b%5d");
s1 = "-._~"; TRY(s2 = str_encode_uri_component(s1)); TEST_EQUAL(s2, "-._~");
s1 = u8"αβγδε"; TRY(s2 = str_encode_uri_component(s1)); TEST_EQUAL(s2, "%ce%b1%ce%b2%ce%b3%ce%b4%ce%b5");
s1 = ""; TRY(str_encode_uri_in(s1)); TEST_EQUAL(s1, "");
s1 = "Hello world"; TRY(str_encode_uri_in(s1)); TEST_EQUAL(s1, "Hello%20world");
s1 = "http://www.example.com/"; TRY(str_encode_uri_in(s1)); TEST_EQUAL(s1, "http://www.example.com/");
s1 = "\"%<>\\^`{|}"; TRY(str_encode_uri_in(s1)); TEST_EQUAL(s1, "%22%25%3c%3e%5c%5e%60%7b%7c%7d");
s1 = "!#$&'()*+,/:;=?@[]"; TRY(str_encode_uri_in(s1)); TEST_EQUAL(s1, "!#$&'()*+,/:;=?@[]");
s1 = "-._~"; TRY(str_encode_uri_in(s1)); TEST_EQUAL(s1, "-._~");
s1 = u8"αβγδε"; TRY(str_encode_uri_in(s1)); TEST_EQUAL(s1, "%ce%b1%ce%b2%ce%b3%ce%b4%ce%b5");
s1 = ""; TRY(str_encode_uri_component_in(s1)); TEST_EQUAL(s1, "");
s1 = "Hello world"; TRY(str_encode_uri_component_in(s1)); TEST_EQUAL(s1, "Hello%20world");
s1 = "http://www.example.com/"; TRY(str_encode_uri_component_in(s1)); TEST_EQUAL(s1, "http%3a%2f%2fwww.example.com%2f");
s1 = "\"%<>\\^`{|}"; TRY(str_encode_uri_component_in(s1)); TEST_EQUAL(s1, "%22%25%3c%3e%5c%5e%60%7b%7c%7d");
s1 = "!#$&'()*+,/:;=?@[]"; TRY(str_encode_uri_component_in(s1)); TEST_EQUAL(s1, "%21%23%24%26%27%28%29%2a%2b%2c%2f%3a%3b%3d%3f%40%5b%5d");
s1 = "-._~"; TRY(str_encode_uri_component_in(s1)); TEST_EQUAL(s1, "-._~");
s1 = u8"αβγδε"; TRY(str_encode_uri_component_in(s1)); TEST_EQUAL(s1, "%ce%b1%ce%b2%ce%b3%ce%b4%ce%b5");
s1 = ""; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, "");
s1 = "Hello%20world"; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, "Hello world");
s1 = "http://www.example.com/"; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, "http://www.example.com/");
s1 = "http%3a%2f%2fwww.example.com%2f"; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, "http://www.example.com/");
s1 = "%22%25%3c%3e%5c%5e%60%7b%7c%7d"; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, "\"%<>\\^`{|}");
s1 = "!#$&'()*+,/:;=?@[]"; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, "!#$&'()*+,/:;=?@[]");
s1 = "%21%23%24%26%27%28%29%2a%2b%2c%2f%3a%3b%3d%3f%40%5b%5d"; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, "!#$&'()*+,/:;=?@[]");
s1 = "-._~"; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, "-._~");
s1 = "%ce%b1%ce%b2%ce%b3%ce%b4%ce%b5"; TRY(s2 = str_unencode_uri(s1)); TEST_EQUAL(s2, u8"αβγδε");
s1 = ""; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, "");
s1 = "Hello%20world"; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, "Hello world");
s1 = "http://www.example.com/"; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, "http://www.example.com/");
s1 = "http%3a%2f%2fwww.example.com%2f"; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, "http://www.example.com/");
s1 = "%22%25%3c%3e%5c%5e%60%7b%7c%7d"; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, "\"%<>\\^`{|}");
s1 = "!#$&'()*+,/:;=?@[]"; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, "!#$&'()*+,/:;=?@[]");
s1 = "%21%23%24%26%27%28%29%2a%2b%2c%2f%3a%3b%3d%3f%40%5b%5d"; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, "!#$&'()*+,/:;=?@[]");
s1 = "-._~"; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, "-._~");
s1 = "%ce%b1%ce%b2%ce%b3%ce%b4%ce%b5"; TRY(str_unencode_uri_in(s1)); TEST_EQUAL(s1, u8"αβγδε");
}
void check_escape() {
u8string s1, s2;
s1 = ""; TRY(s2 = str_escape(s1)); TEST_EQUAL(s2, "");
s1 = "Hello world"; TRY(s2 = str_escape(s1)); TEST_EQUAL(s2, "Hello world");
s1 = "Hello world"; TRY(s2 = str_escape(s1, esc_ascii)); TEST_EQUAL(s2, "Hello world");
s1 = "Hello world"; TRY(s2 = str_escape(s1, esc_nostdc)); TEST_EQUAL(s2, "Hello world");
s1 = "Hello world"; TRY(s2 = str_escape(s1, esc_pcre)); TEST_EQUAL(s2, "Hello world");
s1 = "Hello world"; TRY(s2 = str_escape(s1, esc_punct)); TEST_EQUAL(s2, "Hello world");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_escape(s1)); TEST_EQUAL(s2, u8"(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\")");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_escape(s1, esc_ascii)); TEST_EQUAL(s2, u8"(\"\\x01\\u0080\\u00a7\\u00b6 \\\\ \\u20acuro \\U00012000\\n\")");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_escape(s1, esc_nostdc)); TEST_EQUAL(s2, u8"(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\x0a\")");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_escape(s1, esc_pcre)); TEST_EQUAL(s2, u8"(\"\\x01\\x{80}\\x{a7}\\x{b6} \\\\ \\x{20ac}uro \\x{12000}\\n\")");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_escape(s1, esc_punct)); TEST_EQUAL(s2, u8"\\(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\"\\)");
s1 = ""; TRY(str_escape_in(s1)); TEST_EQUAL(s1, "");
s1 = "Hello world"; TRY(str_escape_in(s1)); TEST_EQUAL(s1, "Hello world");
s1 = "Hello world"; TRY(str_escape_in(s1, esc_ascii)); TEST_EQUAL(s1, "Hello world");
s1 = "Hello world"; TRY(str_escape_in(s1, esc_nostdc)); TEST_EQUAL(s1, "Hello world");
s1 = "Hello world"; TRY(str_escape_in(s1, esc_pcre)); TEST_EQUAL(s1, "Hello world");
s1 = "Hello world"; TRY(str_escape_in(s1, esc_punct)); TEST_EQUAL(s1, "Hello world");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_escape_in(s1)); TEST_EQUAL(s1, u8"(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\")");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_escape_in(s1, esc_ascii)); TEST_EQUAL(s1, u8"(\"\\x01\\u0080\\u00a7\\u00b6 \\\\ \\u20acuro \\U00012000\\n\")");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_escape_in(s1, esc_nostdc)); TEST_EQUAL(s1, u8"(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\x0a\")");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_escape_in(s1, esc_pcre)); TEST_EQUAL(s1, u8"(\"\\x01\\x{80}\\x{a7}\\x{b6} \\\\ \\x{20ac}uro \\x{12000}\\n\")");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_escape_in(s1, esc_punct)); TEST_EQUAL(s1, u8"\\(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\"\\)");
s1 = ""; TRY(s2 = str_unescape(s1)); TEST_EQUAL(s2, "");
s1 = "Hello world"; TRY(s2 = str_unescape(s1)); TEST_EQUAL(s2, "Hello world");
s1 = u8"(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\")"; TRY(s2 = str_unescape(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"(\"\\x01\\u0080\\u00a7\\u00b6 \\\\ \\u20acuro \\U00012000\\n\")"; TRY(s2 = str_unescape(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\x0a\")"; TRY(s2 = str_unescape(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"(\"\\x01\\x{80}\\x{a7}\\x{b6} \\\\ \\x{20ac}uro \\x{12000}\\n\")"; TRY(s2 = str_unescape(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\\(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\"\\)"; TRY(s2 = str_unescape(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = ""; TRY(str_unescape_in(s1)); TEST_EQUAL(s1, "");
s1 = "Hello world"; TRY(str_unescape_in(s1)); TEST_EQUAL(s1, "Hello world");
s1 = u8"(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\")"; TRY(str_unescape_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"(\"\\x01\\u0080\\u00a7\\u00b6 \\\\ \\u20acuro \\U00012000\\n\")"; TRY(str_unescape_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\x0a\")"; TRY(str_unescape_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"(\"\\x01\\x{80}\\x{a7}\\x{b6} \\\\ \\x{20ac}uro \\x{12000}\\n\")"; TRY(str_unescape_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\\(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\"\\)"; TRY(str_unescape_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
}
void check_quote() {
u8string s1, s2;
s1 = ""; TRY(s2 = str_quote(s1)); TEST_EQUAL(s2, "\"\"");
s1 = "Hello world"; TRY(s2 = str_quote(s1)); TEST_EQUAL(s2, "\"Hello world\"");
s1 = "Hello world"; TRY(s2 = str_quote(s1, esc_ascii)); TEST_EQUAL(s2, "\"Hello world\"");
s1 = "Hello world"; TRY(s2 = str_quote(s1, esc_nostdc)); TEST_EQUAL(s2, "\"Hello world\"");
s1 = "Hello world"; TRY(s2 = str_quote(s1, esc_pcre)); TEST_EQUAL(s2, "\"Hello world\"");
s1 = "Hello world"; TRY(s2 = str_quote(s1, esc_punct)); TEST_EQUAL(s2, "\"Hello world\"");
s1 = "Hello world"; TRY(s2 = str_quote(s1, 0, U'\'')); TEST_EQUAL(s2, "\'Hello world\'");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_quote(s1)); TEST_EQUAL(s2, u8"\"(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\")\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_quote(s1, esc_ascii)); TEST_EQUAL(s2, u8"\"(\\\"\\x01\\u0080\\u00a7\\u00b6 \\\\ \\u20acuro \\U00012000\\n\\\")\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_quote(s1, esc_nostdc)); TEST_EQUAL(s2, u8"\"(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\x0a\\\")\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_quote(s1, esc_pcre)); TEST_EQUAL(s2, u8"\"(\\\"\\x01\\x{80}\\x{a7}\\x{b6} \\\\ \\x{20ac}uro \\x{12000}\\n\\\")\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_quote(s1, esc_punct)); TEST_EQUAL(s2, u8"\"\\(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\"\\)\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(s2 = str_quote(s1, 0, U'\'')); TEST_EQUAL(s2, u8"'(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\")'");
s1 = ""; TRY(str_quote_in(s1)); TEST_EQUAL(s1, "\"\"");
s1 = "Hello world"; TRY(str_quote_in(s1)); TEST_EQUAL(s1, "\"Hello world\"");
s1 = "Hello world"; TRY(str_quote_in(s1, esc_ascii)); TEST_EQUAL(s1, "\"Hello world\"");
s1 = "Hello world"; TRY(str_quote_in(s1, esc_nostdc)); TEST_EQUAL(s1, "\"Hello world\"");
s1 = "Hello world"; TRY(str_quote_in(s1, esc_pcre)); TEST_EQUAL(s1, "\"Hello world\"");
s1 = "Hello world"; TRY(str_quote_in(s1, esc_punct)); TEST_EQUAL(s1, "\"Hello world\"");
s1 = "Hello world"; TRY(str_quote_in(s1, 0, U'\'')); TEST_EQUAL(s1, "\'Hello world\'");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_quote_in(s1)); TEST_EQUAL(s1, u8"\"(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\")\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_quote_in(s1, esc_ascii)); TEST_EQUAL(s1, u8"\"(\\\"\\x01\\u0080\\u00a7\\u00b6 \\\\ \\u20acuro \\U00012000\\n\\\")\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_quote_in(s1, esc_nostdc)); TEST_EQUAL(s1, u8"\"(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\x0a\\\")\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_quote_in(s1, esc_pcre)); TEST_EQUAL(s1, u8"\"(\\\"\\x01\\x{80}\\x{a7}\\x{b6} \\\\ \\x{20ac}uro \\x{12000}\\n\\\")\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_quote_in(s1, esc_punct)); TEST_EQUAL(s1, u8"\"\\(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\"\\)\"");
s1 = u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")"; TRY(str_quote_in(s1, 0, U'\'')); TEST_EQUAL(s1, u8"'(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\")'");
s1 = "\"\""; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, "");
s1 = "\"Hello world\""; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, "Hello world");
s1 = u8"\"(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\")\""; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\"(\\\"\\x01\\u0080\\u00a7\\u00b6 \\\\ \\u20acuro \\U00012000\\n\\\")\""; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\"(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\x0a\\\")\""; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\"(\\\"\\x01\\x{80}\\x{a7}\\x{b6} \\\\ \\x{20ac}uro \\x{12000}\\n\\\")\""; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\"\\(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\"\\)\""; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = "\"Hello\" \"world\""; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, "Hello world");
s1 = u8"αβγδε \"ζηθικ\" λμνξο \"πρστυ\" φχψω"; TRY(s2 = str_unquote(s1)); TEST_EQUAL(s2, u8"αβγδε ζηθικ λμνξο πρστυ φχψω");
s1 = "\'Hello world\'"; TRY(s2 = str_unquote(s1, U'\'')); TEST_EQUAL(s2, "Hello world");
s1 = "\'Hello\' \'world\'"; TRY(s2 = str_unquote(s1, U'\'')); TEST_EQUAL(s2, "Hello world");
s1 = u8"'(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\")'"; TRY(s2 = str_unquote(s1, U'\'')); TEST_EQUAL(s2, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"αβγδε \'ζηθικ\' λμνξο \'πρστυ\' φχψω"; TRY(s2 = str_unquote(s1, U'\'')); TEST_EQUAL(s2, u8"αβγδε ζηθικ λμνξο πρστυ φχψω");
s1 = "\"\""; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, "");
s1 = "\"Hello world\""; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, "Hello world");
s1 = u8"\"(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\")\""; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\"(\\\"\\x01\\u0080\\u00a7\\u00b6 \\\\ \\u20acuro \\U00012000\\n\\\")\""; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\"(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\x0a\\\")\""; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\"(\\\"\\x01\\x{80}\\x{a7}\\x{b6} \\\\ \\x{20ac}uro \\x{12000}\\n\\\")\""; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"\"\\(\\\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\\\"\\)\""; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = "\"Hello\" \"world\""; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, "Hello world");
s1 = u8"αβγδε \"ζηθικ\" λμνξο \"πρστυ\" φχψω"; TRY(str_unquote_in(s1)); TEST_EQUAL(s1, u8"αβγδε ζηθικ λμνξο πρστυ φχψω");
s1 = "\'Hello world\'"; TRY(str_unquote_in(s1, U'\'')); TEST_EQUAL(s1, "Hello world");
s1 = "\'Hello\' \'world\'"; TRY(str_unquote_in(s1, U'\'')); TEST_EQUAL(s1, "Hello world");
s1 = u8"'(\"\\x01\u0080§¶ \\\\ €uro \U00012000\\n\")'"; TRY(str_unquote_in(s1, U'\'')); TEST_EQUAL(s1, u8"(\"\u0001\u0080§¶ \\ €uro \U00012000\n\")");
s1 = u8"αβγδε \'ζηθικ\' λμνξο \'πρστυ\' φχψω"; TRY(str_unquote_in(s1, U'\'')); TEST_EQUAL(s1, u8"αβγδε ζηθικ λμνξο πρστυ φχψω");
}
}
TEST_MODULE(unicorn, string_escape) {
check_encode_uri();
check_escape();
check_quote();
}
| [
"rosssmith@me.com"
] | rosssmith@me.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.