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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e9b191b84fcea5919bacfc53a2db43c1feab7f15 | 46eb609f59289b65b9480d7b1e2c482f416bb355 | /Backup/Assignment_3/main.cpp | 64e864700b158aea18bc093a0517cdca28f1ad9d | [] | no_license | sivagirish81/Algorithms | af15be52db79ba7fb2dd687ed7ebc14686c74b19 | 03f64ba8c93da8f29cb08dc36f00c5e8124529e7 | refs/heads/master | 2021-07-12T20:05:51.202204 | 2020-05-22T07:42:09 | 2020-05-22T07:42:09 | 134,872,524 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 214 | cpp |
#include <iostream>
#include "suffixes_data_structure_implementation.cpp"
int main()
{
suffixes_data_structure_implementation Suffix_Tree;
vector<string> q = {"ababa","cjpdq"};
Suffix_Tree.build(q);
} | [
"sivagirish81@gmail.com"
] | sivagirish81@gmail.com |
518dc0e3fb5d3f1974a6817fa47fd3536a9044e7 | 431f1e3c3faa58cb84ec4973823597e1d92f9d92 | /RayTracing/RayTracing/BSPTree.cpp | def7b5100adf8eaa901f761254e8247a41f5e9bf | [] | no_license | DengzhiLiu/CG | d83d89ae9fc357e8292eba3057ad960bd3420a9c | deccfd7cda546ab2fefa4a2199ff4968a7f6d255 | refs/heads/master | 2021-01-16T19:20:46.775694 | 2015-04-11T09:02:22 | 2015-04-11T09:02:22 | 33,616,167 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 8,781 | cpp | #include "BSPTree.h"
#include "Material.h"
#include "Triangle.h"
BSPTree::BSPTree()
{
minnum = 8;
maxdepth = 10;
}
BSPTree::~BSPTree(void)
{
}
// 判断一点是否在网格内
inline bool BSPTree::IsInBox(Point pos, Point Bmin, Point Bmax)
{
if (pos.X() < Bmin.X() || pos.X() > Bmax.X())
return false;
if (pos.Y() < Bmin.Y() || pos.Y() > Bmax.Y())
return false;
if (pos.Z() < Bmin.Z() || pos.Z() > Bmax.Z())
return false;
return true;
}
// 三角面片是否与网格相交
inline bool BSPTree::IsIntersectBox(Point* pos, Point Bmin, Point Bmax)
{
Vector e1 = pos[1] - pos[0];
Vector e2 = pos[2] - pos[0];
Vector d = Bmin - pos[0];
Vector L = Bmax - Bmin;
for (int i = 0; i < 3; i++) {
if (fabs(e1.d[i]) < fabs(e2.d[i])) { // 保证e1i > e2i
Vector temp = e1;
e1 = e2;
e2 = temp;
}
if ( SolutionExists(e1, e2, d, L, i) )
return true;
d.d[i] += L.d[i];
if ( SolutionExists(e1, e2, d, L, i) )
return true;
}
return false;
}
inline bool BSPTree::SolutionExists(Vector e1, Vector e2, Vector d, Vector L, int axis)
{
double min = 0, max = 0;
double tempMin, tempMax;
double e1i = e1.d[axis];
double e1j = e1.d[(axis+1)%3];
double e1k = e1.d[(axis+2)%3];
double e2i = e2.d[axis];
double e2j = e2.d[(axis+1)%3];
double e2k = e2.d[(axis+2)%3];
double di = d.d[axis];
double dj = d.d[(axis+1)%3];
double dk = d.d[(axis+2)%3];
double Li = L.d[axis];
double Lj = L.d[(axis+1)%3];
double Lk = L.d[(axis+2)%3];
double deti = e1i - e2i;
double detj = (e1i * e2j) - (e1j * e2i);
double detk = (e1i * e2k) - (e1k * e2i);
double b0 = 1.0 / e2i;
double bi = 1.0 / deti;
double bj = e1j / detj;
double bk = e1k / detk;
double a0 = e1i / e2i;
double ai = e1i / deti;
double aj = e1i / detj;
double ak = e1i / detk;
double C0 = b0 * di;
double Ci = -bi * di;
double Cj = aj * dj - bj * di;
double Ck = ak * dk - bk * di;
/* 求解第一个不等式 */
if (fabs(e2i) > EPSILON) { // e2i != 0
tempMax = C0;
if (a0 > 0.0) {
if (tempMax < min)
return false;
if (tempMax < max)
max = tempMax;
}
else {
tempMin = tempMax;
if (tempMin > max)
return false;
if (tempMin > min)
min = tempMin;
}
}
else { // 异常情况1,e2i == 0
if (di / e1i < 0.0)
return false;
}
/* 求解第二个不等式 */
if (fabs(deti) > EPSILON) { // deti != 0
tempMax = Ci + ai;
if (ai > 0.0) {
if (tempMax < min)
return false;
if (tempMax < max)
max = tempMax;
}
else {
tempMin = tempMax;
if (tempMin > max)
return false;
if (tempMin > min)
min = tempMin;
}
}
else { // 异常情况2,deti == 0
if (e1i > 0.0) {
if (e1i - di < 0.0)
return false;
}
else {
if (e1i - di > 0.0)
return false;
}
}
/* 求解第三个不等式 */
if (fabs(detj) > EPSILON) { // detj != 0
tempMin = Cj;
tempMax = tempMin + aj * Lj;
if (aj > 0.0) {
if (tempMax < min || tempMin > max)
return false;
if (tempMin > min)
min = tempMin;
if (tempMax < max)
max = tempMax;
}
else {
double temp = tempMin;
tempMin = tempMax;
tempMax = temp;
if (tempMax < min || tempMin > max)
return false;
if (tempMin > min)
min = tempMin;
if (tempMax < max)
max = tempMax;
}
}
else { // 异常情况3,detj == 0
if (e1i > 0.0) {
if (dj * e1i - e1j * di > 0.0)
return false;
if (dj * e1i - e1j * di + Lj * e1i < 0.0)
return false;
}
else {
if (dj * e1i - e1j * di < 0.0)
return false;
if (dj * e1i - e1j * di + Lj * e1i > 0.0)
return false;
}
}
/* 求解第四个不等式 */
if (fabs(detk) > EPSILON) { // detk != 0
tempMin = Ck;
tempMax = tempMin + ak * Lk;
if (ak > 0.0) {
if (tempMax < min || tempMin > max)
return false;
if (tempMin > min)
min = tempMin;
if (tempMax < max)
max = tempMax;
}
else {
double temp = tempMin;
tempMin = tempMax;
tempMax = temp;
if (tempMax < min || tempMin > max)
return false;
if (tempMin > min)
min = tempMin;
if (tempMax < max)
max = tempMax;
}
}
else { // 异常情况4,detk == 0
if (e1i > 0) {
if (dk * e1i - e1k * di > 0.0)
return false;
if (dk * e1i - e1k * di + Lk * e1i < 0.0)
return false;
}
else {
if (dk * e1i - e1k * di < 0.0)
return false;
if (dk * e1i - e1k * di + Lk * e1i > 0.0)
return false;
}
}
return true;
}
BSPNode* BSPTree::BuildBSPTree(Group* group, int depth, int axis)
{
if (group == NULL) return NULL;
BSPNode* root = new BSPNode;
Group *leftchild, *rightchild;
root->subAxis = axis;
root->lchild = root->rchild = NULL;
// 当景物面片数少于阈值或超出深度时
int num = group->GetSize();
if (num <= minnum || depth >= maxdepth) {
if (num > 0) {
root->objList = group;
return root;
}
else
return NULL;
}
bool f[6];
Point pos[3];
int nextAxis; // 下一次剖分的轴线
Point Bmin[2], Bmax[2];
Bmin[0] = Bmin[1] = group->CBPmin;
Bmax[0] = Bmax[1] = group->CBPmax;
Bmin[1].d[axis] = (Bmin[0].d[axis] + Bmax[0].d[axis]) * 0.5;
Bmax[0].d[axis] = Bmin[1].d[axis];
nextAxis = (axis + 1) % 3;
root->objList = group;
leftchild = new Group();
leftchild->CBPmin = Bmin[0];
leftchild->CBPmax = Bmax[0];
rightchild = new Group();
rightchild->CBPmin = Bmin[1];
rightchild->CBPmax = Bmax[1];
// 只适用于三角形
for (vector<Triangle *>::const_iterator iter = group->objs.begin(); iter != group->objs.end(); ++iter) {
for (int i = 0; i < 3; i++)
pos[i] = ((Triangle *)(*iter))->varray[i];
for (int i = 0; i < 6; i++)
f[i] = IsInBox(pos[i%3], Bmin[i/3], Bmax[i/3]);
if (f[0] && f[1] && f[2]) { // 三个顶点都在左孩子中
leftchild->Add(*iter);
continue;
}
if (f[3] && f[4] && f[5]) { // 三个顶点都在右孩子中
rightchild->Add(*iter);
continue;
}
if (f[0] || f[1] || f[2]) { // 一个顶点在左孩子,则属于左孩子
leftchild->Add(*iter);
}
else if ( IsIntersectBox(pos, Bmin[0], Bmax[0]) ) {
leftchild->Add(*iter);
}
if (f[3] || f[4] || f[5]) { // 一个顶点在右孩子,则属于右孩子
rightchild->Add(*iter);
}
else if ( IsIntersectBox(pos, Bmin[1], Bmax[1]) ) {
rightchild->Add(*iter);
}
}
root->lchild = BuildBSPTree(leftchild, depth+1, nextAxis);
root->rchild = BuildBSPTree(rightchild, depth+1, nextAxis);
return root;
}
bool BSPTree::Intersect(Ray &ray, BSPNode* root, double tmin, double tmax, bool flag, Color &factor)
{
bool found = false;
BSPNode *nearNode, *farNode;
// 这里的代码还要修改一下
if (root == NULL) return false;
Group* group = root->objList;
if ((group == NULL) || (group->GetSize() <= 0)) return false;
// 先对包围盒进行求交测试, 并设定交点的范围区间tmin~tmax
//if ( !group->CheckHit(ray) )
// return false;
if ((root->lchild == NULL) && (root->rchild == NULL)) {
// 与景物面片进行求交测试
for (vector<Triangle *>::const_iterator iter = group->objs.begin(); iter != group->objs.end(); ++iter) {
if ( !(*iter)->Intersect(ray, tmin, tmax) ) continue;
if ( !flag ) {
factor = factor * (*iter)->GetMaterial()->kt;
if (factor.r < EPSILON || factor.g < EPSILON || factor.b < EPSILON) return true;
}
}
if (flag && ray.WasIntersection()) found = true;
return found;
}
// 求光线与中剖面的交点参数tdist
double tdist;
Point Bmin, Bmax;
int axis = root->subAxis; // 当前网格剖分轴
Bmin = group->CBPmin;
Bmax = group->CBPmax;
double startCood = ray.GetOrigin().d[axis];
double dirlen = ray.GetDirection().d[axis];
double subCoord = (Bmin.d[axis] + Bmax.d[axis]) * 0.5;
if (fabs(subCoord - startCood) < EPSILON)
tdist = 0.0;
else if ((dirlen < EPSILON) && (dirlen > 0.0))
tdist = MAXCOORD;
else if ((dirlen > -EPSILON) && (dirlen < 0.0))
tdist = MINCOORD;
else
tdist = (subCoord - startCood) / dirlen;
if (fabs(subCoord - startCood) < EPSILON) {
double temp = startCood + dirlen;
if (temp < subCoord) {
nearNode = root->rchild; // 下一次从右结点开始
farNode = root->lchild;
}
else {
nearNode = root->lchild;
farNode = root->rchild;
}
}
else {
if (startCood < subCoord) {
nearNode = root->lchild;
farNode = root->rchild;
}
else {
nearNode = root->rchild;
farNode = root->lchild;
}
}
if ((tdist > tmax) || (tdist < 0.0))
found = Intersect(ray, nearNode, tmin, tmax, flag, factor);
else if (tdist < tmin)
found = Intersect(ray, farNode, tmin, tmax, flag, factor);
else {
found = Intersect(ray, nearNode, tmin, tdist, flag, factor);
if ( found && ray.hitDist <= tmax && ray.hitDist >= tmin ) return found;
found = Intersect(ray, farNode, tdist, tmax, flag, factor);
}
return found;
}
| [
"dengzhiliu@aliyun.com"
] | dengzhiliu@aliyun.com |
f295bd66006bb6bbaffb1bead51ae799a9096339 | 02f6df7cf14f2daa595d8a75884a3bc60f0d7e80 | /UWP/WSAPlayer/Il2CppOutputProject/Source/il2cppOutput/Il2CppComCallableWrappers11.cpp | d1ed92520c35890a189f417648c29674ce4c98c7 | [] | no_license | mosuem/knotportal | 76f5ff5aa3f51bc41c8775985d4b1f9e3738fce9 | 3b511ac41459d50952c2c945f9fa946b94990a77 | refs/heads/master | 2023-01-21T04:07:10.546350 | 2020-11-18T06:48:39 | 2020-11-18T06:48:39 | 255,315,642 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,933,565 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "vm/CachedCCWBase.h"
#include "os/Unity/UnityPlatformConfigure.h"
#include "il2cpp-object-internals.h"
// Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineDataProvider
struct BaseMixedRealityLineDataProvider_tBDC1C0137D794157BB9AA6DDB6838067D790AFB4;
// Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer
struct BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.Extensions.GltfExtension
struct GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor
struct GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessorSparse
struct GltfAccessorSparse_tA53BDDF70798BF89D2EAA2DACD4A2B5E8F838FFF;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimation
struct GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannel
struct GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannelTarget
struct GltfAnimationChannelTarget_tBC3EBFA52714F2AF8D988DF59C813F81E3ACC024;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannel[]
struct GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler
struct GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler[]
struct GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBuffer
struct GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView
struct GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCamera
struct GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCameraOrthographic
struct GltfCameraOrthographic_tEC2050DD49042C56A9F4BE28459C83F5F2C6BFA4;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCameraPerspective
struct GltfCameraPerspective_t9F088230CEA445F7E704BC6FFE31DCC4AC640C06;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfChildOfRootProperty
struct GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfImage
struct GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial
struct GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterialCommonConstant
struct GltfMaterialCommonConstant_tA887548E142FDEF49F1A6CA0C94BE70E80E9139A;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMesh
struct GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive
struct GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes
struct GltfMeshPrimitiveAttributes_t4498AE3DDE1979E82740120413530157A3AB5636;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive[]
struct GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode
struct GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNormalTextureInfo
struct GltfNormalTextureInfo_t55E8DCAD21A464BC503DB63718D81C4F64AFB363;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfOcclusionTextureInfo
struct GltfOcclusionTextureInfo_tF2B66F2B9C7DD0C0EF4D7E7AB54DF16BDBA7969D;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfPbrMetallicRoughness
struct GltfPbrMetallicRoughness_tFECA0741E9204EC5F3CB472C2F4FC04B9E33018F;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfProperty
struct GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSampler
struct GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfScene
struct GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSkin
struct GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTexture
struct GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTextureInfo
struct GltfTextureInfo_tCD5927AC73206F6078B08EA8189C36CD3D5434BF;
// Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver
struct Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011;
// Microsoft.MixedReality.Toolkit.Utilities.Solvers.SolverHandler
struct SolverHandler_tB266A703760FDE8F574DAB22078E58FBD4F181FE;
// System.Action`1<System.Boolean>
struct Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD;
// System.Action`1<TMPro.TMP_ColorGradient>
struct Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230;
// System.Action`1<UnityEngine.Object>
struct Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78;
// System.Action`2<System.Boolean,System.Object>
struct Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048;
// System.Action`2<System.Boolean,TMPro.TMP_FontAsset>
struct Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612;
// System.Action`2<System.Boolean,TMPro.TextMeshPro>
struct Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196;
// System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>
struct Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445;
// System.Action`2<System.Boolean,UnityEngine.Material>
struct Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E;
// System.Action`2<System.Boolean,UnityEngine.Object>
struct Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6;
// System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>
struct Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418;
// System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>
struct Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A;
// System.AsyncCallback
struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4;
// System.Byte[]
struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821;
// System.Char[]
struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2;
// System.Collections.Generic.Dictionary`2/Entry<System.String,System.Int32>[]
struct EntryU5BU5D_tAD4FDE2B2578C6625A7296B1C46DCB06DCB45186;
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.Int32>
struct KeyCollection_t666396E67E50284D48938851873CE562083D67F2;
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.Int32>
struct ValueCollection_t532E2FD863D0D47B87202BE6B4F7C7EDB5DD7CBF;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Int32>
struct Dictionary_2_t6567430A4033E968FED88FBBD298DC9D0DFA398F;
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB;
// System.Collections.Generic.Dictionary`2<System.String,System.String>
struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC;
// System.Collections.Generic.IDictionary`2<System.String,System.Int32>
struct IDictionary_2_t1BA14E657A7C2086151AA159E3C7FE1FFA044F85;
// System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.Int32>>
struct IEnumerable_1_t25B5214BFBF5C2C5AD661802893E5DB4ECE0084E;
// System.Collections.Generic.IEqualityComparer`1<System.String>
struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9;
// System.Collections.Generic.IReadOnlyDictionary`2<System.String,System.Int32>
struct IReadOnlyDictionary_2_tF3133645B3876E8AA374DE1B4668134D48CA8D03;
// System.Collections.Generic.LinkedListNode`1<System.Action`1<System.Boolean>>
struct LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E;
// System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>
struct LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7;
// System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>
struct LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430;
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>
struct LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C;
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>
struct LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2;
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>
struct LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9;
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>
struct LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B;
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>
struct LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357;
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>
struct LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157;
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>
struct LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75;
// System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>
struct LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561;
// System.Collections.Generic.LinkedList`1<System.Action`1<System.Boolean>>
struct LinkedList_1_t7043A084478F9C3FC929CC90915FDFB30DA087AE;
// System.Collections.Generic.LinkedList`1<System.Action`1<TMPro.TMP_ColorGradient>>
struct LinkedList_1_t4117ED308574900FF722900DB7EA324EC136C2C3;
// System.Collections.Generic.LinkedList`1<System.Action`1<UnityEngine.Object>>
struct LinkedList_1_t9EFBC738D01132AB1127D045C074FD58AFDFFC4A;
// System.Collections.Generic.LinkedList`1<System.Action`2<System.Boolean,System.Object>>
struct LinkedList_1_t6144BC4DC3CE893A083E97F058F152F140FD8CCB;
// System.Collections.Generic.LinkedList`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>
struct LinkedList_1_t914638DB723EB3533AF852E5383F65D891EAD700;
// System.Collections.Generic.LinkedList`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>
struct LinkedList_1_tB03EFB69ADED063F3573963047B829525FB4981A;
// System.Collections.Generic.LinkedList`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>
struct LinkedList_1_tEA79CC96DFDC71826B649DE6FA672B3A04A2CD58;
// System.Collections.Generic.LinkedList`1<System.Action`2<System.Boolean,UnityEngine.Material>>
struct LinkedList_1_tB925A54F59E0C0C770F401F28AEAD872701F3D30;
// System.Collections.Generic.LinkedList`1<System.Action`2<System.Boolean,UnityEngine.Object>>
struct LinkedList_1_t7CDE1A012890272D8E90774E1E498125330A3A32;
// System.Collections.Generic.LinkedList`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>
struct LinkedList_1_t8C9E9636C57E48CE6D2FE2D0292743BFDD054C4F;
// System.Collections.Generic.LinkedList`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>
struct LinkedList_1_t2C1388E86A4B9BF93AFCF3C6D95FA1F2B18254A2;
// System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<System.String,System.Int32>>
struct List_1_t4E883E860B4C59D9C87D3719880776FA9384F41E;
// System.Collections.Generic.List`1<UnityEngine.UI.IMaterialModifier>
struct List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C;
// System.DelegateData
struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE;
// System.Delegate[]
struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86;
// System.Double[]
struct DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D;
// System.IAsyncResult
struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598;
// System.Int32[]
struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.Single[]
struct SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5;
// System.String
struct String_t;
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017;
// TMPro.Compute_DT_EventArgs
struct Compute_DT_EventArgs_t17A56E99E621F8C211A13BE81BEAE18806DA7B11;
// TMPro.FontWeight[]
struct FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446;
// TMPro.KerningPair
struct KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD;
// TMPro.MaterialReference[]
struct MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B;
// TMPro.RichTextTagAttribute[]
struct RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652;
// TMPro.TMP_Character
struct TMP_Character_t1875AACA978396521498D6A699052C187903553D;
// TMPro.TMP_CharacterInfo[]
struct TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604;
// TMPro.TMP_ColorGradient
struct TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7;
// TMPro.TMP_ColorGradient[]
struct TMP_ColorGradientU5BU5D_t0948D618AC4240E6F0CFE0125BB6A4E931DE847C;
// TMPro.TMP_Dropdown/DropdownItem
struct DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD;
// TMPro.TMP_Dropdown/OptionData
struct OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B;
// TMPro.TMP_FontAsset
struct TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C;
// TMPro.TMP_Glyph
struct TMP_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C;
// TMPro.TMP_GlyphPairAdjustmentRecord
struct TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76;
// TMPro.TMP_MaterialManager/FallbackMaterial
struct FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A;
// TMPro.TMP_MaterialManager/MaskingMaterial
struct MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B;
// TMPro.TMP_Sprite
struct TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353;
// TMPro.TMP_SpriteAnimator
struct TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17;
// TMPro.TMP_SpriteAsset
struct TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487;
// TMPro.TMP_SpriteCharacter
struct TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33;
// TMPro.TMP_SpriteGlyph
struct TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B;
// TMPro.TMP_Style
struct TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD;
// TMPro.TMP_SubMeshUI
struct TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1;
// TMPro.TMP_Text
struct TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7;
// TMPro.TMP_Text/UnicodeChar[]
struct UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505;
// TMPro.TMP_TextElement
struct TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344;
// TMPro.TMP_TextElement_Legacy
struct TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05;
// TMPro.TMP_TextInfo
struct TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181;
// TMPro.TextAlignmentOptions[]
struct TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B;
// TMPro.TextMeshPro
struct TextMeshPro_t6FF60D9DCAF295045FE47C014CC855C5784752E2;
// TMPro.TextMeshProUGUI
struct TextMeshProUGUI_tBA60B913AB6151F8563F7078AD67EB6458129438;
// UnityEngine.AnimationCurve
struct AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C;
// UnityEngine.Canvas
struct Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591;
// UnityEngine.CanvasRenderer
struct CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72;
// UnityEngine.Color32[]
struct Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983;
// UnityEngine.Events.UnityAction
struct UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4;
// UnityEngine.GameObject
struct GameObject_tBD1244AD56B4E59AAD76E5E7C9282EC5CE434F0F;
// UnityEngine.Gradient
struct Gradient_t35A694DDA1066524440E325E582B01E33DE66A3A;
// UnityEngine.Material
struct Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598;
// UnityEngine.Material[]
struct MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398;
// UnityEngine.Mesh
struct Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C;
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0;
// UnityEngine.RectTransform
struct RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20;
// UnityEngine.Sprite
struct Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198;
// UnityEngine.TextCore.Glyph
struct Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4;
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4;
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C;
// UnityEngine.Transform
struct Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween>
struct TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172;
// UnityEngine.UI.IMaterialModifier[]
struct IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14;
// UnityEngine.UI.Image
struct Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E;
// UnityEngine.UI.LayoutElement
struct LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B;
// UnityEngine.UI.MaskableGraphic/CullStateChangedEvent
struct CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4;
// UnityEngine.UI.RectMask2D
struct RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B;
// UnityEngine.UI.Toggle
struct Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106;
// UnityEngine.UI.VertexHelper
struct VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F;
// UnityEngine.Vector2[]
struct Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6;
// UnityEngine.Vector3[]
struct Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28;
struct Delegate_t_marshaled_com;
struct Delegate_t_marshaled_pinvoke;
struct IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7;
struct IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B;
struct IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E;
struct IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39;
struct IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E;
struct IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616;
struct IIterator_1_t0E6F22317D9596D056B240E4199E3D6355969033;
struct IIterator_1_t1E62E2DEF0FE28A782869A9D8BFBFABC13FF40BE;
struct IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0;
struct IIterator_1_t45EAFE89B17CEF26FE791FE11C8ACC9F5FCB94F9;
struct IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A;
struct IIterator_1_tA18FBA1CD465AAA76C95772D67FAF9CDBC95C502;
struct IIterator_1_tC21C0C229C51E51366BD9C6177D6DE5E665F4528;
struct IIterator_1_tC25A5C49191781F5B26240C13028A8D268E9344F;
struct IIterator_1_tE640F040C3947F6065F4AE8D02A7C78D21838D6D;
struct IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2;
struct IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE;
struct IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C;
struct IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF;
struct IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3;
struct IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7;
struct IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007;
struct IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68;
struct IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208;
struct IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7;
struct IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777;
struct IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF;
struct IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E;
struct BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822;
struct GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE;
struct GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38;
struct GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029;
struct GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159;
struct GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94;
struct GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A;
struct GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF;
struct GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC;
struct GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962;
struct GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17;
struct GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2;
struct GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331;
struct GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782;
struct GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93;
struct GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B;
struct GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D;
struct GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366;
struct GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778;
struct GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C;
struct ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9;
struct SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44;
struct Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940;
struct Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000;
struct Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982;
struct Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806;
struct Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0;
struct Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1;
struct Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2;
struct Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68;
struct Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0;
struct Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11;
struct Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B;
struct EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0;
struct EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975;
struct EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001;
struct EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882;
struct EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67;
struct EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039;
struct EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0;
struct EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4;
struct EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D;
struct EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C;
struct EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2;
struct EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599;
struct EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1;
struct EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5;
struct EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395;
struct EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3;
struct EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5;
struct EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7;
struct EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B;
struct Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7;
struct IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4;
struct IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00;
struct IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F;
struct KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E;
struct KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E;
struct KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D;
struct KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534;
struct KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D;
struct KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E;
struct KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F;
struct KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE;
struct KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D;
struct KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C;
struct KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286;
struct KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5;
struct KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417;
struct KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291;
struct KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C;
struct KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C;
struct KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6;
struct KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8;
struct KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85;
struct LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F;
struct LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9;
struct LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423;
struct LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793;
struct LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557;
struct LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8;
struct LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882;
struct LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2;
struct LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71;
struct LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38;
struct LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD;
struct List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372;
struct SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461;
struct FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446;
struct KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA;
struct RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652;
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41;
struct TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604;
struct DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7;
struct OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164;
struct TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D;
struct TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664;
struct TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56;
struct ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410;
struct TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C;
struct TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D;
struct FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8;
struct MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733;
struct TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847;
struct TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233;
struct TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6;
struct TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802;
struct TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A;
struct TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E;
struct TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2;
struct TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238;
struct TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F;
struct TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09;
struct TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B;
struct Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9;
struct TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B;
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
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IDictionary`2<System.String,System.Int32>>
struct NOVTABLE IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m33A198A26E2F69AB15F7E09DB58544E4EC7A1F96(IIterator_1_t45EAFE89B17CEF26FE791FE11C8ACC9F5FCB94F9** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.Int32>>>
struct NOVTABLE IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B(IIterator_1_tE640F040C3947F6065F4AE8D02A7C78D21838D6D** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.IReadOnlyDictionary`2<System.String,System.Int32>>
struct NOVTABLE IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m44A14B4C6CD9C14BD291722E30B5058C9323413A(IIterator_1_tC25A5C49191781F5B26240C13028A8D268E9344F** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>
struct NOVTABLE IIterable_1_t28887E2AE3529F7785103DDD258677B7B383D05E : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m79FA09D492F7E69B65C0D1FAD02E717367ADC3C5(IIterator_1_t0E6F22317D9596D056B240E4199E3D6355969033** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>
struct NOVTABLE IIterable_1_tA849C640DBE7AEFEC674C6E2D28D5B2C412F4FEA : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mBC32CD4C8964F603FD9A374B58ECCEEFCAA800D7(IIterator_1_tA18FBA1CD465AAA76C95772D67FAF9CDBC95C502** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>
struct NOVTABLE IIterable_1_t17281DA719C7AD32FA6E2386FCC7EE497E50701B : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m2090DC2A52EB0E0DA160B5948057BAA08C53D059(IIterator_1_tC21C0C229C51E51366BD9C6177D6DE5E665F4528** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>
struct NOVTABLE IIterable_1_tB613151BC8BD84A121DFD6676844856F2926A22A : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mEEE9BF41BE6E8A37A93466953A50CDB3FEE2B629(IIterator_1_t1E62E2DEF0FE28A782869A9D8BFBFABC13FF40BE** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.IEnumerable>
struct NOVTABLE IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Collections.IList>
struct NOVTABLE IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IIterable`1<System.Object>
struct NOVTABLE IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.IDictionary`2<System.String,System.Int32>>
struct NOVTABLE IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m10D366416EDD66C0DD879B19FB5224F452326301(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mCFA60797F45CFC2B8248EF8E6661F7D5E52EF27C(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m384FC994B72BE6A9B6744B51C092A4E723788E25(IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m063A74F80E6FFFB816ABE2C519B6FFC1118B405D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.Int32>>>
struct NOVTABLE IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.IReadOnlyDictionary`2<System.String,System.Int32>>
struct NOVTABLE IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m72512CEF306512E4B36CA37279EE3D27D7BC986B(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m5E80095A44374A1C657C9C4C0434853C80A2DC99(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m45A3AB5D4B2F9F9CB3EE97E9B3F96E7F348837DC(IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mD91FF5BE14F23E774420CA3130D06FF7A50C5F87(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>
struct NOVTABLE IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mA082E4211BB8C7F328C4677A3C15294D993A1766(uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mE2693CC0DB1C233D7B32B4120756C7BAC5A5393B(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m0294393BF92FDC8F4055D3C7BE64D476CBF27FE8(IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mF673145E72CEF26271036CFD660BCD4E0448C181(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>
struct NOVTABLE IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mF0449D9643B936DC2F20C0C056EF4BE608D782F8(uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mBC27038DCAA9396D445FF20C47112FFE5746DE91(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m8B32E36733280AC6C725BC9CB1C49084F49FDDFE(IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mE2B9B0623223455A7E2F45167AF4B87B76CBD0DB(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>
struct NOVTABLE IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m7F9C05C45D8C567EC4099DF583F4A6E8CD86D12D(uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6E76252ECE84F84C5F4A77179B5F4CC68DE35CCA(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mB9BCA0F576465D9B9B8098C3C972A25B15524072(IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m9B956879B736A796B0C0CAA8A0F80D0D1780DFB4(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>
struct NOVTABLE IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m84615D624AB936B1192752BE26AD1F49BB20570E(uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m3DA84BA01F84E4B7EB7072B6C86BD2C1BC69D93F(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m6D53723DC673E423207849E506E2B3EAD4B5BE5E(IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m5776A380043ABC53F1DC7CE89D8249FFB0DB9D64(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.IEnumerable>
struct NOVTABLE IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Collections.IList>
struct NOVTABLE IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mAB5FBF2E11782C3284709DBFA4DE5F15F3819B10(uint32_t ___index0, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mBB2E069A39C95E9B799DF56A687C3378593D6DE8(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mE04A0DB765A4541758E866B3039F1064401BE09B(IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7A30B074D4DE286EDF193293E625DF60ECDBB23A(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVectorView`1<System.Object>
struct NOVTABLE IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.IDictionary`2<System.String,System.Int32>>
struct NOVTABLE IVector_1_t2FFA84DD3C4050C1CCDC6F99F6F27FDC2C5A589E : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m5F2247992C0779BECC7A0D7DB4C2BA654FC95EED(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m140C56EB0E35CEE277FB2DBDEDF56EDCEE1E9ED6(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_mECB0A6BFA617F86CA7F1D5238FE0054B8897A199(IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m93E76CA4FD15D8C486AED2F0756A95CD2860C1A9(IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mF5C8F28E4981136DC3BBE917C30502611D9D29C9(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_mFD33C7E0E2C7D4E95587535210C5AA67EBE08A4A(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m8F40FBC4028BDE47B0BA939B0DE606D0D80154BB(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mCC6FEF797185358E3451A971405AB1594054ED1C(IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mE60706CFAC5A64B81B93F80A33DFB33C5150B17C() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mB621150E7A2D410A640DF7707819F6BAAC573D4C() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mEB7AD40B0651AD0F0CD0F8BDC5383E312D6AEF85(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m5568D0FAEAE242880BDFF5A0AA02ADAFD1910938(uint32_t ___items0ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.Int32>>>
struct NOVTABLE IVector_1_tD5A0C078918A0DF86CEBDBFF912DF05323A9B717 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m1789E9E2AB11AC78F92E9B3652E3523B176A4556(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m90290FF201B1FF72010158DCAA058C0F74A9A7B7(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_mB21E2DCB1A2CE29F582BA4622895AD2906FD6533(IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m61348F21553FEE98D456B8E75099587EB858D4DF(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m64FFC36ED11C505A10C72E5BB809323866100533(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m580552E47E142F6CB6C945024B7922817E2E3A36(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m6AAE187CFBB635DCF7220FBBC7DC8CE9DA4FF94E(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mAB0A0B93A867691BA33A86789FE42AF2F9ACF073(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m9A6CB8A750E836FC0D3FE6E73127784AA6D68C36() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m95C2489858F5E560A30C66FA9BD2808626ED549A() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m425106B4EB4B593ECEA7DFC0EB7AC1004C53274E(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mDBE0F9128E978EB063674DAC16DE4D90A0FB1E0E(uint32_t ___items0ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.IReadOnlyDictionary`2<System.String,System.Int32>>
struct NOVTABLE IVector_1_tE95A9020405F5161923ED08C2FED00B140824229 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_mA233F9C16CCFBD83381AF694E971369407751F66(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m523736EA1CAFD756D3A464103C44B95281CDC6C4(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m9AF06ECFDE66E7CCD018432D8B0600946B5CFE31(IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m227F18F4334CF3A4FDDF5B55CF5CB05172EE379C(IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m880B990C26BB46E24CF9BEF93CF19902CD7147A3(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_mB3ECC8E27E6B4AEDF9B535BB3C98C729E95F6CA9(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m4B2BB7E875F6CA1A3422A7A1A71D500AAD47119D(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mC1AE32A36FA72DF9274C33B3008F1BE55BD3CF0C(IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m192F80E547EC6A43640D712AC47338C9F1608BAE() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m3C66A0AC585BDB14889631A18494806F5D358424() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mF221BB31F435A34F86C0B6C9F908FFBA0AEBD53D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m3C4ECC99DF1975301571BD4709A0F12515FE0FB1(uint32_t ___items0ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>>
struct NOVTABLE IVector_1_t47AE6B699AA6E20122B9AAE94FF40A9B44BB3261 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m2486A9307168F5D3CE716330582CCF5BB135BD81(uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m1BCE16F2A484956260C9584E41FA4BC0E8DC80A3(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_mBB033FC008791398C6E9AB55471E7C621DC92CBC(IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mDF0877071FEAE6AE0EA1FA853C85B60652879BE8(IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m0A5F2477DE2EB926395635E425072D0C469BD284(uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m8334ECA63ECB13E38B4CA3C37C63835F3B288846(uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m8F41DFDFF9B59C53E797ECAF11D11ACD6D16E854(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m43345039A1B9425D3F65C8971F1BDF337ECCC33B(IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mB71F299CDFFF86A7AB16714298BD90D3D5F5D92B() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mF8D8009BE5DC9FF06330E2259DE72513906D11C5() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m6715134E91BC5DEEAEDD7820C51798E81BFBFD9C(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mCB8194A732EC9C15B2EE833A0C358D628EB5DD7D(uint32_t ___items0ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>>
struct NOVTABLE IVector_1_t1B8539845AD92CBB57A3E29E392042FA21531095 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m7A9C441F6C1AEAD6A647D771817D1308620892DA(uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mF150FBF57131995C1FB1A7B4FF32A4CE095F0873(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m136214CB8B2C6EBFF5978ABC590B0572D4123EC5(IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m7365E2E9A71CD5ED82B593AC0B78A404C5C10E16(IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mE1091FDB971F5780441983F2B681A0234453D47E(uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_mBD0C69F769AB53528B75B77E5B1DC3B3CE55DD00(uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m6A0085CBD24C43212CD179B84407CE9255C64060(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m3E2306A844701BA6A738CFB6C827B2A0C8B873DC(IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mF6F1C44F3041340CC38F809E65BE30CC21BF415A() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mFE64D145A7F104F28009D2741EE7B966B1F9018B() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m03F4B42C5D0BFD65B0777102C7EDBAF0402867BD(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mAE3A6915099547E5F9F598F75A68A3CD9D0DFCA4(uint32_t ___items0ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>>
struct NOVTABLE IVector_1_t806896487A50CE6664FFD09D430E2D547D1E064C : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m5A71C605D15BB27A6DD273F9C9ABBEAA56FBE410(uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m5C16CFCF09EE73A8BD19A167C9CDC5FB52156D1E(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m1A29E1210D75BAA6CEFD4CD0BB3D37450ABE7746(IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mDF30199DAC11B43CB70585DFA9BC508CD3302085(IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mB5A94A3DD4A36077A3FFF3E9503A4A619FF81D64(uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m9DE55A2993614CF981FE72AB21AFAC7C976E77F5(uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mFF953B60CB93755AA28ABA8578AC887EF9D7264E(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m9B5C5E7142591563B7EC00BD4DB790195ED98DF0(IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m025700A6EA23262E0D154632681C033BF9902377() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m7B6B7C0544A8EC3621F5E2423CEA4E8D71A25E10() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m53AB2BE76719C907B0C0C5EE7D3201236C658A20(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m14A39E5F76678B22253AF786B843C9B31F88D37E(uint32_t ___items0ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items0) = 0;
};
// Windows.Foundation.Collections.IVector`1<System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>>
struct NOVTABLE IVector_1_t8C60EB5AB000F179EBAAF005C5CF77484A043E09 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m864E1F76F7DA89477BE32314EC3CCBB0A4344FDF(uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mBB3E5FD0749BDDB6C162B67A15D73B0A533A790B(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m05B789234A8EA05DB558B2A1619E1E751D25945B(IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mF65260BAFC461864D5865DFC2C1F3D0C7B15B6F3(IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mFF26B34C48F8B9DD82CE80DFC403A9F92CEB6B9F(uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m2DE28DE6650F6104AB00371F420CA3137B3828A1(uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mF4ED04EC7B85CED6A472598AF504C31CC5D080BB(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m1AAE2EE82179200D40A4A880D33E5CEA39106D58(IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m88A5B10665C1A2CDF2F7B6830F790220C7450D76() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m656EC9D419A9F78D4171DFA1E768244F6470E893() = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mF50236F3730F539ED6572C4608E194A6D46D07BA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items1, uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m75766F30B392529DB13064E6900A86019C04D5BF(uint32_t ___items0ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items0) = 0;
};
// Windows.UI.Xaml.Interop.IBindableIterable
struct NOVTABLE IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) = 0;
};
// Windows.UI.Xaml.Interop.IBindableVector
struct NOVTABLE IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39 : Il2CppIInspectable
{
static const Il2CppGuid IID;
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() = 0;
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() = 0;
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.Extensions.GltfExtension
struct GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082 : public RuntimeObject
{
public:
// System.String Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.Extensions.GltfExtension::ElementName
String_t* ___ElementName_0;
public:
inline static int32_t get_offset_of_ElementName_0() { return static_cast<int32_t>(offsetof(GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082, ___ElementName_0)); }
inline String_t* get_ElementName_0() const { return ___ElementName_0; }
inline String_t** get_address_of_ElementName_0() { return &___ElementName_0; }
inline void set_ElementName_0(String_t* value)
{
___ElementName_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___ElementName_0), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfProperty
struct GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994 : public RuntimeObject
{
public:
// System.Collections.Generic.Dictionary`2<System.String,System.String> Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfProperty::Extensions
Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * ___Extensions_0;
// System.Collections.Generic.Dictionary`2<System.String,System.String> Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfProperty::Extras
Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * ___Extras_1;
public:
inline static int32_t get_offset_of_Extensions_0() { return static_cast<int32_t>(offsetof(GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994, ___Extensions_0)); }
inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * get_Extensions_0() const { return ___Extensions_0; }
inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC ** get_address_of_Extensions_0() { return &___Extensions_0; }
inline void set_Extensions_0(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * value)
{
___Extensions_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Extensions_0), (void*)value);
}
inline static int32_t get_offset_of_Extras_1() { return static_cast<int32_t>(offsetof(GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994, ___Extras_1)); }
inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * get_Extras_1() const { return ___Extras_1; }
inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC ** get_address_of_Extras_1() { return &___Extras_1; }
inline void set_Extras_1(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * value)
{
___Extras_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Extras_1), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2<System.String,System.Int32>
struct Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB : 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_tAD4FDE2B2578C6625A7296B1C46DCB06DCB45186* ___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_t666396E67E50284D48938851873CE562083D67F2 * ___keys_7;
// System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values
ValueCollection_t532E2FD863D0D47B87202BE6B4F7C7EDB5DD7CBF * ___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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___entries_1)); }
inline EntryU5BU5D_tAD4FDE2B2578C6625A7296B1C46DCB06DCB45186* get_entries_1() const { return ___entries_1; }
inline EntryU5BU5D_tAD4FDE2B2578C6625A7296B1C46DCB06DCB45186** get_address_of_entries_1() { return &___entries_1; }
inline void set_entries_1(EntryU5BU5D_tAD4FDE2B2578C6625A7296B1C46DCB06DCB45186* 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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___keys_7)); }
inline KeyCollection_t666396E67E50284D48938851873CE562083D67F2 * get_keys_7() const { return ___keys_7; }
inline KeyCollection_t666396E67E50284D48938851873CE562083D67F2 ** get_address_of_keys_7() { return &___keys_7; }
inline void set_keys_7(KeyCollection_t666396E67E50284D48938851873CE562083D67F2 * 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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ___values_8)); }
inline ValueCollection_t532E2FD863D0D47B87202BE6B4F7C7EDB5DD7CBF * get_values_8() const { return ___values_8; }
inline ValueCollection_t532E2FD863D0D47B87202BE6B4F7C7EDB5DD7CBF ** get_address_of_values_8() { return &___values_8; }
inline void set_values_8(ValueCollection_t532E2FD863D0D47B87202BE6B4F7C7EDB5DD7CBF * 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_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB, ____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.LinkedListNode`1<System.Action`1<System.Boolean>>
struct LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t7043A084478F9C3FC929CC90915FDFB30DA087AE * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E, ___list_0)); }
inline LinkedList_1_t7043A084478F9C3FC929CC90915FDFB30DA087AE * get_list_0() const { return ___list_0; }
inline LinkedList_1_t7043A084478F9C3FC929CC90915FDFB30DA087AE ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t7043A084478F9C3FC929CC90915FDFB30DA087AE * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E, ___next_1)); }
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E, ___prev_2)); }
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E, ___item_3)); }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * get_item_3() const { return ___item_3; }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>
struct LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t4117ED308574900FF722900DB7EA324EC136C2C3 * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7, ___list_0)); }
inline LinkedList_1_t4117ED308574900FF722900DB7EA324EC136C2C3 * get_list_0() const { return ___list_0; }
inline LinkedList_1_t4117ED308574900FF722900DB7EA324EC136C2C3 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t4117ED308574900FF722900DB7EA324EC136C2C3 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7, ___next_1)); }
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7, ___prev_2)); }
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7, ___item_3)); }
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * get_item_3() const { return ___item_3; }
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>
struct LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t9EFBC738D01132AB1127D045C074FD58AFDFFC4A * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430, ___list_0)); }
inline LinkedList_1_t9EFBC738D01132AB1127D045C074FD58AFDFFC4A * get_list_0() const { return ___list_0; }
inline LinkedList_1_t9EFBC738D01132AB1127D045C074FD58AFDFFC4A ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t9EFBC738D01132AB1127D045C074FD58AFDFFC4A * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430, ___next_1)); }
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430, ___prev_2)); }
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430, ___item_3)); }
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * get_item_3() const { return ___item_3; }
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>
struct LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t6144BC4DC3CE893A083E97F058F152F140FD8CCB * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C, ___list_0)); }
inline LinkedList_1_t6144BC4DC3CE893A083E97F058F152F140FD8CCB * get_list_0() const { return ___list_0; }
inline LinkedList_1_t6144BC4DC3CE893A083E97F058F152F140FD8CCB ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t6144BC4DC3CE893A083E97F058F152F140FD8CCB * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C, ___next_1)); }
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C, ___prev_2)); }
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C, ___item_3)); }
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * get_item_3() const { return ___item_3; }
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>
struct LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t914638DB723EB3533AF852E5383F65D891EAD700 * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2, ___list_0)); }
inline LinkedList_1_t914638DB723EB3533AF852E5383F65D891EAD700 * get_list_0() const { return ___list_0; }
inline LinkedList_1_t914638DB723EB3533AF852E5383F65D891EAD700 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t914638DB723EB3533AF852E5383F65D891EAD700 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2, ___next_1)); }
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2, ___prev_2)); }
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2, ___item_3)); }
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * get_item_3() const { return ___item_3; }
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>
struct LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_tB03EFB69ADED063F3573963047B829525FB4981A * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9, ___list_0)); }
inline LinkedList_1_tB03EFB69ADED063F3573963047B829525FB4981A * get_list_0() const { return ___list_0; }
inline LinkedList_1_tB03EFB69ADED063F3573963047B829525FB4981A ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_tB03EFB69ADED063F3573963047B829525FB4981A * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9, ___next_1)); }
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9, ___prev_2)); }
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9, ___item_3)); }
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * get_item_3() const { return ___item_3; }
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>
struct LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_tEA79CC96DFDC71826B649DE6FA672B3A04A2CD58 * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B, ___list_0)); }
inline LinkedList_1_tEA79CC96DFDC71826B649DE6FA672B3A04A2CD58 * get_list_0() const { return ___list_0; }
inline LinkedList_1_tEA79CC96DFDC71826B649DE6FA672B3A04A2CD58 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_tEA79CC96DFDC71826B649DE6FA672B3A04A2CD58 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B, ___next_1)); }
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B, ___prev_2)); }
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B, ___item_3)); }
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * get_item_3() const { return ___item_3; }
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>
struct LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_tB925A54F59E0C0C770F401F28AEAD872701F3D30 * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357, ___list_0)); }
inline LinkedList_1_tB925A54F59E0C0C770F401F28AEAD872701F3D30 * get_list_0() const { return ___list_0; }
inline LinkedList_1_tB925A54F59E0C0C770F401F28AEAD872701F3D30 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_tB925A54F59E0C0C770F401F28AEAD872701F3D30 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357, ___next_1)); }
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357, ___prev_2)); }
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357, ___item_3)); }
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * get_item_3() const { return ___item_3; }
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>
struct LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t7CDE1A012890272D8E90774E1E498125330A3A32 * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157, ___list_0)); }
inline LinkedList_1_t7CDE1A012890272D8E90774E1E498125330A3A32 * get_list_0() const { return ___list_0; }
inline LinkedList_1_t7CDE1A012890272D8E90774E1E498125330A3A32 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t7CDE1A012890272D8E90774E1E498125330A3A32 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157, ___next_1)); }
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157, ___prev_2)); }
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157, ___item_3)); }
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * get_item_3() const { return ___item_3; }
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>
struct LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t8C9E9636C57E48CE6D2FE2D0292743BFDD054C4F * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75, ___list_0)); }
inline LinkedList_1_t8C9E9636C57E48CE6D2FE2D0292743BFDD054C4F * get_list_0() const { return ___list_0; }
inline LinkedList_1_t8C9E9636C57E48CE6D2FE2D0292743BFDD054C4F ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t8C9E9636C57E48CE6D2FE2D0292743BFDD054C4F * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75, ___next_1)); }
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75, ___prev_2)); }
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75, ___item_3)); }
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * get_item_3() const { return ___item_3; }
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>
struct LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 : public RuntimeObject
{
public:
// System.Collections.Generic.LinkedList`1<T> System.Collections.Generic.LinkedListNode`1::list
LinkedList_1_t2C1388E86A4B9BF93AFCF3C6D95FA1F2B18254A2 * ___list_0;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::next
LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * ___next_1;
// System.Collections.Generic.LinkedListNode`1<T> System.Collections.Generic.LinkedListNode`1::prev
LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * ___prev_2;
// T System.Collections.Generic.LinkedListNode`1::item
Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * ___item_3;
public:
inline static int32_t get_offset_of_list_0() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561, ___list_0)); }
inline LinkedList_1_t2C1388E86A4B9BF93AFCF3C6D95FA1F2B18254A2 * get_list_0() const { return ___list_0; }
inline LinkedList_1_t2C1388E86A4B9BF93AFCF3C6D95FA1F2B18254A2 ** get_address_of_list_0() { return &___list_0; }
inline void set_list_0(LinkedList_1_t2C1388E86A4B9BF93AFCF3C6D95FA1F2B18254A2 * value)
{
___list_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value);
}
inline static int32_t get_offset_of_next_1() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561, ___next_1)); }
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * get_next_1() const { return ___next_1; }
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 ** get_address_of_next_1() { return &___next_1; }
inline void set_next_1(LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * value)
{
___next_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___next_1), (void*)value);
}
inline static int32_t get_offset_of_prev_2() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561, ___prev_2)); }
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * get_prev_2() const { return ___prev_2; }
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 ** get_address_of_prev_2() { return &___prev_2; }
inline void set_prev_2(LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * value)
{
___prev_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___prev_2), (void*)value);
}
inline static int32_t get_offset_of_item_3() { return static_cast<int32_t>(offsetof(LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561, ___item_3)); }
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * get_item_3() const { return ___item_3; }
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A ** get_address_of_item_3() { return &___item_3; }
inline void set_item_3(Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * value)
{
___item_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___item_3), (void*)value);
}
};
// System.Collections.Generic.List`1<UnityEngine.UI.IMaterialModifier>
struct List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C : public RuntimeObject
{
public:
// T[] System.Collections.Generic.List`1::_items
IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14* ____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_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C, ____items_1)); }
inline IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14* get__items_1() const { return ____items_1; }
inline IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14** get_address_of__items_1() { return &____items_1; }
inline void set__items_1(IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14* 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_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C, ____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_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C, ____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_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C, ____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_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C_StaticFields
{
public:
// T[] System.Collections.Generic.List`1::_emptyArray
IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14* ____emptyArray_5;
public:
inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C_StaticFields, ____emptyArray_5)); }
inline IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14* get__emptyArray_5() const { return ____emptyArray_5; }
inline IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14** get_address_of__emptyArray_5() { return &____emptyArray_5; }
inline void set__emptyArray_5(IMaterialModifierU5BU5D_tD9DB4C76C93A80CBF25FF086D0AAA974AD22EC14* value)
{
____emptyArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (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.TMP_Dropdown_OptionData
struct OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B : public RuntimeObject
{
public:
// System.String TMPro.TMP_Dropdown_OptionData::m_Text
String_t* ___m_Text_0;
// UnityEngine.Sprite TMPro.TMP_Dropdown_OptionData::m_Image
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___m_Image_1;
public:
inline static int32_t get_offset_of_m_Text_0() { return static_cast<int32_t>(offsetof(OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B, ___m_Text_0)); }
inline String_t* get_m_Text_0() const { return ___m_Text_0; }
inline String_t** get_address_of_m_Text_0() { return &___m_Text_0; }
inline void set_m_Text_0(String_t* value)
{
___m_Text_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_0), (void*)value);
}
inline static int32_t get_offset_of_m_Image_1() { return static_cast<int32_t>(offsetof(OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B, ___m_Image_1)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_m_Image_1() const { return ___m_Image_1; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_m_Image_1() { return &___m_Image_1; }
inline void set_m_Image_1(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___m_Image_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_1), (void*)value);
}
};
// TMPro.TMP_MaterialManager_FallbackMaterial
struct FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A : public RuntimeObject
{
public:
// System.Int32 TMPro.TMP_MaterialManager_FallbackMaterial::baseID
int32_t ___baseID_0;
// UnityEngine.Material TMPro.TMP_MaterialManager_FallbackMaterial::baseMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___baseMaterial_1;
// System.Int64 TMPro.TMP_MaterialManager_FallbackMaterial::fallbackID
int64_t ___fallbackID_2;
// UnityEngine.Material TMPro.TMP_MaterialManager_FallbackMaterial::fallbackMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___fallbackMaterial_3;
// System.Int32 TMPro.TMP_MaterialManager_FallbackMaterial::count
int32_t ___count_4;
public:
inline static int32_t get_offset_of_baseID_0() { return static_cast<int32_t>(offsetof(FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A, ___baseID_0)); }
inline int32_t get_baseID_0() const { return ___baseID_0; }
inline int32_t* get_address_of_baseID_0() { return &___baseID_0; }
inline void set_baseID_0(int32_t value)
{
___baseID_0 = value;
}
inline static int32_t get_offset_of_baseMaterial_1() { return static_cast<int32_t>(offsetof(FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A, ___baseMaterial_1)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_baseMaterial_1() const { return ___baseMaterial_1; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_baseMaterial_1() { return &___baseMaterial_1; }
inline void set_baseMaterial_1(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___baseMaterial_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___baseMaterial_1), (void*)value);
}
inline static int32_t get_offset_of_fallbackID_2() { return static_cast<int32_t>(offsetof(FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A, ___fallbackID_2)); }
inline int64_t get_fallbackID_2() const { return ___fallbackID_2; }
inline int64_t* get_address_of_fallbackID_2() { return &___fallbackID_2; }
inline void set_fallbackID_2(int64_t value)
{
___fallbackID_2 = value;
}
inline static int32_t get_offset_of_fallbackMaterial_3() { return static_cast<int32_t>(offsetof(FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A, ___fallbackMaterial_3)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_fallbackMaterial_3() const { return ___fallbackMaterial_3; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_fallbackMaterial_3() { return &___fallbackMaterial_3; }
inline void set_fallbackMaterial_3(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___fallbackMaterial_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___fallbackMaterial_3), (void*)value);
}
inline static int32_t get_offset_of_count_4() { return static_cast<int32_t>(offsetof(FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A, ___count_4)); }
inline int32_t get_count_4() const { return ___count_4; }
inline int32_t* get_address_of_count_4() { return &___count_4; }
inline void set_count_4(int32_t value)
{
___count_4 = value;
}
};
// TMPro.TMP_MaterialManager_MaskingMaterial
struct MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B : public RuntimeObject
{
public:
// UnityEngine.Material TMPro.TMP_MaterialManager_MaskingMaterial::baseMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___baseMaterial_0;
// UnityEngine.Material TMPro.TMP_MaterialManager_MaskingMaterial::stencilMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___stencilMaterial_1;
// System.Int32 TMPro.TMP_MaterialManager_MaskingMaterial::count
int32_t ___count_2;
// System.Int32 TMPro.TMP_MaterialManager_MaskingMaterial::stencilID
int32_t ___stencilID_3;
public:
inline static int32_t get_offset_of_baseMaterial_0() { return static_cast<int32_t>(offsetof(MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B, ___baseMaterial_0)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_baseMaterial_0() const { return ___baseMaterial_0; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_baseMaterial_0() { return &___baseMaterial_0; }
inline void set_baseMaterial_0(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___baseMaterial_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___baseMaterial_0), (void*)value);
}
inline static int32_t get_offset_of_stencilMaterial_1() { return static_cast<int32_t>(offsetof(MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B, ___stencilMaterial_1)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_stencilMaterial_1() const { return ___stencilMaterial_1; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_stencilMaterial_1() { return &___stencilMaterial_1; }
inline void set_stencilMaterial_1(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___stencilMaterial_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___stencilMaterial_1), (void*)value);
}
inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B, ___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_stencilID_3() { return static_cast<int32_t>(offsetof(MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B, ___stencilID_3)); }
inline int32_t get_stencilID_3() const { return ___stencilID_3; }
inline int32_t* get_address_of_stencilID_3() { return &___stencilID_3; }
inline void set_stencilID_3(int32_t value)
{
___stencilID_3 = value;
}
};
// TMPro.TMP_Style
struct TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD : public RuntimeObject
{
public:
// System.String TMPro.TMP_Style::m_Name
String_t* ___m_Name_0;
// System.Int32 TMPro.TMP_Style::m_HashCode
int32_t ___m_HashCode_1;
// System.String TMPro.TMP_Style::m_OpeningDefinition
String_t* ___m_OpeningDefinition_2;
// System.String TMPro.TMP_Style::m_ClosingDefinition
String_t* ___m_ClosingDefinition_3;
// System.Int32[] TMPro.TMP_Style::m_OpeningTagArray
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___m_OpeningTagArray_4;
// System.Int32[] TMPro.TMP_Style::m_ClosingTagArray
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___m_ClosingTagArray_5;
public:
inline static int32_t get_offset_of_m_Name_0() { return static_cast<int32_t>(offsetof(TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD, ___m_Name_0)); }
inline String_t* get_m_Name_0() const { return ___m_Name_0; }
inline String_t** get_address_of_m_Name_0() { return &___m_Name_0; }
inline void set_m_Name_0(String_t* value)
{
___m_Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_0), (void*)value);
}
inline static int32_t get_offset_of_m_HashCode_1() { return static_cast<int32_t>(offsetof(TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD, ___m_HashCode_1)); }
inline int32_t get_m_HashCode_1() const { return ___m_HashCode_1; }
inline int32_t* get_address_of_m_HashCode_1() { return &___m_HashCode_1; }
inline void set_m_HashCode_1(int32_t value)
{
___m_HashCode_1 = value;
}
inline static int32_t get_offset_of_m_OpeningDefinition_2() { return static_cast<int32_t>(offsetof(TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD, ___m_OpeningDefinition_2)); }
inline String_t* get_m_OpeningDefinition_2() const { return ___m_OpeningDefinition_2; }
inline String_t** get_address_of_m_OpeningDefinition_2() { return &___m_OpeningDefinition_2; }
inline void set_m_OpeningDefinition_2(String_t* value)
{
___m_OpeningDefinition_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OpeningDefinition_2), (void*)value);
}
inline static int32_t get_offset_of_m_ClosingDefinition_3() { return static_cast<int32_t>(offsetof(TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD, ___m_ClosingDefinition_3)); }
inline String_t* get_m_ClosingDefinition_3() const { return ___m_ClosingDefinition_3; }
inline String_t** get_address_of_m_ClosingDefinition_3() { return &___m_ClosingDefinition_3; }
inline void set_m_ClosingDefinition_3(String_t* value)
{
___m_ClosingDefinition_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ClosingDefinition_3), (void*)value);
}
inline static int32_t get_offset_of_m_OpeningTagArray_4() { return static_cast<int32_t>(offsetof(TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD, ___m_OpeningTagArray_4)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_m_OpeningTagArray_4() const { return ___m_OpeningTagArray_4; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_m_OpeningTagArray_4() { return &___m_OpeningTagArray_4; }
inline void set_m_OpeningTagArray_4(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___m_OpeningTagArray_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OpeningTagArray_4), (void*)value);
}
inline static int32_t get_offset_of_m_ClosingTagArray_5() { return static_cast<int32_t>(offsetof(TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD, ___m_ClosingTagArray_5)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_m_ClosingTagArray_5() const { return ___m_ClosingTagArray_5; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_m_ClosingTagArray_5() { return &___m_ClosingTagArray_5; }
inline void set_m_ClosingTagArray_5(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___m_ClosingTagArray_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ClosingTagArray_5), (void*)value);
}
};
// TMPro.TMP_TextElement_Legacy
struct TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05 : public RuntimeObject
{
public:
// System.Int32 TMPro.TMP_TextElement_Legacy::id
int32_t ___id_0;
// System.Single TMPro.TMP_TextElement_Legacy::x
float ___x_1;
// System.Single TMPro.TMP_TextElement_Legacy::y
float ___y_2;
// System.Single TMPro.TMP_TextElement_Legacy::width
float ___width_3;
// System.Single TMPro.TMP_TextElement_Legacy::height
float ___height_4;
// System.Single TMPro.TMP_TextElement_Legacy::xOffset
float ___xOffset_5;
// System.Single TMPro.TMP_TextElement_Legacy::yOffset
float ___yOffset_6;
// System.Single TMPro.TMP_TextElement_Legacy::xAdvance
float ___xAdvance_7;
// System.Single TMPro.TMP_TextElement_Legacy::scale
float ___scale_8;
public:
inline static int32_t get_offset_of_id_0() { return static_cast<int32_t>(offsetof(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___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_x_1() { return static_cast<int32_t>(offsetof(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___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(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___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_width_3() { return static_cast<int32_t>(offsetof(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___width_3)); }
inline float get_width_3() const { return ___width_3; }
inline float* get_address_of_width_3() { return &___width_3; }
inline void set_width_3(float value)
{
___width_3 = value;
}
inline static int32_t get_offset_of_height_4() { return static_cast<int32_t>(offsetof(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___height_4)); }
inline float get_height_4() const { return ___height_4; }
inline float* get_address_of_height_4() { return &___height_4; }
inline void set_height_4(float value)
{
___height_4 = value;
}
inline static int32_t get_offset_of_xOffset_5() { return static_cast<int32_t>(offsetof(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___xOffset_5)); }
inline float get_xOffset_5() const { return ___xOffset_5; }
inline float* get_address_of_xOffset_5() { return &___xOffset_5; }
inline void set_xOffset_5(float value)
{
___xOffset_5 = value;
}
inline static int32_t get_offset_of_yOffset_6() { return static_cast<int32_t>(offsetof(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___yOffset_6)); }
inline float get_yOffset_6() const { return ___yOffset_6; }
inline float* get_address_of_yOffset_6() { return &___yOffset_6; }
inline void set_yOffset_6(float value)
{
___yOffset_6 = value;
}
inline static int32_t get_offset_of_xAdvance_7() { return static_cast<int32_t>(offsetof(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___xAdvance_7)); }
inline float get_xAdvance_7() const { return ___xAdvance_7; }
inline float* get_address_of_xAdvance_7() { return &___xAdvance_7; }
inline void set_xAdvance_7(float value)
{
___xAdvance_7 = value;
}
inline static int32_t get_offset_of_scale_8() { return static_cast<int32_t>(offsetof(TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05, ___scale_8)); }
inline float get_scale_8() const { return ___scale_8; }
inline float* get_address_of_scale_8() { return &___scale_8; }
inline void set_scale_8(float value)
{
___scale_8 = value;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannel
struct GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF : public GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannel::sampler
int32_t ___sampler_2;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannelTarget Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannel::target
GltfAnimationChannelTarget_tBC3EBFA52714F2AF8D988DF59C813F81E3ACC024 * ___target_3;
public:
inline static int32_t get_offset_of_sampler_2() { return static_cast<int32_t>(offsetof(GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF, ___sampler_2)); }
inline int32_t get_sampler_2() const { return ___sampler_2; }
inline int32_t* get_address_of_sampler_2() { return &___sampler_2; }
inline void set_sampler_2(int32_t value)
{
___sampler_2 = value;
}
inline static int32_t get_offset_of_target_3() { return static_cast<int32_t>(offsetof(GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF, ___target_3)); }
inline GltfAnimationChannelTarget_tBC3EBFA52714F2AF8D988DF59C813F81E3ACC024 * get_target_3() const { return ___target_3; }
inline GltfAnimationChannelTarget_tBC3EBFA52714F2AF8D988DF59C813F81E3ACC024 ** get_address_of_target_3() { return &___target_3; }
inline void set_target_3(GltfAnimationChannelTarget_tBC3EBFA52714F2AF8D988DF59C813F81E3ACC024 * value)
{
___target_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___target_3), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfChildOfRootProperty
struct GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E : public GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994
{
public:
// System.String Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfChildOfRootProperty::name
String_t* ___name_2;
public:
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E, ___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);
}
};
// System.Boolean
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C
{
public:
// System.Boolean System.Boolean::m_value
bool ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C, ___m_value_0)); }
inline bool get_m_value_0() const { return ___m_value_0; }
inline bool* get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(bool value)
{
___m_value_0 = value;
}
};
struct Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields
{
public:
// System.String System.Boolean::TrueString
String_t* ___TrueString_5;
// System.String System.Boolean::FalseString
String_t* ___FalseString_6;
public:
inline static int32_t get_offset_of_TrueString_5() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___TrueString_5)); }
inline String_t* get_TrueString_5() const { return ___TrueString_5; }
inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; }
inline void set_TrueString_5(String_t* value)
{
___TrueString_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value);
}
inline static int32_t get_offset_of_FalseString_6() { return static_cast<int32_t>(offsetof(Boolean_tB53F6830F670160873277339AA58F15CAED4399C_StaticFields, ___FalseString_6)); }
inline String_t* get_FalseString_6() const { return ___FalseString_6; }
inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; }
inline void set_FalseString_6(String_t* value)
{
___FalseString_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`1<System.Boolean>,System.Collections.Generic.LinkedListNode`1<System.Action`1<System.Boolean>>>
struct Entry_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F
{
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
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F, ___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_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F, ___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_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F, ___key_2)); }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * get_key_2() const { return ___key_2; }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * 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_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F, ___value_3)); }
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`1<TMPro.TMP_ColorGradient>,System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>>
struct Entry_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF
{
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
Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF, ___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_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF, ___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_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF, ___key_2)); }
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * get_key_2() const { return ___key_2; }
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * 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_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF, ___value_3)); }
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`1<UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>>
struct Entry_t5574962500A60239342400606E94D05F4CC73EBB
{
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
Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t5574962500A60239342400606E94D05F4CC73EBB, ___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_t5574962500A60239342400606E94D05F4CC73EBB, ___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_t5574962500A60239342400606E94D05F4CC73EBB, ___key_2)); }
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * get_key_2() const { return ___key_2; }
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * 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_t5574962500A60239342400606E94D05F4CC73EBB, ___value_3)); }
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,System.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>>
struct Entry_tC9D72886F376EF3D1A6DE400B587F78E3070B343
{
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
Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC9D72886F376EF3D1A6DE400B587F78E3070B343, ___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_tC9D72886F376EF3D1A6DE400B587F78E3070B343, ___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_tC9D72886F376EF3D1A6DE400B587F78E3070B343, ___key_2)); }
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * get_key_2() const { return ___key_2; }
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * 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_tC9D72886F376EF3D1A6DE400B587F78E3070B343, ___value_3)); }
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>>
struct Entry_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980
{
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
Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980, ___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_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980, ___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_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980, ___key_2)); }
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * get_key_2() const { return ___key_2; }
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * 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_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980, ___value_3)); }
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TextMeshPro>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>>
struct Entry_tA820A14844832B082319ED6A0C140F1D289F3A9C
{
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
Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tA820A14844832B082319ED6A0C140F1D289F3A9C, ___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_tA820A14844832B082319ED6A0C140F1D289F3A9C, ___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_tA820A14844832B082319ED6A0C140F1D289F3A9C, ___key_2)); }
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * get_key_2() const { return ___key_2; }
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * 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_tA820A14844832B082319ED6A0C140F1D289F3A9C, ___value_3)); }
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>>
struct Entry_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0
{
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
Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0, ___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_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0, ___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_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0, ___key_2)); }
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * get_key_2() const { return ___key_2; }
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * 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_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0, ___value_3)); }
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>>
struct Entry_t825BD7658ABEC8CF3AF66279DDD4338087F15165
{
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
Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t825BD7658ABEC8CF3AF66279DDD4338087F15165, ___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_t825BD7658ABEC8CF3AF66279DDD4338087F15165, ___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_t825BD7658ABEC8CF3AF66279DDD4338087F15165, ___key_2)); }
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * get_key_2() const { return ___key_2; }
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * 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_t825BD7658ABEC8CF3AF66279DDD4338087F15165, ___value_3)); }
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>>
struct Entry_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5
{
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
Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5, ___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_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5, ___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_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5, ___key_2)); }
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * get_key_2() const { return ___key_2; }
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * 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_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5, ___value_3)); }
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>>
struct Entry_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC
{
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
Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC, ___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_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC, ___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_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC, ___key_2)); }
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * get_key_2() const { return ___key_2; }
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * 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_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC, ___value_3)); }
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>>
struct Entry_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6
{
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
Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * ___key_2;
// TValue System.Collections.Generic.Dictionary`2_Entry::value
LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6, ___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_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6, ___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_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6, ___key_2)); }
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * get_key_2() const { return ___key_2; }
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A ** get_address_of_key_2() { return &___key_2; }
inline void set_key_2(Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * 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_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6, ___value_3)); }
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * get_value_3() const { return ___value_3; }
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// 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.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,TMPro.TMP_Style>
struct Entry_t6A2003C8C036420782DA8B92A453D6A2DA666D7B
{
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
TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t6A2003C8C036420782DA8B92A453D6A2DA666D7B, ___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_t6A2003C8C036420782DA8B92A453D6A2DA666D7B, ___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_t6A2003C8C036420782DA8B92A453D6A2DA666D7B, ___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_t6A2003C8C036420782DA8B92A453D6A2DA666D7B, ___value_3)); }
inline TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * get_value_3() const { return ___value_3; }
inline TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * 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.Int64,TMPro.TMP_GlyphPairAdjustmentRecord>
struct Entry_t14172E9A589F7F341C82E6E381D5E68F939F44FD
{
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
TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t14172E9A589F7F341C82E6E381D5E68F939F44FD, ___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_t14172E9A589F7F341C82E6E381D5E68F939F44FD, ___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_t14172E9A589F7F341C82E6E381D5E68F939F44FD, ___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_t14172E9A589F7F341C82E6E381D5E68F939F44FD, ___value_3)); }
inline TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * get_value_3() const { return ___value_3; }
inline TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * value)
{
___value_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_3), (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int64,TMPro.TMP_MaterialManager_FallbackMaterial>
struct Entry_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8
{
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
FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * ___value_3;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Entry_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8, ___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_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8, ___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_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8, ___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_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8, ___value_3)); }
inline FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * get_value_3() const { return ___value_3; }
inline FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A ** get_address_of_value_3() { return &___value_3; }
inline void set_value_3(FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * 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.KeyValuePair`2<System.Action`1<System.Boolean>,System.Collections.Generic.LinkedListNode`1<System.Action`1<System.Boolean>>>
struct KeyValuePair_2_t2258B69C54E20433F1DC1AB644245A5C533C864F
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t2258B69C54E20433F1DC1AB644245A5C533C864F, ___key_0)); }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * get_key_0() const { return ___key_0; }
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * 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_t2258B69C54E20433F1DC1AB644245A5C533C864F, ___value_1)); }
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`1<TMPro.TMP_ColorGradient>,System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>>
struct KeyValuePair_2_tA10BD729F2B4090583BE227D36F1319B1FF329FE
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tA10BD729F2B4090583BE227D36F1319B1FF329FE, ___key_0)); }
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * get_key_0() const { return ___key_0; }
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * 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_tA10BD729F2B4090583BE227D36F1319B1FF329FE, ___value_1)); }
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`1<UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>>
struct KeyValuePair_2_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F, ___key_0)); }
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * get_key_0() const { return ___key_0; }
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * 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_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F, ___value_1)); }
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,System.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>>
struct KeyValuePair_2_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9, ___key_0)); }
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * get_key_0() const { return ___key_0; }
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * 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_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9, ___value_1)); }
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>>
struct KeyValuePair_2_t3FD7FFA11641B37F1E69A7778826C9B2D0262956
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t3FD7FFA11641B37F1E69A7778826C9B2D0262956, ___key_0)); }
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * get_key_0() const { return ___key_0; }
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * 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_t3FD7FFA11641B37F1E69A7778826C9B2D0262956, ___value_1)); }
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TextMeshPro>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>>
struct KeyValuePair_2_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711, ___key_0)); }
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * get_key_0() const { return ___key_0; }
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * 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_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711, ___value_1)); }
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>>
struct KeyValuePair_2_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15, ___key_0)); }
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * get_key_0() const { return ___key_0; }
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * 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_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15, ___value_1)); }
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>>
struct KeyValuePair_2_t77B0F2DF0A9772B335725BC6855744AE5157CB40
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t77B0F2DF0A9772B335725BC6855744AE5157CB40, ___key_0)); }
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * get_key_0() const { return ___key_0; }
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * 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_t77B0F2DF0A9772B335725BC6855744AE5157CB40, ___value_1)); }
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>>
struct KeyValuePair_2_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD, ___key_0)); }
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * get_key_0() const { return ___key_0; }
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * 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_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD, ___value_1)); }
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>>
struct KeyValuePair_2_tB4446E2C7CFC86B6223F9114A5464047923924D6
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tB4446E2C7CFC86B6223F9114A5464047923924D6, ___key_0)); }
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * get_key_0() const { return ___key_0; }
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * 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_tB4446E2C7CFC86B6223F9114A5464047923924D6, ___value_1)); }
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>>
struct KeyValuePair_2_tE10D1BEC6098353060BCECC376C0791CDE82B260
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE10D1BEC6098353060BCECC376C0791CDE82B260, ___key_0)); }
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * get_key_0() const { return ___key_0; }
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A ** get_address_of_key_0() { return &___key_0; }
inline void set_key_0(Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * 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_tE10D1BEC6098353060BCECC376C0791CDE82B260, ___value_1)); }
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * get_value_1() const { return ___value_1; }
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (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.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,TMPro.TMP_Style>
struct KeyValuePair_2_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC, ___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_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC, ___value_1)); }
inline TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * get_value_1() const { return ___value_1; }
inline TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int64,TMPro.TMP_GlyphPairAdjustmentRecord>
struct KeyValuePair_2_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int64_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7, ___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_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7, ___value_1)); }
inline TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * get_value_1() const { return ___value_1; }
inline TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int64,TMPro.TMP_MaterialManager_FallbackMaterial>
struct KeyValuePair_2_t997A949BD21D2B94D9A9593C9BA9A977D45340DF
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
int64_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t997A949BD21D2B94D9A9593C9BA9A977D45340DF, ___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_t997A949BD21D2B94D9A9593C9BA9A977D45340DF, ___value_1)); }
inline FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * get_value_1() const { return ___value_1; }
inline FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * 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,TMPro.TMP_Character>
struct KeyValuePair_2_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E
{
public:
// TKey System.Collections.Generic.KeyValuePair`2::key
uint32_t ___key_0;
// TValue System.Collections.Generic.KeyValuePair`2::value
TMP_Character_t1875AACA978396521498D6A699052C187903553D * ___value_1;
public:
inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E, ___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_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E, ___value_1)); }
inline TMP_Character_t1875AACA978396521498D6A699052C187903553D * get_value_1() const { return ___value_1; }
inline TMP_Character_t1875AACA978396521498D6A699052C187903553D ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(TMP_Character_t1875AACA978396521498D6A699052C187903553D * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)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.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.Set`1_Slot<Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver>
struct Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE
{
public:
// System.Int32 System.Linq.Set`1_Slot::hashCode
int32_t ___hashCode_0;
// TElement System.Linq.Set`1_Slot::value
Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 * ___value_1;
// System.Int32 System.Linq.Set`1_Slot::next
int32_t ___next_2;
public:
inline static int32_t get_offset_of_hashCode_0() { return static_cast<int32_t>(offsetof(Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE, ___hashCode_0)); }
inline int32_t get_hashCode_0() const { return ___hashCode_0; }
inline int32_t* get_address_of_hashCode_0() { return &___hashCode_0; }
inline void set_hashCode_0(int32_t value)
{
___hashCode_0 = value;
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE, ___value_1)); }
inline Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 * get_value_1() const { return ___value_1; }
inline Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((void**)(&___value_1), (void*)value);
}
inline static int32_t get_offset_of_next_2() { return static_cast<int32_t>(offsetof(Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE, ___next_2)); }
inline int32_t get_next_2() const { return ___next_2; }
inline int32_t* get_address_of_next_2() { return &___next_2; }
inline void set_next_2(int32_t value)
{
___next_2 = value;
}
};
// System.Void
struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017
{
public:
union
{
struct
{
};
uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1];
};
public:
};
// TMPro.GlyphValueRecord_Legacy
struct GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A
{
public:
// System.Single TMPro.GlyphValueRecord_Legacy::xPlacement
float ___xPlacement_0;
// System.Single TMPro.GlyphValueRecord_Legacy::yPlacement
float ___yPlacement_1;
// System.Single TMPro.GlyphValueRecord_Legacy::xAdvance
float ___xAdvance_2;
// System.Single TMPro.GlyphValueRecord_Legacy::yAdvance
float ___yAdvance_3;
public:
inline static int32_t get_offset_of_xPlacement_0() { return static_cast<int32_t>(offsetof(GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A, ___xPlacement_0)); }
inline float get_xPlacement_0() const { return ___xPlacement_0; }
inline float* get_address_of_xPlacement_0() { return &___xPlacement_0; }
inline void set_xPlacement_0(float value)
{
___xPlacement_0 = value;
}
inline static int32_t get_offset_of_yPlacement_1() { return static_cast<int32_t>(offsetof(GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A, ___yPlacement_1)); }
inline float get_yPlacement_1() const { return ___yPlacement_1; }
inline float* get_address_of_yPlacement_1() { return &___yPlacement_1; }
inline void set_yPlacement_1(float value)
{
___yPlacement_1 = value;
}
inline static int32_t get_offset_of_xAdvance_2() { return static_cast<int32_t>(offsetof(GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A, ___xAdvance_2)); }
inline float get_xAdvance_2() const { return ___xAdvance_2; }
inline float* get_address_of_xAdvance_2() { return &___xAdvance_2; }
inline void set_xAdvance_2(float value)
{
___xAdvance_2 = value;
}
inline static int32_t get_offset_of_yAdvance_3() { return static_cast<int32_t>(offsetof(GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A, ___yAdvance_3)); }
inline float get_yAdvance_3() const { return ___yAdvance_3; }
inline float* get_address_of_yAdvance_3() { return &___yAdvance_3; }
inline void set_yAdvance_3(float value)
{
___yAdvance_3 = value;
}
};
// 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_FontStyleStack
struct TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84
{
public:
// System.Byte TMPro.TMP_FontStyleStack::bold
uint8_t ___bold_0;
// System.Byte TMPro.TMP_FontStyleStack::italic
uint8_t ___italic_1;
// System.Byte TMPro.TMP_FontStyleStack::underline
uint8_t ___underline_2;
// System.Byte TMPro.TMP_FontStyleStack::strikethrough
uint8_t ___strikethrough_3;
// System.Byte TMPro.TMP_FontStyleStack::highlight
uint8_t ___highlight_4;
// System.Byte TMPro.TMP_FontStyleStack::superscript
uint8_t ___superscript_5;
// System.Byte TMPro.TMP_FontStyleStack::subscript
uint8_t ___subscript_6;
// System.Byte TMPro.TMP_FontStyleStack::uppercase
uint8_t ___uppercase_7;
// System.Byte TMPro.TMP_FontStyleStack::lowercase
uint8_t ___lowercase_8;
// System.Byte TMPro.TMP_FontStyleStack::smallcaps
uint8_t ___smallcaps_9;
public:
inline static int32_t get_offset_of_bold_0() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___bold_0)); }
inline uint8_t get_bold_0() const { return ___bold_0; }
inline uint8_t* get_address_of_bold_0() { return &___bold_0; }
inline void set_bold_0(uint8_t value)
{
___bold_0 = value;
}
inline static int32_t get_offset_of_italic_1() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___italic_1)); }
inline uint8_t get_italic_1() const { return ___italic_1; }
inline uint8_t* get_address_of_italic_1() { return &___italic_1; }
inline void set_italic_1(uint8_t value)
{
___italic_1 = value;
}
inline static int32_t get_offset_of_underline_2() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___underline_2)); }
inline uint8_t get_underline_2() const { return ___underline_2; }
inline uint8_t* get_address_of_underline_2() { return &___underline_2; }
inline void set_underline_2(uint8_t value)
{
___underline_2 = value;
}
inline static int32_t get_offset_of_strikethrough_3() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___strikethrough_3)); }
inline uint8_t get_strikethrough_3() const { return ___strikethrough_3; }
inline uint8_t* get_address_of_strikethrough_3() { return &___strikethrough_3; }
inline void set_strikethrough_3(uint8_t value)
{
___strikethrough_3 = value;
}
inline static int32_t get_offset_of_highlight_4() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___highlight_4)); }
inline uint8_t get_highlight_4() const { return ___highlight_4; }
inline uint8_t* get_address_of_highlight_4() { return &___highlight_4; }
inline void set_highlight_4(uint8_t value)
{
___highlight_4 = value;
}
inline static int32_t get_offset_of_superscript_5() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___superscript_5)); }
inline uint8_t get_superscript_5() const { return ___superscript_5; }
inline uint8_t* get_address_of_superscript_5() { return &___superscript_5; }
inline void set_superscript_5(uint8_t value)
{
___superscript_5 = value;
}
inline static int32_t get_offset_of_subscript_6() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___subscript_6)); }
inline uint8_t get_subscript_6() const { return ___subscript_6; }
inline uint8_t* get_address_of_subscript_6() { return &___subscript_6; }
inline void set_subscript_6(uint8_t value)
{
___subscript_6 = value;
}
inline static int32_t get_offset_of_uppercase_7() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___uppercase_7)); }
inline uint8_t get_uppercase_7() const { return ___uppercase_7; }
inline uint8_t* get_address_of_uppercase_7() { return &___uppercase_7; }
inline void set_uppercase_7(uint8_t value)
{
___uppercase_7 = value;
}
inline static int32_t get_offset_of_lowercase_8() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___lowercase_8)); }
inline uint8_t get_lowercase_8() const { return ___lowercase_8; }
inline uint8_t* get_address_of_lowercase_8() { return &___lowercase_8; }
inline void set_lowercase_8(uint8_t value)
{
___lowercase_8 = value;
}
inline static int32_t get_offset_of_smallcaps_9() { return static_cast<int32_t>(offsetof(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84, ___smallcaps_9)); }
inline uint8_t get_smallcaps_9() const { return ___smallcaps_9; }
inline uint8_t* get_address_of_smallcaps_9() { return &___smallcaps_9; }
inline void set_smallcaps_9(uint8_t value)
{
___smallcaps_9 = 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_Glyph
struct TMP_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C : public TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05
{
public:
public:
};
// TMPro.TMP_GlyphValueRecord
struct TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8
{
public:
// System.Single TMPro.TMP_GlyphValueRecord::m_XPlacement
float ___m_XPlacement_0;
// System.Single TMPro.TMP_GlyphValueRecord::m_YPlacement
float ___m_YPlacement_1;
// System.Single TMPro.TMP_GlyphValueRecord::m_XAdvance
float ___m_XAdvance_2;
// System.Single TMPro.TMP_GlyphValueRecord::m_YAdvance
float ___m_YAdvance_3;
public:
inline static int32_t get_offset_of_m_XPlacement_0() { return static_cast<int32_t>(offsetof(TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8, ___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(TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8, ___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(TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8, ___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(TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8, ___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;
}
};
// 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_RichTextTagStack`1<System.Int32>
struct TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F
{
public:
// T[] TMPro.TMP_RichTextTagStack`1::m_ItemStack
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___m_ItemStack_0;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Index
int32_t ___m_Index_1;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Capacity
int32_t ___m_Capacity_2;
// T TMPro.TMP_RichTextTagStack`1::m_DefaultItem
int32_t ___m_DefaultItem_3;
public:
inline static int32_t get_offset_of_m_ItemStack_0() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F, ___m_ItemStack_0)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_m_ItemStack_0() const { return ___m_ItemStack_0; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_m_ItemStack_0() { return &___m_ItemStack_0; }
inline void set_m_ItemStack_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___m_ItemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemStack_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F, ___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;
}
inline static int32_t get_offset_of_m_Capacity_2() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F, ___m_Capacity_2)); }
inline int32_t get_m_Capacity_2() const { return ___m_Capacity_2; }
inline int32_t* get_address_of_m_Capacity_2() { return &___m_Capacity_2; }
inline void set_m_Capacity_2(int32_t value)
{
___m_Capacity_2 = value;
}
inline static int32_t get_offset_of_m_DefaultItem_3() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F, ___m_DefaultItem_3)); }
inline int32_t get_m_DefaultItem_3() const { return ___m_DefaultItem_3; }
inline int32_t* get_address_of_m_DefaultItem_3() { return &___m_DefaultItem_3; }
inline void set_m_DefaultItem_3(int32_t value)
{
___m_DefaultItem_3 = value;
}
};
// TMPro.TMP_RichTextTagStack`1<System.Single>
struct TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3
{
public:
// T[] TMPro.TMP_RichTextTagStack`1::m_ItemStack
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___m_ItemStack_0;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Index
int32_t ___m_Index_1;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Capacity
int32_t ___m_Capacity_2;
// T TMPro.TMP_RichTextTagStack`1::m_DefaultItem
float ___m_DefaultItem_3;
public:
inline static int32_t get_offset_of_m_ItemStack_0() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3, ___m_ItemStack_0)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_m_ItemStack_0() const { return ___m_ItemStack_0; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_m_ItemStack_0() { return &___m_ItemStack_0; }
inline void set_m_ItemStack_0(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___m_ItemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemStack_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3, ___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;
}
inline static int32_t get_offset_of_m_Capacity_2() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3, ___m_Capacity_2)); }
inline int32_t get_m_Capacity_2() const { return ___m_Capacity_2; }
inline int32_t* get_address_of_m_Capacity_2() { return &___m_Capacity_2; }
inline void set_m_Capacity_2(int32_t value)
{
___m_Capacity_2 = value;
}
inline static int32_t get_offset_of_m_DefaultItem_3() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3, ___m_DefaultItem_3)); }
inline float get_m_DefaultItem_3() const { return ___m_DefaultItem_3; }
inline float* get_address_of_m_DefaultItem_3() { return &___m_DefaultItem_3; }
inline void set_m_DefaultItem_3(float value)
{
___m_DefaultItem_3 = value;
}
};
// TMPro.TMP_RichTextTagStack`1<TMPro.TMP_ColorGradient>
struct TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D
{
public:
// T[] TMPro.TMP_RichTextTagStack`1::m_ItemStack
TMP_ColorGradientU5BU5D_t0948D618AC4240E6F0CFE0125BB6A4E931DE847C* ___m_ItemStack_0;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Index
int32_t ___m_Index_1;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Capacity
int32_t ___m_Capacity_2;
// T TMPro.TMP_RichTextTagStack`1::m_DefaultItem
TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * ___m_DefaultItem_3;
public:
inline static int32_t get_offset_of_m_ItemStack_0() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D, ___m_ItemStack_0)); }
inline TMP_ColorGradientU5BU5D_t0948D618AC4240E6F0CFE0125BB6A4E931DE847C* get_m_ItemStack_0() const { return ___m_ItemStack_0; }
inline TMP_ColorGradientU5BU5D_t0948D618AC4240E6F0CFE0125BB6A4E931DE847C** get_address_of_m_ItemStack_0() { return &___m_ItemStack_0; }
inline void set_m_ItemStack_0(TMP_ColorGradientU5BU5D_t0948D618AC4240E6F0CFE0125BB6A4E931DE847C* value)
{
___m_ItemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemStack_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D, ___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;
}
inline static int32_t get_offset_of_m_Capacity_2() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D, ___m_Capacity_2)); }
inline int32_t get_m_Capacity_2() const { return ___m_Capacity_2; }
inline int32_t* get_address_of_m_Capacity_2() { return &___m_Capacity_2; }
inline void set_m_Capacity_2(int32_t value)
{
___m_Capacity_2 = value;
}
inline static int32_t get_offset_of_m_DefaultItem_3() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D, ___m_DefaultItem_3)); }
inline TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * get_m_DefaultItem_3() const { return ___m_DefaultItem_3; }
inline TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 ** get_address_of_m_DefaultItem_3() { return &___m_DefaultItem_3; }
inline void set_m_DefaultItem_3(TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * value)
{
___m_DefaultItem_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_DefaultItem_3), (void*)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.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.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.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.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;
}
};
// Microsoft.MixedReality.Toolkit.PointDistributionMode
struct PointDistributionMode_t6D12977E4ECBE97E4A8863C6305AF58F62664505
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.PointDistributionMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(PointDistributionMode_t6D12977E4ECBE97E4A8863C6305AF58F62664505, ___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;
}
};
// Microsoft.MixedReality.Toolkit.StepMode
struct StepMode_tD424E2BFB962AB9F31B80B8D9F7BC2D7EDA50127
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.StepMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StepMode_tD424E2BFB962AB9F31B80B8D9F7BC2D7EDA50127, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimation
struct GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannel[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimation::channels
GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029* ___channels_3;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimation::samplers
GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159* ___samplers_4;
public:
inline static int32_t get_offset_of_channels_3() { return static_cast<int32_t>(offsetof(GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C, ___channels_3)); }
inline GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029* get_channels_3() const { return ___channels_3; }
inline GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029** get_address_of_channels_3() { return &___channels_3; }
inline void set_channels_3(GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029* value)
{
___channels_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___channels_3), (void*)value);
}
inline static int32_t get_offset_of_samplers_4() { return static_cast<int32_t>(offsetof(GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C, ___samplers_4)); }
inline GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159* get_samplers_4() const { return ___samplers_4; }
inline GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159** get_address_of_samplers_4() { return &___samplers_4; }
inline void set_samplers_4(GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159* value)
{
___samplers_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___samplers_4), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBuffer
struct GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// System.String Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBuffer::uri
String_t* ___uri_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBuffer::byteLength
int32_t ___byteLength_4;
// System.Byte[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBuffer::<BufferData>k__BackingField
ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___U3CBufferDataU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_uri_3() { return static_cast<int32_t>(offsetof(GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C, ___uri_3)); }
inline String_t* get_uri_3() const { return ___uri_3; }
inline String_t** get_address_of_uri_3() { return &___uri_3; }
inline void set_uri_3(String_t* value)
{
___uri_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uri_3), (void*)value);
}
inline static int32_t get_offset_of_byteLength_4() { return static_cast<int32_t>(offsetof(GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C, ___byteLength_4)); }
inline int32_t get_byteLength_4() const { return ___byteLength_4; }
inline int32_t* get_address_of_byteLength_4() { return &___byteLength_4; }
inline void set_byteLength_4(int32_t value)
{
___byteLength_4 = value;
}
inline static int32_t get_offset_of_U3CBufferDataU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C, ___U3CBufferDataU3Ek__BackingField_5)); }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_U3CBufferDataU3Ek__BackingField_5() const { return ___U3CBufferDataU3Ek__BackingField_5; }
inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_U3CBufferDataU3Ek__BackingField_5() { return &___U3CBufferDataU3Ek__BackingField_5; }
inline void set_U3CBufferDataU3Ek__BackingField_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value)
{
___U3CBufferDataU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CBufferDataU3Ek__BackingField_5), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferViewTarget
struct GltfBufferViewTarget_t6464E711B17DD2A14C6DD27F8630BA7057AF7029
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferViewTarget::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GltfBufferViewTarget_t6464E711B17DD2A14C6DD27F8630BA7057AF7029, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCameraType
struct GltfCameraType_t93E57EDF9696F85C6AB5A662C78DB77C9776280E
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCameraType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GltfCameraType_t93E57EDF9696F85C6AB5A662C78DB77C9776280E, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfComponentType
struct GltfComponentType_tF089AAE1CB27137EC4A59033E5D54E99D902F3B7
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfComponentType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GltfComponentType_tF089AAE1CB27137EC4A59033E5D54E99D902F3B7, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfDrawMode
struct GltfDrawMode_t22BBFE1AE5C079AAA6F3B85A0CDBBC943B9A1539
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfDrawMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GltfDrawMode_t22BBFE1AE5C079AAA6F3B85A0CDBBC943B9A1539, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfImage
struct GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239 : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// System.String Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfImage::uri
String_t* ___uri_3;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfImage::mimeType
String_t* ___mimeType_4;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfImage::bufferView
int32_t ___bufferView_5;
// UnityEngine.Texture2D Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfImage::<Texture>k__BackingField
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___U3CTextureU3Ek__BackingField_6;
public:
inline static int32_t get_offset_of_uri_3() { return static_cast<int32_t>(offsetof(GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239, ___uri_3)); }
inline String_t* get_uri_3() const { return ___uri_3; }
inline String_t** get_address_of_uri_3() { return &___uri_3; }
inline void set_uri_3(String_t* value)
{
___uri_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___uri_3), (void*)value);
}
inline static int32_t get_offset_of_mimeType_4() { return static_cast<int32_t>(offsetof(GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239, ___mimeType_4)); }
inline String_t* get_mimeType_4() const { return ___mimeType_4; }
inline String_t** get_address_of_mimeType_4() { return &___mimeType_4; }
inline void set_mimeType_4(String_t* value)
{
___mimeType_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___mimeType_4), (void*)value);
}
inline static int32_t get_offset_of_bufferView_5() { return static_cast<int32_t>(offsetof(GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239, ___bufferView_5)); }
inline int32_t get_bufferView_5() const { return ___bufferView_5; }
inline int32_t* get_address_of_bufferView_5() { return &___bufferView_5; }
inline void set_bufferView_5(int32_t value)
{
___bufferView_5 = value;
}
inline static int32_t get_offset_of_U3CTextureU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239, ___U3CTextureU3Ek__BackingField_6)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_U3CTextureU3Ek__BackingField_6() const { return ___U3CTextureU3Ek__BackingField_6; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_U3CTextureU3Ek__BackingField_6() { return &___U3CTextureU3Ek__BackingField_6; }
inline void set_U3CTextureU3Ek__BackingField_6(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___U3CTextureU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTextureU3Ek__BackingField_6), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfInterpolationType
struct GltfInterpolationType_t2EE64C1B9A9F422B2FA3CA00DFACC98041D2AAC7
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfInterpolationType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GltfInterpolationType_t2EE64C1B9A9F422B2FA3CA00DFACC98041D2AAC7, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMagnificationFilterMode
struct GltfMagnificationFilterMode_tF879957B07B80A4E6E5AE0843121F0470C439E26
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMagnificationFilterMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GltfMagnificationFilterMode_tF879957B07B80A4E6E5AE0843121F0470C439E26, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial
struct GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32 : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfPbrMetallicRoughness Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::pbrMetallicRoughness
GltfPbrMetallicRoughness_tFECA0741E9204EC5F3CB472C2F4FC04B9E33018F * ___pbrMetallicRoughness_3;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterialCommonConstant Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::commonConstant
GltfMaterialCommonConstant_tA887548E142FDEF49F1A6CA0C94BE70E80E9139A * ___commonConstant_4;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNormalTextureInfo Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::normalTexture
GltfNormalTextureInfo_t55E8DCAD21A464BC503DB63718D81C4F64AFB363 * ___normalTexture_5;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfOcclusionTextureInfo Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::occlusionTexture
GltfOcclusionTextureInfo_tF2B66F2B9C7DD0C0EF4D7E7AB54DF16BDBA7969D * ___occlusionTexture_6;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTextureInfo Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::emissiveTexture
GltfTextureInfo_tCD5927AC73206F6078B08EA8189C36CD3D5434BF * ___emissiveTexture_7;
// System.Single[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::emissiveFactor
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___emissiveFactor_8;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::alphaMode
String_t* ___alphaMode_9;
// System.Double Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::alphaCutoff
double ___alphaCutoff_10;
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::doubleSided
bool ___doubleSided_11;
// UnityEngine.Material Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial::<Material>k__BackingField
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___U3CMaterialU3Ek__BackingField_12;
public:
inline static int32_t get_offset_of_pbrMetallicRoughness_3() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___pbrMetallicRoughness_3)); }
inline GltfPbrMetallicRoughness_tFECA0741E9204EC5F3CB472C2F4FC04B9E33018F * get_pbrMetallicRoughness_3() const { return ___pbrMetallicRoughness_3; }
inline GltfPbrMetallicRoughness_tFECA0741E9204EC5F3CB472C2F4FC04B9E33018F ** get_address_of_pbrMetallicRoughness_3() { return &___pbrMetallicRoughness_3; }
inline void set_pbrMetallicRoughness_3(GltfPbrMetallicRoughness_tFECA0741E9204EC5F3CB472C2F4FC04B9E33018F * value)
{
___pbrMetallicRoughness_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___pbrMetallicRoughness_3), (void*)value);
}
inline static int32_t get_offset_of_commonConstant_4() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___commonConstant_4)); }
inline GltfMaterialCommonConstant_tA887548E142FDEF49F1A6CA0C94BE70E80E9139A * get_commonConstant_4() const { return ___commonConstant_4; }
inline GltfMaterialCommonConstant_tA887548E142FDEF49F1A6CA0C94BE70E80E9139A ** get_address_of_commonConstant_4() { return &___commonConstant_4; }
inline void set_commonConstant_4(GltfMaterialCommonConstant_tA887548E142FDEF49F1A6CA0C94BE70E80E9139A * value)
{
___commonConstant_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___commonConstant_4), (void*)value);
}
inline static int32_t get_offset_of_normalTexture_5() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___normalTexture_5)); }
inline GltfNormalTextureInfo_t55E8DCAD21A464BC503DB63718D81C4F64AFB363 * get_normalTexture_5() const { return ___normalTexture_5; }
inline GltfNormalTextureInfo_t55E8DCAD21A464BC503DB63718D81C4F64AFB363 ** get_address_of_normalTexture_5() { return &___normalTexture_5; }
inline void set_normalTexture_5(GltfNormalTextureInfo_t55E8DCAD21A464BC503DB63718D81C4F64AFB363 * value)
{
___normalTexture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___normalTexture_5), (void*)value);
}
inline static int32_t get_offset_of_occlusionTexture_6() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___occlusionTexture_6)); }
inline GltfOcclusionTextureInfo_tF2B66F2B9C7DD0C0EF4D7E7AB54DF16BDBA7969D * get_occlusionTexture_6() const { return ___occlusionTexture_6; }
inline GltfOcclusionTextureInfo_tF2B66F2B9C7DD0C0EF4D7E7AB54DF16BDBA7969D ** get_address_of_occlusionTexture_6() { return &___occlusionTexture_6; }
inline void set_occlusionTexture_6(GltfOcclusionTextureInfo_tF2B66F2B9C7DD0C0EF4D7E7AB54DF16BDBA7969D * value)
{
___occlusionTexture_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___occlusionTexture_6), (void*)value);
}
inline static int32_t get_offset_of_emissiveTexture_7() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___emissiveTexture_7)); }
inline GltfTextureInfo_tCD5927AC73206F6078B08EA8189C36CD3D5434BF * get_emissiveTexture_7() const { return ___emissiveTexture_7; }
inline GltfTextureInfo_tCD5927AC73206F6078B08EA8189C36CD3D5434BF ** get_address_of_emissiveTexture_7() { return &___emissiveTexture_7; }
inline void set_emissiveTexture_7(GltfTextureInfo_tCD5927AC73206F6078B08EA8189C36CD3D5434BF * value)
{
___emissiveTexture_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emissiveTexture_7), (void*)value);
}
inline static int32_t get_offset_of_emissiveFactor_8() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___emissiveFactor_8)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_emissiveFactor_8() const { return ___emissiveFactor_8; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_emissiveFactor_8() { return &___emissiveFactor_8; }
inline void set_emissiveFactor_8(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___emissiveFactor_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___emissiveFactor_8), (void*)value);
}
inline static int32_t get_offset_of_alphaMode_9() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___alphaMode_9)); }
inline String_t* get_alphaMode_9() const { return ___alphaMode_9; }
inline String_t** get_address_of_alphaMode_9() { return &___alphaMode_9; }
inline void set_alphaMode_9(String_t* value)
{
___alphaMode_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___alphaMode_9), (void*)value);
}
inline static int32_t get_offset_of_alphaCutoff_10() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___alphaCutoff_10)); }
inline double get_alphaCutoff_10() const { return ___alphaCutoff_10; }
inline double* get_address_of_alphaCutoff_10() { return &___alphaCutoff_10; }
inline void set_alphaCutoff_10(double value)
{
___alphaCutoff_10 = value;
}
inline static int32_t get_offset_of_doubleSided_11() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___doubleSided_11)); }
inline bool get_doubleSided_11() const { return ___doubleSided_11; }
inline bool* get_address_of_doubleSided_11() { return &___doubleSided_11; }
inline void set_doubleSided_11(bool value)
{
___doubleSided_11 = value;
}
inline static int32_t get_offset_of_U3CMaterialU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32, ___U3CMaterialU3Ek__BackingField_12)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_U3CMaterialU3Ek__BackingField_12() const { return ___U3CMaterialU3Ek__BackingField_12; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_U3CMaterialU3Ek__BackingField_12() { return &___U3CMaterialU3Ek__BackingField_12; }
inline void set_U3CMaterialU3Ek__BackingField_12(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___U3CMaterialU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMaterialU3Ek__BackingField_12), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMesh
struct GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMesh::primitives
GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331* ___primitives_3;
// System.Double[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMesh::weights
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___weights_4;
// UnityEngine.Mesh Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMesh::<Mesh>k__BackingField
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CMeshU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_primitives_3() { return static_cast<int32_t>(offsetof(GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD, ___primitives_3)); }
inline GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331* get_primitives_3() const { return ___primitives_3; }
inline GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331** get_address_of_primitives_3() { return &___primitives_3; }
inline void set_primitives_3(GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331* value)
{
___primitives_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___primitives_3), (void*)value);
}
inline static int32_t get_offset_of_weights_4() { return static_cast<int32_t>(offsetof(GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD, ___weights_4)); }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* get_weights_4() const { return ___weights_4; }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D** get_address_of_weights_4() { return &___weights_4; }
inline void set_weights_4(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* value)
{
___weights_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___weights_4), (void*)value);
}
inline static int32_t get_offset_of_U3CMeshU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD, ___U3CMeshU3Ek__BackingField_5)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_U3CMeshU3Ek__BackingField_5() const { return ___U3CMeshU3Ek__BackingField_5; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_U3CMeshU3Ek__BackingField_5() { return &___U3CMeshU3Ek__BackingField_5; }
inline void set_U3CMeshU3Ek__BackingField_5(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___U3CMeshU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CMeshU3Ek__BackingField_5), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMinFilterMode
struct GltfMinFilterMode_t29B4C1A67AEBC5C8C5B6D712F3B9F93525BF5C03
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMinFilterMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GltfMinFilterMode_t29B4C1A67AEBC5C8C5B6D712F3B9F93525BF5C03, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode
struct GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9 : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::useTRS
bool ___useTRS_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::camera
int32_t ___camera_4;
// System.Int32[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::children
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___children_5;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::skin
int32_t ___skin_6;
// System.Double[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::matrix
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___matrix_7;
// UnityEngine.Matrix4x4 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::<Matrix>k__BackingField
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___U3CMatrixU3Ek__BackingField_8;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::mesh
int32_t ___mesh_9;
// System.Single[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::rotation
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___rotation_10;
// System.Single[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::scale
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___scale_11;
// System.Single[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::translation
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___translation_12;
// System.Double[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode::weights
DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* ___weights_13;
public:
inline static int32_t get_offset_of_useTRS_3() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___useTRS_3)); }
inline bool get_useTRS_3() const { return ___useTRS_3; }
inline bool* get_address_of_useTRS_3() { return &___useTRS_3; }
inline void set_useTRS_3(bool value)
{
___useTRS_3 = value;
}
inline static int32_t get_offset_of_camera_4() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___camera_4)); }
inline int32_t get_camera_4() const { return ___camera_4; }
inline int32_t* get_address_of_camera_4() { return &___camera_4; }
inline void set_camera_4(int32_t value)
{
___camera_4 = value;
}
inline static int32_t get_offset_of_children_5() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___children_5)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_children_5() const { return ___children_5; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_children_5() { return &___children_5; }
inline void set_children_5(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___children_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___children_5), (void*)value);
}
inline static int32_t get_offset_of_skin_6() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___skin_6)); }
inline int32_t get_skin_6() const { return ___skin_6; }
inline int32_t* get_address_of_skin_6() { return &___skin_6; }
inline void set_skin_6(int32_t value)
{
___skin_6 = value;
}
inline static int32_t get_offset_of_matrix_7() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___matrix_7)); }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* get_matrix_7() const { return ___matrix_7; }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D** get_address_of_matrix_7() { return &___matrix_7; }
inline void set_matrix_7(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* value)
{
___matrix_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___matrix_7), (void*)value);
}
inline static int32_t get_offset_of_U3CMatrixU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___U3CMatrixU3Ek__BackingField_8)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_U3CMatrixU3Ek__BackingField_8() const { return ___U3CMatrixU3Ek__BackingField_8; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_U3CMatrixU3Ek__BackingField_8() { return &___U3CMatrixU3Ek__BackingField_8; }
inline void set_U3CMatrixU3Ek__BackingField_8(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___U3CMatrixU3Ek__BackingField_8 = value;
}
inline static int32_t get_offset_of_mesh_9() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___mesh_9)); }
inline int32_t get_mesh_9() const { return ___mesh_9; }
inline int32_t* get_address_of_mesh_9() { return &___mesh_9; }
inline void set_mesh_9(int32_t value)
{
___mesh_9 = value;
}
inline static int32_t get_offset_of_rotation_10() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___rotation_10)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_rotation_10() const { return ___rotation_10; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_rotation_10() { return &___rotation_10; }
inline void set_rotation_10(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___rotation_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___rotation_10), (void*)value);
}
inline static int32_t get_offset_of_scale_11() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___scale_11)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_scale_11() const { return ___scale_11; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_scale_11() { return &___scale_11; }
inline void set_scale_11(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___scale_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___scale_11), (void*)value);
}
inline static int32_t get_offset_of_translation_12() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___translation_12)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_translation_12() const { return ___translation_12; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_translation_12() { return &___translation_12; }
inline void set_translation_12(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___translation_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___translation_12), (void*)value);
}
inline static int32_t get_offset_of_weights_13() { return static_cast<int32_t>(offsetof(GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9, ___weights_13)); }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* get_weights_13() const { return ___weights_13; }
inline DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D** get_address_of_weights_13() { return &___weights_13; }
inline void set_weights_13(DoubleU5BU5D_tF9383437DDA9EAC9F60627E9E6E2045CF7CB182D* value)
{
___weights_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___weights_13), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfScene
struct GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46 : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// System.Int32[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfScene::nodes
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___nodes_3;
public:
inline static int32_t get_offset_of_nodes_3() { return static_cast<int32_t>(offsetof(GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46, ___nodes_3)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_nodes_3() const { return ___nodes_3; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_nodes_3() { return &___nodes_3; }
inline void set_nodes_3(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___nodes_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___nodes_3), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSkin
struct GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039 : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSkin::inverseBindMatrices
int32_t ___inverseBindMatrices_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSkin::skeleton
int32_t ___skeleton_4;
// System.Int32[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSkin::joints
Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___joints_5;
public:
inline static int32_t get_offset_of_inverseBindMatrices_3() { return static_cast<int32_t>(offsetof(GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039, ___inverseBindMatrices_3)); }
inline int32_t get_inverseBindMatrices_3() const { return ___inverseBindMatrices_3; }
inline int32_t* get_address_of_inverseBindMatrices_3() { return &___inverseBindMatrices_3; }
inline void set_inverseBindMatrices_3(int32_t value)
{
___inverseBindMatrices_3 = value;
}
inline static int32_t get_offset_of_skeleton_4() { return static_cast<int32_t>(offsetof(GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039, ___skeleton_4)); }
inline int32_t get_skeleton_4() const { return ___skeleton_4; }
inline int32_t* get_address_of_skeleton_4() { return &___skeleton_4; }
inline void set_skeleton_4(int32_t value)
{
___skeleton_4 = value;
}
inline static int32_t get_offset_of_joints_5() { return static_cast<int32_t>(offsetof(GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039, ___joints_5)); }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_joints_5() const { return ___joints_5; }
inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_joints_5() { return &___joints_5; }
inline void set_joints_5(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value)
{
___joints_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___joints_5), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTexture
struct GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351 : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTexture::sampler
int32_t ___sampler_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTexture::source
int32_t ___source_4;
// UnityEngine.Texture2D Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTexture::<Texture>k__BackingField
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___U3CTextureU3Ek__BackingField_5;
public:
inline static int32_t get_offset_of_sampler_3() { return static_cast<int32_t>(offsetof(GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351, ___sampler_3)); }
inline int32_t get_sampler_3() const { return ___sampler_3; }
inline int32_t* get_address_of_sampler_3() { return &___sampler_3; }
inline void set_sampler_3(int32_t value)
{
___sampler_3 = value;
}
inline static int32_t get_offset_of_source_4() { return static_cast<int32_t>(offsetof(GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351, ___source_4)); }
inline int32_t get_source_4() const { return ___source_4; }
inline int32_t* get_address_of_source_4() { return &___source_4; }
inline void set_source_4(int32_t value)
{
___source_4 = value;
}
inline static int32_t get_offset_of_U3CTextureU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351, ___U3CTextureU3Ek__BackingField_5)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_U3CTextureU3Ek__BackingField_5() const { return ___U3CTextureU3Ek__BackingField_5; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_U3CTextureU3Ek__BackingField_5() { return &___U3CTextureU3Ek__BackingField_5; }
inline void set_U3CTextureU3Ek__BackingField_5(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___U3CTextureU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTextureU3Ek__BackingField_5), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfWrapMode
struct GltfWrapMode_tB81A76773D8A77AEEA085BDC2774EAEA37EADCF6
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfWrapMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(GltfWrapMode_tB81A76773D8A77AEEA085BDC2774EAEA37EADCF6, ___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;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode
struct ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425
{
public:
// System.String Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode::Name
String_t* ___Name_0;
// UnityEngine.Vector2 Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode::Offset
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Offset_1;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode::Radius
float ___Radius_2;
// UnityEngine.Transform Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode::Transform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___Transform_3;
public:
inline static int32_t get_offset_of_Name_0() { return static_cast<int32_t>(offsetof(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425, ___Name_0)); }
inline String_t* get_Name_0() const { return ___Name_0; }
inline String_t** get_address_of_Name_0() { return &___Name_0; }
inline void set_Name_0(String_t* value)
{
___Name_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value);
}
inline static int32_t get_offset_of_Offset_1() { return static_cast<int32_t>(offsetof(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425, ___Offset_1)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_Offset_1() const { return ___Offset_1; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_Offset_1() { return &___Offset_1; }
inline void set_Offset_1(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___Offset_1 = value;
}
inline static int32_t get_offset_of_Radius_2() { return static_cast<int32_t>(offsetof(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425, ___Radius_2)); }
inline float get_Radius_2() const { return ___Radius_2; }
inline float* get_address_of_Radius_2() { return &___Radius_2; }
inline void set_Radius_2(float value)
{
___Radius_2 = value;
}
inline static int32_t get_offset_of_Transform_3() { return static_cast<int32_t>(offsetof(ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425, ___Transform_3)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_Transform_3() const { return ___Transform_3; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_Transform_3() { return &___Transform_3; }
inline void set_Transform_3(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___Transform_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___Transform_3), (void*)value);
}
};
// Native definition for P/Invoke marshalling of Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode
struct ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_marshaled_pinvoke
{
char* ___Name_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Offset_1;
float ___Radius_2;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___Transform_3;
};
// Native definition for COM marshalling of Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode
struct ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425_marshaled_com
{
Il2CppChar* ___Name_0;
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___Offset_1;
float ___Radius_2;
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___Transform_3;
};
// 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;
};
// TMPro.ColorMode
struct ColorMode_tA3D65CECD3289ADB3A3C5A936DC23B41C364C4C3
{
public:
// System.Int32 TMPro.ColorMode::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ColorMode_tA3D65CECD3289ADB3A3C5A936DC23B41C364C4C3, ___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.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.FontFeatureLookupFlags
struct FontFeatureLookupFlags_t5E2AC8F0E11557FFBDC03A81EA2ECD8B82C17D8D
{
public:
// System.Int32 TMPro.FontFeatureLookupFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontFeatureLookupFlags_t5E2AC8F0E11557FFBDC03A81EA2ECD8B82C17D8D, ___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.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.FontWeight
struct FontWeight_tE551C56E6C7CCAFCC6519C65D03AAA340E9FF35C
{
public:
// System.Int32 TMPro.FontWeight::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(FontWeight_tE551C56E6C7CCAFCC6519C65D03AAA340E9FF35C, ___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.KerningPair
struct KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD : public RuntimeObject
{
public:
// System.UInt32 TMPro.KerningPair::m_FirstGlyph
uint32_t ___m_FirstGlyph_0;
// TMPro.GlyphValueRecord_Legacy TMPro.KerningPair::m_FirstGlyphAdjustments
GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A ___m_FirstGlyphAdjustments_1;
// System.UInt32 TMPro.KerningPair::m_SecondGlyph
uint32_t ___m_SecondGlyph_2;
// TMPro.GlyphValueRecord_Legacy TMPro.KerningPair::m_SecondGlyphAdjustments
GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A ___m_SecondGlyphAdjustments_3;
// System.Single TMPro.KerningPair::xOffset
float ___xOffset_4;
// System.Boolean TMPro.KerningPair::m_IgnoreSpacingAdjustments
bool ___m_IgnoreSpacingAdjustments_6;
public:
inline static int32_t get_offset_of_m_FirstGlyph_0() { return static_cast<int32_t>(offsetof(KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD, ___m_FirstGlyph_0)); }
inline uint32_t get_m_FirstGlyph_0() const { return ___m_FirstGlyph_0; }
inline uint32_t* get_address_of_m_FirstGlyph_0() { return &___m_FirstGlyph_0; }
inline void set_m_FirstGlyph_0(uint32_t value)
{
___m_FirstGlyph_0 = value;
}
inline static int32_t get_offset_of_m_FirstGlyphAdjustments_1() { return static_cast<int32_t>(offsetof(KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD, ___m_FirstGlyphAdjustments_1)); }
inline GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A get_m_FirstGlyphAdjustments_1() const { return ___m_FirstGlyphAdjustments_1; }
inline GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A * get_address_of_m_FirstGlyphAdjustments_1() { return &___m_FirstGlyphAdjustments_1; }
inline void set_m_FirstGlyphAdjustments_1(GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A value)
{
___m_FirstGlyphAdjustments_1 = value;
}
inline static int32_t get_offset_of_m_SecondGlyph_2() { return static_cast<int32_t>(offsetof(KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD, ___m_SecondGlyph_2)); }
inline uint32_t get_m_SecondGlyph_2() const { return ___m_SecondGlyph_2; }
inline uint32_t* get_address_of_m_SecondGlyph_2() { return &___m_SecondGlyph_2; }
inline void set_m_SecondGlyph_2(uint32_t value)
{
___m_SecondGlyph_2 = value;
}
inline static int32_t get_offset_of_m_SecondGlyphAdjustments_3() { return static_cast<int32_t>(offsetof(KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD, ___m_SecondGlyphAdjustments_3)); }
inline GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A get_m_SecondGlyphAdjustments_3() const { return ___m_SecondGlyphAdjustments_3; }
inline GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A * get_address_of_m_SecondGlyphAdjustments_3() { return &___m_SecondGlyphAdjustments_3; }
inline void set_m_SecondGlyphAdjustments_3(GlyphValueRecord_Legacy_t775B262F8408BFA72A5736B93D15EB6D633BC84A value)
{
___m_SecondGlyphAdjustments_3 = value;
}
inline static int32_t get_offset_of_xOffset_4() { return static_cast<int32_t>(offsetof(KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD, ___xOffset_4)); }
inline float get_xOffset_4() const { return ___xOffset_4; }
inline float* get_address_of_xOffset_4() { return &___xOffset_4; }
inline void set_xOffset_4(float value)
{
___xOffset_4 = value;
}
inline static int32_t get_offset_of_m_IgnoreSpacingAdjustments_6() { return static_cast<int32_t>(offsetof(KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD, ___m_IgnoreSpacingAdjustments_6)); }
inline bool get_m_IgnoreSpacingAdjustments_6() const { return ___m_IgnoreSpacingAdjustments_6; }
inline bool* get_address_of_m_IgnoreSpacingAdjustments_6() { return &___m_IgnoreSpacingAdjustments_6; }
inline void set_m_IgnoreSpacingAdjustments_6(bool value)
{
___m_IgnoreSpacingAdjustments_6 = value;
}
};
struct KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD_StaticFields
{
public:
// TMPro.KerningPair TMPro.KerningPair::empty
KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD * ___empty_5;
public:
inline static int32_t get_offset_of_empty_5() { return static_cast<int32_t>(offsetof(KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD_StaticFields, ___empty_5)); }
inline KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD * get_empty_5() const { return ___empty_5; }
inline KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD ** get_address_of_empty_5() { return &___empty_5; }
inline void set_empty_5(KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD * value)
{
___empty_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___empty_5), (void*)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_GlyphAdjustmentRecord
struct TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58
{
public:
// System.UInt32 TMPro.TMP_GlyphAdjustmentRecord::m_GlyphIndex
uint32_t ___m_GlyphIndex_0;
// TMPro.TMP_GlyphValueRecord TMPro.TMP_GlyphAdjustmentRecord::m_GlyphValueRecord
TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8 ___m_GlyphValueRecord_1;
public:
inline static int32_t get_offset_of_m_GlyphIndex_0() { return static_cast<int32_t>(offsetof(TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58, ___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(TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58, ___m_GlyphValueRecord_1)); }
inline TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8 get_m_GlyphValueRecord_1() const { return ___m_GlyphValueRecord_1; }
inline TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8 * get_address_of_m_GlyphValueRecord_1() { return &___m_GlyphValueRecord_1; }
inline void set_m_GlyphValueRecord_1(TMP_GlyphValueRecord_t78C803E430E95C128540C14391CBACF833943BD8 value)
{
___m_GlyphValueRecord_1 = value;
}
};
// TMPro.TMP_InputField_ContentType
struct ContentType_t93262611CC15FC7196E42F1B77517D724602FE38
{
public:
// System.Int32 TMPro.TMP_InputField_ContentType::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(ContentType_t93262611CC15FC7196E42F1B77517D724602FE38, ___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_RichTextTagStack`1<TMPro.MaterialReference>
struct TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9
{
public:
// T[] TMPro.TMP_RichTextTagStack`1::m_ItemStack
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* ___m_ItemStack_0;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Index
int32_t ___m_Index_1;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Capacity
int32_t ___m_Capacity_2;
// T TMPro.TMP_RichTextTagStack`1::m_DefaultItem
MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F ___m_DefaultItem_3;
public:
inline static int32_t get_offset_of_m_ItemStack_0() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9, ___m_ItemStack_0)); }
inline MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* get_m_ItemStack_0() const { return ___m_ItemStack_0; }
inline MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B** get_address_of_m_ItemStack_0() { return &___m_ItemStack_0; }
inline void set_m_ItemStack_0(MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* value)
{
___m_ItemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemStack_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9, ___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;
}
inline static int32_t get_offset_of_m_Capacity_2() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9, ___m_Capacity_2)); }
inline int32_t get_m_Capacity_2() const { return ___m_Capacity_2; }
inline int32_t* get_address_of_m_Capacity_2() { return &___m_Capacity_2; }
inline void set_m_Capacity_2(int32_t value)
{
___m_Capacity_2 = value;
}
inline static int32_t get_offset_of_m_DefaultItem_3() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9, ___m_DefaultItem_3)); }
inline MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F get_m_DefaultItem_3() const { return ___m_DefaultItem_3; }
inline MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F * get_address_of_m_DefaultItem_3() { return &___m_DefaultItem_3; }
inline void set_m_DefaultItem_3(MaterialReference_tFDD866CC1D210125CDEC9DCB60B9AACB2FE3AF7F value)
{
___m_DefaultItem_3 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_3))->___fontAsset_1), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_3))->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_3))->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_DefaultItem_3))->___fallbackMaterial_6), (void*)NULL);
#endif
}
};
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32>
struct TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0
{
public:
// T[] TMPro.TMP_RichTextTagStack`1::m_ItemStack
Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* ___m_ItemStack_0;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Index
int32_t ___m_Index_1;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Capacity
int32_t ___m_Capacity_2;
// T TMPro.TMP_RichTextTagStack`1::m_DefaultItem
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_DefaultItem_3;
public:
inline static int32_t get_offset_of_m_ItemStack_0() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0, ___m_ItemStack_0)); }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* get_m_ItemStack_0() const { return ___m_ItemStack_0; }
inline Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983** get_address_of_m_ItemStack_0() { return &___m_ItemStack_0; }
inline void set_m_ItemStack_0(Color32U5BU5D_tABFBCB467E6D1B791303A0D3A3AA1A482F620983* value)
{
___m_ItemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemStack_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0, ___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;
}
inline static int32_t get_offset_of_m_Capacity_2() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0, ___m_Capacity_2)); }
inline int32_t get_m_Capacity_2() const { return ___m_Capacity_2; }
inline int32_t* get_address_of_m_Capacity_2() { return &___m_Capacity_2; }
inline void set_m_Capacity_2(int32_t value)
{
___m_Capacity_2 = value;
}
inline static int32_t get_offset_of_m_DefaultItem_3() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0, ___m_DefaultItem_3)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_DefaultItem_3() const { return ___m_DefaultItem_3; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_DefaultItem_3() { return &___m_DefaultItem_3; }
inline void set_m_DefaultItem_3(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_DefaultItem_3 = value;
}
};
// TMPro.TMP_Sprite
struct TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353 : public TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05
{
public:
// System.String TMPro.TMP_Sprite::name
String_t* ___name_9;
// System.Int32 TMPro.TMP_Sprite::hashCode
int32_t ___hashCode_10;
// System.Int32 TMPro.TMP_Sprite::unicode
int32_t ___unicode_11;
// UnityEngine.Vector2 TMPro.TMP_Sprite::pivot
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___pivot_12;
// UnityEngine.Sprite TMPro.TMP_Sprite::sprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___sprite_13;
public:
inline static int32_t get_offset_of_name_9() { return static_cast<int32_t>(offsetof(TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353, ___name_9)); }
inline String_t* get_name_9() const { return ___name_9; }
inline String_t** get_address_of_name_9() { return &___name_9; }
inline void set_name_9(String_t* value)
{
___name_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___name_9), (void*)value);
}
inline static int32_t get_offset_of_hashCode_10() { return static_cast<int32_t>(offsetof(TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353, ___hashCode_10)); }
inline int32_t get_hashCode_10() const { return ___hashCode_10; }
inline int32_t* get_address_of_hashCode_10() { return &___hashCode_10; }
inline void set_hashCode_10(int32_t value)
{
___hashCode_10 = value;
}
inline static int32_t get_offset_of_unicode_11() { return static_cast<int32_t>(offsetof(TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353, ___unicode_11)); }
inline int32_t get_unicode_11() const { return ___unicode_11; }
inline int32_t* get_address_of_unicode_11() { return &___unicode_11; }
inline void set_unicode_11(int32_t value)
{
___unicode_11 = value;
}
inline static int32_t get_offset_of_pivot_12() { return static_cast<int32_t>(offsetof(TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353, ___pivot_12)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_pivot_12() const { return ___pivot_12; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_pivot_12() { return &___pivot_12; }
inline void set_pivot_12(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___pivot_12 = value;
}
inline static int32_t get_offset_of_sprite_13() { return static_cast<int32_t>(offsetof(TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353, ___sprite_13)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_sprite_13() const { return ___sprite_13; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_sprite_13() { return &___sprite_13; }
inline void set_sprite_13(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___sprite_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sprite_13), (void*)value);
}
};
// TMPro.TMP_Text_TextInputSources
struct TextInputSources_t08C2D3664AE99CBF6ED41C9DB8F4E9E8FC8E54B4
{
public:
// System.Int32 TMPro.TMP_Text_TextInputSources::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextInputSources_t08C2D3664AE99CBF6ED41C9DB8F4E9E8FC8E54B4, ___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_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;
}
};
// TMPro.TextElementType
struct TextElementType_t3C95010E28DAFD09E9C361EEB679937475CEE857
{
public:
// System.Byte TMPro.TextElementType::value__
uint8_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextElementType_t3C95010E28DAFD09E9C361EEB679937475CEE857, ___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;
}
};
// TMPro.TextOverflowModes
struct TextOverflowModes_tC4F820014333ECAF4D52B02F75171FD9E52B9D76
{
public:
// System.Int32 TMPro.TextOverflowModes::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextOverflowModes_tC4F820014333ECAF4D52B02F75171FD9E52B9D76, ___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.TextRenderFlags
struct TextRenderFlags_t29165355D5674BAEF40359B740631503FA9C0B56
{
public:
// System.Int32 TMPro.TextRenderFlags::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextRenderFlags_t29165355D5674BAEF40359B740631503FA9C0B56, ___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.TextureMappingOptions
struct TextureMappingOptions_tAC77A218D6DF5F386DA38AEAF3D9C943F084BD10
{
public:
// System.Int32 TMPro.TextureMappingOptions::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(TextureMappingOptions_tAC77A218D6DF5F386DA38AEAF3D9C943F084BD10, ___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.VertexGradient
struct VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A
{
public:
// UnityEngine.Color TMPro.VertexGradient::topLeft
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___topLeft_0;
// UnityEngine.Color TMPro.VertexGradient::topRight
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___topRight_1;
// UnityEngine.Color TMPro.VertexGradient::bottomLeft
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___bottomLeft_2;
// UnityEngine.Color TMPro.VertexGradient::bottomRight
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___bottomRight_3;
public:
inline static int32_t get_offset_of_topLeft_0() { return static_cast<int32_t>(offsetof(VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A, ___topLeft_0)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_topLeft_0() const { return ___topLeft_0; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_topLeft_0() { return &___topLeft_0; }
inline void set_topLeft_0(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___topLeft_0 = value;
}
inline static int32_t get_offset_of_topRight_1() { return static_cast<int32_t>(offsetof(VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A, ___topRight_1)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_topRight_1() const { return ___topRight_1; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_topRight_1() { return &___topRight_1; }
inline void set_topRight_1(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___topRight_1 = value;
}
inline static int32_t get_offset_of_bottomLeft_2() { return static_cast<int32_t>(offsetof(VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A, ___bottomLeft_2)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_bottomLeft_2() const { return ___bottomLeft_2; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_bottomLeft_2() { return &___bottomLeft_2; }
inline void set_bottomLeft_2(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___bottomLeft_2 = value;
}
inline static int32_t get_offset_of_bottomRight_3() { return static_cast<int32_t>(offsetof(VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A, ___bottomRight_3)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_bottomRight_3() const { return ___bottomRight_3; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_bottomRight_3() { return &___bottomRight_3; }
inline void set_bottomRight_3(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___bottomRight_3 = value;
}
};
// TMPro.VertexSortingOrder
struct VertexSortingOrder_t2571FF911BB69CC1CC229DF12DE68568E3F850E5
{
public:
// System.Int32 TMPro.VertexSortingOrder::value__
int32_t ___value___2;
public:
inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(VertexSortingOrder_t2571FF911BB69CC1CC229DF12DE68568E3F850E5, ___value___2)); }
inline int32_t get_value___2() const { return ___value___2; }
inline int32_t* get_address_of_value___2() { return &___value___2; }
inline void set_value___2(int32_t value)
{
___value___2 = value;
}
};
// UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0 : public RuntimeObject
{
public:
// System.IntPtr UnityEngine.Object::m_CachedPtr
intptr_t ___m_CachedPtr_0;
public:
inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0, ___m_CachedPtr_0)); }
inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; }
inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; }
inline void set_m_CachedPtr_0(intptr_t value)
{
___m_CachedPtr_0 = value;
}
};
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields
{
public:
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
public:
inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast<int32_t>(offsetof(Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); }
inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; }
inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value)
{
___OffsetOfInstanceIDInCPlusPlusObject_1 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_pinvoke
{
intptr_t ___m_CachedPtr_0;
};
// Native definition for COM marshalling of UnityEngine.Object
struct Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0_marshaled_com
{
intptr_t ___m_CachedPtr_0;
};
// UnityEngine.TextCore.Glyph
struct Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4 : public RuntimeObject
{
public:
// System.UInt32 UnityEngine.TextCore.Glyph::m_Index
uint32_t ___m_Index_0;
// UnityEngine.TextCore.GlyphMetrics UnityEngine.TextCore.Glyph::m_Metrics
GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB ___m_Metrics_1;
// UnityEngine.TextCore.GlyphRect UnityEngine.TextCore.Glyph::m_GlyphRect
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___m_GlyphRect_2;
// System.Single UnityEngine.TextCore.Glyph::m_Scale
float ___m_Scale_3;
// System.Int32 UnityEngine.TextCore.Glyph::m_AtlasIndex
int32_t ___m_AtlasIndex_4;
public:
inline static int32_t get_offset_of_m_Index_0() { return static_cast<int32_t>(offsetof(Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4, ___m_Index_0)); }
inline uint32_t get_m_Index_0() const { return ___m_Index_0; }
inline uint32_t* get_address_of_m_Index_0() { return &___m_Index_0; }
inline void set_m_Index_0(uint32_t value)
{
___m_Index_0 = value;
}
inline static int32_t get_offset_of_m_Metrics_1() { return static_cast<int32_t>(offsetof(Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4, ___m_Metrics_1)); }
inline GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB get_m_Metrics_1() const { return ___m_Metrics_1; }
inline GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB * get_address_of_m_Metrics_1() { return &___m_Metrics_1; }
inline void set_m_Metrics_1(GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB value)
{
___m_Metrics_1 = value;
}
inline static int32_t get_offset_of_m_GlyphRect_2() { return static_cast<int32_t>(offsetof(Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4, ___m_GlyphRect_2)); }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C get_m_GlyphRect_2() const { return ___m_GlyphRect_2; }
inline GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C * get_address_of_m_GlyphRect_2() { return &___m_GlyphRect_2; }
inline void set_m_GlyphRect_2(GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C value)
{
___m_GlyphRect_2 = value;
}
inline static int32_t get_offset_of_m_Scale_3() { return static_cast<int32_t>(offsetof(Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4, ___m_Scale_3)); }
inline float get_m_Scale_3() const { return ___m_Scale_3; }
inline float* get_address_of_m_Scale_3() { return &___m_Scale_3; }
inline void set_m_Scale_3(float value)
{
___m_Scale_3 = value;
}
inline static int32_t get_offset_of_m_AtlasIndex_4() { return static_cast<int32_t>(offsetof(Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4, ___m_AtlasIndex_4)); }
inline int32_t get_m_AtlasIndex_4() const { return ___m_AtlasIndex_4; }
inline int32_t* get_address_of_m_AtlasIndex_4() { return &___m_AtlasIndex_4; }
inline void set_m_AtlasIndex_4(int32_t value)
{
___m_AtlasIndex_4 = value;
}
};
// Native definition for P/Invoke marshalling of UnityEngine.TextCore.Glyph
struct Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4_marshaled_pinvoke
{
uint32_t ___m_Index_0;
GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB ___m_Metrics_1;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___m_GlyphRect_2;
float ___m_Scale_3;
int32_t ___m_AtlasIndex_4;
};
// Native definition for COM marshalling of UnityEngine.TextCore.Glyph
struct Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4_marshaled_com
{
uint32_t ___m_Index_0;
GlyphMetrics_t1CEF63AFDC4C55F3A8AF76BF32542B638C5608CB ___m_Metrics_1;
GlyphRect_t398045C795E0E1264236DFAA5712796CC23C3E7C ___m_GlyphRect_2;
float ___m_Scale_3;
int32_t ___m_AtlasIndex_4;
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor
struct GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::bufferView
int32_t ___bufferView_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::byteOffset
int32_t ___byteOffset_4;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfComponentType Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::componentType
int32_t ___componentType_5;
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::normalized
bool ___normalized_6;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::count
int32_t ___count_7;
// System.String Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::type
String_t* ___type_8;
// System.Single[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::max
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___max_9;
// System.Single[] Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::min
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___min_10;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessorSparse Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::sparse
GltfAccessorSparse_tA53BDDF70798BF89D2EAA2DACD4A2B5E8F838FFF * ___sparse_11;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor::<BufferView>k__BackingField
GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 * ___U3CBufferViewU3Ek__BackingField_12;
public:
inline static int32_t get_offset_of_bufferView_3() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___bufferView_3)); }
inline int32_t get_bufferView_3() const { return ___bufferView_3; }
inline int32_t* get_address_of_bufferView_3() { return &___bufferView_3; }
inline void set_bufferView_3(int32_t value)
{
___bufferView_3 = value;
}
inline static int32_t get_offset_of_byteOffset_4() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___byteOffset_4)); }
inline int32_t get_byteOffset_4() const { return ___byteOffset_4; }
inline int32_t* get_address_of_byteOffset_4() { return &___byteOffset_4; }
inline void set_byteOffset_4(int32_t value)
{
___byteOffset_4 = value;
}
inline static int32_t get_offset_of_componentType_5() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___componentType_5)); }
inline int32_t get_componentType_5() const { return ___componentType_5; }
inline int32_t* get_address_of_componentType_5() { return &___componentType_5; }
inline void set_componentType_5(int32_t value)
{
___componentType_5 = value;
}
inline static int32_t get_offset_of_normalized_6() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___normalized_6)); }
inline bool get_normalized_6() const { return ___normalized_6; }
inline bool* get_address_of_normalized_6() { return &___normalized_6; }
inline void set_normalized_6(bool value)
{
___normalized_6 = value;
}
inline static int32_t get_offset_of_count_7() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___count_7)); }
inline int32_t get_count_7() const { return ___count_7; }
inline int32_t* get_address_of_count_7() { return &___count_7; }
inline void set_count_7(int32_t value)
{
___count_7 = value;
}
inline static int32_t get_offset_of_type_8() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___type_8)); }
inline String_t* get_type_8() const { return ___type_8; }
inline String_t** get_address_of_type_8() { return &___type_8; }
inline void set_type_8(String_t* value)
{
___type_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___type_8), (void*)value);
}
inline static int32_t get_offset_of_max_9() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___max_9)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_max_9() const { return ___max_9; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_max_9() { return &___max_9; }
inline void set_max_9(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___max_9 = value;
Il2CppCodeGenWriteBarrier((void**)(&___max_9), (void*)value);
}
inline static int32_t get_offset_of_min_10() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___min_10)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_min_10() const { return ___min_10; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_min_10() { return &___min_10; }
inline void set_min_10(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___min_10 = value;
Il2CppCodeGenWriteBarrier((void**)(&___min_10), (void*)value);
}
inline static int32_t get_offset_of_sparse_11() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___sparse_11)); }
inline GltfAccessorSparse_tA53BDDF70798BF89D2EAA2DACD4A2B5E8F838FFF * get_sparse_11() const { return ___sparse_11; }
inline GltfAccessorSparse_tA53BDDF70798BF89D2EAA2DACD4A2B5E8F838FFF ** get_address_of_sparse_11() { return &___sparse_11; }
inline void set_sparse_11(GltfAccessorSparse_tA53BDDF70798BF89D2EAA2DACD4A2B5E8F838FFF * value)
{
___sparse_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sparse_11), (void*)value);
}
inline static int32_t get_offset_of_U3CBufferViewU3Ek__BackingField_12() { return static_cast<int32_t>(offsetof(GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB, ___U3CBufferViewU3Ek__BackingField_12)); }
inline GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 * get_U3CBufferViewU3Ek__BackingField_12() const { return ___U3CBufferViewU3Ek__BackingField_12; }
inline GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 ** get_address_of_U3CBufferViewU3Ek__BackingField_12() { return &___U3CBufferViewU3Ek__BackingField_12; }
inline void set_U3CBufferViewU3Ek__BackingField_12(GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 * value)
{
___U3CBufferViewU3Ek__BackingField_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CBufferViewU3Ek__BackingField_12), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler
struct GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9 : public GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler::input
int32_t ___input_2;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfInterpolationType Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler::interpolation
int32_t ___interpolation_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler::output
int32_t ___output_4;
public:
inline static int32_t get_offset_of_input_2() { return static_cast<int32_t>(offsetof(GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9, ___input_2)); }
inline int32_t get_input_2() const { return ___input_2; }
inline int32_t* get_address_of_input_2() { return &___input_2; }
inline void set_input_2(int32_t value)
{
___input_2 = value;
}
inline static int32_t get_offset_of_interpolation_3() { return static_cast<int32_t>(offsetof(GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9, ___interpolation_3)); }
inline int32_t get_interpolation_3() const { return ___interpolation_3; }
inline int32_t* get_address_of_interpolation_3() { return &___interpolation_3; }
inline void set_interpolation_3(int32_t value)
{
___interpolation_3 = value;
}
inline static int32_t get_offset_of_output_4() { return static_cast<int32_t>(offsetof(GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9, ___output_4)); }
inline int32_t get_output_4() const { return ___output_4; }
inline int32_t* get_address_of_output_4() { return &___output_4; }
inline void set_output_4(int32_t value)
{
___output_4 = value;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView
struct GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView::buffer
int32_t ___buffer_3;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView::byteOffset
int32_t ___byteOffset_4;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView::byteLength
int32_t ___byteLength_5;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView::byteStride
int32_t ___byteStride_6;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferViewTarget Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView::target
int32_t ___target_7;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBuffer Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView::<Buffer>k__BackingField
GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C * ___U3CBufferU3Ek__BackingField_8;
public:
inline static int32_t get_offset_of_buffer_3() { return static_cast<int32_t>(offsetof(GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95, ___buffer_3)); }
inline int32_t get_buffer_3() const { return ___buffer_3; }
inline int32_t* get_address_of_buffer_3() { return &___buffer_3; }
inline void set_buffer_3(int32_t value)
{
___buffer_3 = value;
}
inline static int32_t get_offset_of_byteOffset_4() { return static_cast<int32_t>(offsetof(GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95, ___byteOffset_4)); }
inline int32_t get_byteOffset_4() const { return ___byteOffset_4; }
inline int32_t* get_address_of_byteOffset_4() { return &___byteOffset_4; }
inline void set_byteOffset_4(int32_t value)
{
___byteOffset_4 = value;
}
inline static int32_t get_offset_of_byteLength_5() { return static_cast<int32_t>(offsetof(GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95, ___byteLength_5)); }
inline int32_t get_byteLength_5() const { return ___byteLength_5; }
inline int32_t* get_address_of_byteLength_5() { return &___byteLength_5; }
inline void set_byteLength_5(int32_t value)
{
___byteLength_5 = value;
}
inline static int32_t get_offset_of_byteStride_6() { return static_cast<int32_t>(offsetof(GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95, ___byteStride_6)); }
inline int32_t get_byteStride_6() const { return ___byteStride_6; }
inline int32_t* get_address_of_byteStride_6() { return &___byteStride_6; }
inline void set_byteStride_6(int32_t value)
{
___byteStride_6 = value;
}
inline static int32_t get_offset_of_target_7() { return static_cast<int32_t>(offsetof(GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95, ___target_7)); }
inline int32_t get_target_7() const { return ___target_7; }
inline int32_t* get_address_of_target_7() { return &___target_7; }
inline void set_target_7(int32_t value)
{
___target_7 = value;
}
inline static int32_t get_offset_of_U3CBufferU3Ek__BackingField_8() { return static_cast<int32_t>(offsetof(GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95, ___U3CBufferU3Ek__BackingField_8)); }
inline GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C * get_U3CBufferU3Ek__BackingField_8() const { return ___U3CBufferU3Ek__BackingField_8; }
inline GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C ** get_address_of_U3CBufferU3Ek__BackingField_8() { return &___U3CBufferU3Ek__BackingField_8; }
inline void set_U3CBufferU3Ek__BackingField_8(GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C * value)
{
___U3CBufferU3Ek__BackingField_8 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CBufferU3Ek__BackingField_8), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCamera
struct GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84 : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCameraOrthographic Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCamera::orthographic
GltfCameraOrthographic_tEC2050DD49042C56A9F4BE28459C83F5F2C6BFA4 * ___orthographic_3;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCameraPerspective Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCamera::perspective
GltfCameraPerspective_t9F088230CEA445F7E704BC6FFE31DCC4AC640C06 * ___perspective_4;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCameraType Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCamera::type
int32_t ___type_5;
public:
inline static int32_t get_offset_of_orthographic_3() { return static_cast<int32_t>(offsetof(GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84, ___orthographic_3)); }
inline GltfCameraOrthographic_tEC2050DD49042C56A9F4BE28459C83F5F2C6BFA4 * get_orthographic_3() const { return ___orthographic_3; }
inline GltfCameraOrthographic_tEC2050DD49042C56A9F4BE28459C83F5F2C6BFA4 ** get_address_of_orthographic_3() { return &___orthographic_3; }
inline void set_orthographic_3(GltfCameraOrthographic_tEC2050DD49042C56A9F4BE28459C83F5F2C6BFA4 * value)
{
___orthographic_3 = value;
Il2CppCodeGenWriteBarrier((void**)(&___orthographic_3), (void*)value);
}
inline static int32_t get_offset_of_perspective_4() { return static_cast<int32_t>(offsetof(GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84, ___perspective_4)); }
inline GltfCameraPerspective_t9F088230CEA445F7E704BC6FFE31DCC4AC640C06 * get_perspective_4() const { return ___perspective_4; }
inline GltfCameraPerspective_t9F088230CEA445F7E704BC6FFE31DCC4AC640C06 ** get_address_of_perspective_4() { return &___perspective_4; }
inline void set_perspective_4(GltfCameraPerspective_t9F088230CEA445F7E704BC6FFE31DCC4AC640C06 * value)
{
___perspective_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___perspective_4), (void*)value);
}
inline static int32_t get_offset_of_type_5() { return static_cast<int32_t>(offsetof(GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84, ___type_5)); }
inline int32_t get_type_5() const { return ___type_5; }
inline int32_t* get_address_of_type_5() { return &___type_5; }
inline void set_type_5(int32_t value)
{
___type_5 = value;
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive
struct GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF : public GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994
{
public:
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive::indices
int32_t ___indices_2;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive::material
int32_t ___material_3;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfDrawMode Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive::mode
int32_t ___mode_4;
// System.Collections.Generic.List`1<System.Collections.Generic.Dictionary`2<System.String,System.Int32>> Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive::<Targets>k__BackingField
List_1_t4E883E860B4C59D9C87D3719880776FA9384F41E * ___U3CTargetsU3Ek__BackingField_5;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitiveAttributes Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive::<Attributes>k__BackingField
GltfMeshPrimitiveAttributes_t4498AE3DDE1979E82740120413530157A3AB5636 * ___U3CAttributesU3Ek__BackingField_6;
// UnityEngine.Mesh Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive::<SubMesh>k__BackingField
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___U3CSubMeshU3Ek__BackingField_7;
public:
inline static int32_t get_offset_of_indices_2() { return static_cast<int32_t>(offsetof(GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF, ___indices_2)); }
inline int32_t get_indices_2() const { return ___indices_2; }
inline int32_t* get_address_of_indices_2() { return &___indices_2; }
inline void set_indices_2(int32_t value)
{
___indices_2 = value;
}
inline static int32_t get_offset_of_material_3() { return static_cast<int32_t>(offsetof(GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF, ___material_3)); }
inline int32_t get_material_3() const { return ___material_3; }
inline int32_t* get_address_of_material_3() { return &___material_3; }
inline void set_material_3(int32_t value)
{
___material_3 = value;
}
inline static int32_t get_offset_of_mode_4() { return static_cast<int32_t>(offsetof(GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF, ___mode_4)); }
inline int32_t get_mode_4() const { return ___mode_4; }
inline int32_t* get_address_of_mode_4() { return &___mode_4; }
inline void set_mode_4(int32_t value)
{
___mode_4 = value;
}
inline static int32_t get_offset_of_U3CTargetsU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF, ___U3CTargetsU3Ek__BackingField_5)); }
inline List_1_t4E883E860B4C59D9C87D3719880776FA9384F41E * get_U3CTargetsU3Ek__BackingField_5() const { return ___U3CTargetsU3Ek__BackingField_5; }
inline List_1_t4E883E860B4C59D9C87D3719880776FA9384F41E ** get_address_of_U3CTargetsU3Ek__BackingField_5() { return &___U3CTargetsU3Ek__BackingField_5; }
inline void set_U3CTargetsU3Ek__BackingField_5(List_1_t4E883E860B4C59D9C87D3719880776FA9384F41E * value)
{
___U3CTargetsU3Ek__BackingField_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CTargetsU3Ek__BackingField_5), (void*)value);
}
inline static int32_t get_offset_of_U3CAttributesU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF, ___U3CAttributesU3Ek__BackingField_6)); }
inline GltfMeshPrimitiveAttributes_t4498AE3DDE1979E82740120413530157A3AB5636 * get_U3CAttributesU3Ek__BackingField_6() const { return ___U3CAttributesU3Ek__BackingField_6; }
inline GltfMeshPrimitiveAttributes_t4498AE3DDE1979E82740120413530157A3AB5636 ** get_address_of_U3CAttributesU3Ek__BackingField_6() { return &___U3CAttributesU3Ek__BackingField_6; }
inline void set_U3CAttributesU3Ek__BackingField_6(GltfMeshPrimitiveAttributes_t4498AE3DDE1979E82740120413530157A3AB5636 * value)
{
___U3CAttributesU3Ek__BackingField_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CAttributesU3Ek__BackingField_6), (void*)value);
}
inline static int32_t get_offset_of_U3CSubMeshU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF, ___U3CSubMeshU3Ek__BackingField_7)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_U3CSubMeshU3Ek__BackingField_7() const { return ___U3CSubMeshU3Ek__BackingField_7; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_U3CSubMeshU3Ek__BackingField_7() { return &___U3CSubMeshU3Ek__BackingField_7; }
inline void set_U3CSubMeshU3Ek__BackingField_7(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___U3CSubMeshU3Ek__BackingField_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___U3CSubMeshU3Ek__BackingField_7), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSampler
struct GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F : public GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMagnificationFilterMode Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSampler::magFilter
int32_t ___magFilter_3;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMinFilterMode Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSampler::GltfMinFilter
int32_t ___GltfMinFilter_4;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfWrapMode Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSampler::wrapS
int32_t ___wrapS_5;
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfWrapMode Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSampler::wrapT
int32_t ___wrapT_6;
public:
inline static int32_t get_offset_of_magFilter_3() { return static_cast<int32_t>(offsetof(GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F, ___magFilter_3)); }
inline int32_t get_magFilter_3() const { return ___magFilter_3; }
inline int32_t* get_address_of_magFilter_3() { return &___magFilter_3; }
inline void set_magFilter_3(int32_t value)
{
___magFilter_3 = value;
}
inline static int32_t get_offset_of_GltfMinFilter_4() { return static_cast<int32_t>(offsetof(GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F, ___GltfMinFilter_4)); }
inline int32_t get_GltfMinFilter_4() const { return ___GltfMinFilter_4; }
inline int32_t* get_address_of_GltfMinFilter_4() { return &___GltfMinFilter_4; }
inline void set_GltfMinFilter_4(int32_t value)
{
___GltfMinFilter_4 = value;
}
inline static int32_t get_offset_of_wrapS_5() { return static_cast<int32_t>(offsetof(GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F, ___wrapS_5)); }
inline int32_t get_wrapS_5() const { return ___wrapS_5; }
inline int32_t* get_address_of_wrapS_5() { return &___wrapS_5; }
inline void set_wrapS_5(int32_t value)
{
___wrapS_5 = value;
}
inline static int32_t get_offset_of_wrapT_6() { return static_cast<int32_t>(offsetof(GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F, ___wrapT_6)); }
inline int32_t get_wrapT_6() const { return ___wrapT_6; }
inline int32_t* get_address_of_wrapT_6() { return &___wrapT_6; }
inline void set_wrapT_6(int32_t value)
{
___wrapT_6 = value;
}
};
// 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;
};
// 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_GlyphPairAdjustmentRecord
struct TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 : public RuntimeObject
{
public:
// TMPro.TMP_GlyphAdjustmentRecord TMPro.TMP_GlyphPairAdjustmentRecord::m_FirstAdjustmentRecord
TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58 ___m_FirstAdjustmentRecord_0;
// TMPro.TMP_GlyphAdjustmentRecord TMPro.TMP_GlyphPairAdjustmentRecord::m_SecondAdjustmentRecord
TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58 ___m_SecondAdjustmentRecord_1;
// TMPro.FontFeatureLookupFlags TMPro.TMP_GlyphPairAdjustmentRecord::m_FeatureLookupFlags
int32_t ___m_FeatureLookupFlags_2;
public:
inline static int32_t get_offset_of_m_FirstAdjustmentRecord_0() { return static_cast<int32_t>(offsetof(TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76, ___m_FirstAdjustmentRecord_0)); }
inline TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58 get_m_FirstAdjustmentRecord_0() const { return ___m_FirstAdjustmentRecord_0; }
inline TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58 * get_address_of_m_FirstAdjustmentRecord_0() { return &___m_FirstAdjustmentRecord_0; }
inline void set_m_FirstAdjustmentRecord_0(TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58 value)
{
___m_FirstAdjustmentRecord_0 = value;
}
inline static int32_t get_offset_of_m_SecondAdjustmentRecord_1() { return static_cast<int32_t>(offsetof(TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76, ___m_SecondAdjustmentRecord_1)); }
inline TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58 get_m_SecondAdjustmentRecord_1() const { return ___m_SecondAdjustmentRecord_1; }
inline TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58 * get_address_of_m_SecondAdjustmentRecord_1() { return &___m_SecondAdjustmentRecord_1; }
inline void set_m_SecondAdjustmentRecord_1(TMP_GlyphAdjustmentRecord_t515A636DEA8D632C08D0B01A9AC1F962F0291E58 value)
{
___m_SecondAdjustmentRecord_1 = value;
}
inline static int32_t get_offset_of_m_FeatureLookupFlags_2() { return static_cast<int32_t>(offsetof(TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76, ___m_FeatureLookupFlags_2)); }
inline int32_t get_m_FeatureLookupFlags_2() const { return ___m_FeatureLookupFlags_2; }
inline int32_t* get_address_of_m_FeatureLookupFlags_2() { return &___m_FeatureLookupFlags_2; }
inline void set_m_FeatureLookupFlags_2(int32_t value)
{
___m_FeatureLookupFlags_2 = value;
}
};
// 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_RichTextTagStack`1<TMPro.FontWeight>
struct TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B
{
public:
// T[] TMPro.TMP_RichTextTagStack`1::m_ItemStack
FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446* ___m_ItemStack_0;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Index
int32_t ___m_Index_1;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Capacity
int32_t ___m_Capacity_2;
// T TMPro.TMP_RichTextTagStack`1::m_DefaultItem
int32_t ___m_DefaultItem_3;
public:
inline static int32_t get_offset_of_m_ItemStack_0() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B, ___m_ItemStack_0)); }
inline FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446* get_m_ItemStack_0() const { return ___m_ItemStack_0; }
inline FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446** get_address_of_m_ItemStack_0() { return &___m_ItemStack_0; }
inline void set_m_ItemStack_0(FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446* value)
{
___m_ItemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemStack_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B, ___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;
}
inline static int32_t get_offset_of_m_Capacity_2() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B, ___m_Capacity_2)); }
inline int32_t get_m_Capacity_2() const { return ___m_Capacity_2; }
inline int32_t* get_address_of_m_Capacity_2() { return &___m_Capacity_2; }
inline void set_m_Capacity_2(int32_t value)
{
___m_Capacity_2 = value;
}
inline static int32_t get_offset_of_m_DefaultItem_3() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B, ___m_DefaultItem_3)); }
inline int32_t get_m_DefaultItem_3() const { return ___m_DefaultItem_3; }
inline int32_t* get_address_of_m_DefaultItem_3() { return &___m_DefaultItem_3; }
inline void set_m_DefaultItem_3(int32_t value)
{
___m_DefaultItem_3 = value;
}
};
// TMPro.TMP_RichTextTagStack`1<TMPro.TextAlignmentOptions>
struct TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115
{
public:
// T[] TMPro.TMP_RichTextTagStack`1::m_ItemStack
TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B* ___m_ItemStack_0;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Index
int32_t ___m_Index_1;
// System.Int32 TMPro.TMP_RichTextTagStack`1::m_Capacity
int32_t ___m_Capacity_2;
// T TMPro.TMP_RichTextTagStack`1::m_DefaultItem
int32_t ___m_DefaultItem_3;
public:
inline static int32_t get_offset_of_m_ItemStack_0() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115, ___m_ItemStack_0)); }
inline TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B* get_m_ItemStack_0() const { return ___m_ItemStack_0; }
inline TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B** get_address_of_m_ItemStack_0() { return &___m_ItemStack_0; }
inline void set_m_ItemStack_0(TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B* value)
{
___m_ItemStack_0 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ItemStack_0), (void*)value);
}
inline static int32_t get_offset_of_m_Index_1() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115, ___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;
}
inline static int32_t get_offset_of_m_Capacity_2() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115, ___m_Capacity_2)); }
inline int32_t get_m_Capacity_2() const { return ___m_Capacity_2; }
inline int32_t* get_address_of_m_Capacity_2() { return &___m_Capacity_2; }
inline void set_m_Capacity_2(int32_t value)
{
___m_Capacity_2 = value;
}
inline static int32_t get_offset_of_m_DefaultItem_3() { return static_cast<int32_t>(offsetof(TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115, ___m_DefaultItem_3)); }
inline int32_t get_m_DefaultItem_3() const { return ___m_DefaultItem_3; }
inline int32_t* get_address_of_m_DefaultItem_3() { return &___m_DefaultItem_3; }
inline void set_m_DefaultItem_3(int32_t value)
{
___m_DefaultItem_3 = value;
}
};
// TMPro.TMP_SpriteGlyph
struct TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B : public Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4
{
public:
// UnityEngine.Sprite TMPro.TMP_SpriteGlyph::sprite
Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * ___sprite_5;
public:
inline static int32_t get_offset_of_sprite_5() { return static_cast<int32_t>(offsetof(TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B, ___sprite_5)); }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * get_sprite_5() const { return ___sprite_5; }
inline Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 ** get_address_of_sprite_5() { return &___sprite_5; }
inline void set_sprite_5(Sprite_tCA09498D612D08DE668653AF1E9C12BF53434198 * value)
{
___sprite_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___sprite_5), (void*)value);
}
};
// TMPro.TMP_TextElement
struct TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 : public RuntimeObject
{
public:
// TMPro.TextElementType TMPro.TMP_TextElement::m_ElementType
uint8_t ___m_ElementType_0;
// System.UInt32 TMPro.TMP_TextElement::m_Unicode
uint32_t ___m_Unicode_1;
// UnityEngine.TextCore.Glyph TMPro.TMP_TextElement::m_Glyph
Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4 * ___m_Glyph_2;
// System.UInt32 TMPro.TMP_TextElement::m_GlyphIndex
uint32_t ___m_GlyphIndex_3;
// System.Single TMPro.TMP_TextElement::m_Scale
float ___m_Scale_4;
public:
inline static int32_t get_offset_of_m_ElementType_0() { return static_cast<int32_t>(offsetof(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344, ___m_ElementType_0)); }
inline uint8_t get_m_ElementType_0() const { return ___m_ElementType_0; }
inline uint8_t* get_address_of_m_ElementType_0() { return &___m_ElementType_0; }
inline void set_m_ElementType_0(uint8_t value)
{
___m_ElementType_0 = value;
}
inline static int32_t get_offset_of_m_Unicode_1() { return static_cast<int32_t>(offsetof(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344, ___m_Unicode_1)); }
inline uint32_t get_m_Unicode_1() const { return ___m_Unicode_1; }
inline uint32_t* get_address_of_m_Unicode_1() { return &___m_Unicode_1; }
inline void set_m_Unicode_1(uint32_t value)
{
___m_Unicode_1 = value;
}
inline static int32_t get_offset_of_m_Glyph_2() { return static_cast<int32_t>(offsetof(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344, ___m_Glyph_2)); }
inline Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4 * get_m_Glyph_2() const { return ___m_Glyph_2; }
inline Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4 ** get_address_of_m_Glyph_2() { return &___m_Glyph_2; }
inline void set_m_Glyph_2(Glyph_t64B599C17F15D84707C46FE272E98B347E1283B4 * value)
{
___m_Glyph_2 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Glyph_2), (void*)value);
}
inline static int32_t get_offset_of_m_GlyphIndex_3() { return static_cast<int32_t>(offsetof(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344, ___m_GlyphIndex_3)); }
inline uint32_t get_m_GlyphIndex_3() const { return ___m_GlyphIndex_3; }
inline uint32_t* get_address_of_m_GlyphIndex_3() { return &___m_GlyphIndex_3; }
inline void set_m_GlyphIndex_3(uint32_t value)
{
___m_GlyphIndex_3 = value;
}
inline static int32_t get_offset_of_m_Scale_4() { return static_cast<int32_t>(offsetof(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344, ___m_Scale_4)); }
inline float get_m_Scale_4() const { return ___m_Scale_4; }
inline float* get_address_of_m_Scale_4() { return &___m_Scale_4; }
inline void set_m_Scale_4(float value)
{
___m_Scale_4 = value;
}
};
// UnityEngine.Component
struct Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// UnityEngine.Texture
struct Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 : public Object_tAE11E5E46CD5C37C9F3E8950C00CD8B45666A2D0
{
public:
public:
};
// System.Action`1<System.Boolean>
struct Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<TMPro.TMP_ColorGradient>
struct Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`1<UnityEngine.Object>
struct Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Boolean,System.Object>
struct Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Boolean,TMPro.TMP_FontAsset>
struct Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Boolean,TMPro.TextMeshPro>
struct Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>
struct Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Boolean,UnityEngine.Material>
struct Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Boolean,UnityEngine.Object>
struct Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>
struct Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 : public MulticastDelegate_t
{
public:
public:
};
// System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>
struct Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A : public MulticastDelegate_t
{
public:
public:
};
// TMPro.TMP_SpriteCharacter
struct TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33 : public TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344
{
public:
// System.String TMPro.TMP_SpriteCharacter::m_Name
String_t* ___m_Name_5;
// System.Int32 TMPro.TMP_SpriteCharacter::m_HashCode
int32_t ___m_HashCode_6;
public:
inline static int32_t get_offset_of_m_Name_5() { return static_cast<int32_t>(offsetof(TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33, ___m_Name_5)); }
inline String_t* get_m_Name_5() const { return ___m_Name_5; }
inline String_t** get_address_of_m_Name_5() { return &___m_Name_5; }
inline void set_m_Name_5(String_t* value)
{
___m_Name_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Name_5), (void*)value);
}
inline static int32_t get_offset_of_m_HashCode_6() { return static_cast<int32_t>(offsetof(TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33, ___m_HashCode_6)); }
inline int32_t get_m_HashCode_6() const { return ___m_HashCode_6; }
inline int32_t* get_address_of_m_HashCode_6() { return &___m_HashCode_6; }
inline void set_m_HashCode_6(int32_t value)
{
___m_HashCode_6 = value;
}
};
// TMPro.WordWrapState
struct WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557
{
public:
// System.Int32 TMPro.WordWrapState::previous_WordBreak
int32_t ___previous_WordBreak_0;
// System.Int32 TMPro.WordWrapState::total_CharacterCount
int32_t ___total_CharacterCount_1;
// System.Int32 TMPro.WordWrapState::visible_CharacterCount
int32_t ___visible_CharacterCount_2;
// System.Int32 TMPro.WordWrapState::visible_SpriteCount
int32_t ___visible_SpriteCount_3;
// System.Int32 TMPro.WordWrapState::visible_LinkCount
int32_t ___visible_LinkCount_4;
// System.Int32 TMPro.WordWrapState::firstCharacterIndex
int32_t ___firstCharacterIndex_5;
// System.Int32 TMPro.WordWrapState::firstVisibleCharacterIndex
int32_t ___firstVisibleCharacterIndex_6;
// System.Int32 TMPro.WordWrapState::lastCharacterIndex
int32_t ___lastCharacterIndex_7;
// System.Int32 TMPro.WordWrapState::lastVisibleCharIndex
int32_t ___lastVisibleCharIndex_8;
// System.Int32 TMPro.WordWrapState::lineNumber
int32_t ___lineNumber_9;
// System.Single TMPro.WordWrapState::maxCapHeight
float ___maxCapHeight_10;
// System.Single TMPro.WordWrapState::maxAscender
float ___maxAscender_11;
// System.Single TMPro.WordWrapState::maxDescender
float ___maxDescender_12;
// System.Single TMPro.WordWrapState::maxLineAscender
float ___maxLineAscender_13;
// System.Single TMPro.WordWrapState::maxLineDescender
float ___maxLineDescender_14;
// System.Single TMPro.WordWrapState::previousLineAscender
float ___previousLineAscender_15;
// System.Single TMPro.WordWrapState::xAdvance
float ___xAdvance_16;
// System.Single TMPro.WordWrapState::preferredWidth
float ___preferredWidth_17;
// System.Single TMPro.WordWrapState::preferredHeight
float ___preferredHeight_18;
// System.Single TMPro.WordWrapState::previousLineScale
float ___previousLineScale_19;
// System.Int32 TMPro.WordWrapState::wordCount
int32_t ___wordCount_20;
// TMPro.FontStyles TMPro.WordWrapState::fontStyle
int32_t ___fontStyle_21;
// System.Single TMPro.WordWrapState::fontScale
float ___fontScale_22;
// System.Single TMPro.WordWrapState::fontScaleMultiplier
float ___fontScaleMultiplier_23;
// System.Single TMPro.WordWrapState::currentFontSize
float ___currentFontSize_24;
// System.Single TMPro.WordWrapState::baselineOffset
float ___baselineOffset_25;
// System.Single TMPro.WordWrapState::lineOffset
float ___lineOffset_26;
// TMPro.TMP_TextInfo TMPro.WordWrapState::textInfo
TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 * ___textInfo_27;
// TMPro.TMP_LineInfo TMPro.WordWrapState::lineInfo
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 ___lineInfo_28;
// UnityEngine.Color32 TMPro.WordWrapState::vertexColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___vertexColor_29;
// UnityEngine.Color32 TMPro.WordWrapState::underlineColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_30;
// UnityEngine.Color32 TMPro.WordWrapState::strikethroughColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_31;
// UnityEngine.Color32 TMPro.WordWrapState::highlightColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_32;
// TMPro.TMP_FontStyleStack TMPro.WordWrapState::basicStyleStack
TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 ___basicStyleStack_33;
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32> TMPro.WordWrapState::colorStack
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___colorStack_34;
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32> TMPro.WordWrapState::underlineColorStack
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___underlineColorStack_35;
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32> TMPro.WordWrapState::strikethroughColorStack
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___strikethroughColorStack_36;
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32> TMPro.WordWrapState::highlightColorStack
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___highlightColorStack_37;
// TMPro.TMP_RichTextTagStack`1<TMPro.TMP_ColorGradient> TMPro.WordWrapState::colorGradientStack
TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D ___colorGradientStack_38;
// TMPro.TMP_RichTextTagStack`1<System.Single> TMPro.WordWrapState::sizeStack
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___sizeStack_39;
// TMPro.TMP_RichTextTagStack`1<System.Single> TMPro.WordWrapState::indentStack
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___indentStack_40;
// TMPro.TMP_RichTextTagStack`1<TMPro.FontWeight> TMPro.WordWrapState::fontWeightStack
TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B ___fontWeightStack_41;
// TMPro.TMP_RichTextTagStack`1<System.Int32> TMPro.WordWrapState::styleStack
TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F ___styleStack_42;
// TMPro.TMP_RichTextTagStack`1<System.Single> TMPro.WordWrapState::baselineStack
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___baselineStack_43;
// TMPro.TMP_RichTextTagStack`1<System.Int32> TMPro.WordWrapState::actionStack
TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F ___actionStack_44;
// TMPro.TMP_RichTextTagStack`1<TMPro.MaterialReference> TMPro.WordWrapState::materialReferenceStack
TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 ___materialReferenceStack_45;
// TMPro.TMP_RichTextTagStack`1<TMPro.TextAlignmentOptions> TMPro.WordWrapState::lineJustificationStack
TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 ___lineJustificationStack_46;
// System.Int32 TMPro.WordWrapState::spriteAnimationID
int32_t ___spriteAnimationID_47;
// TMPro.TMP_FontAsset TMPro.WordWrapState::currentFontAsset
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___currentFontAsset_48;
// TMPro.TMP_SpriteAsset TMPro.WordWrapState::currentSpriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___currentSpriteAsset_49;
// UnityEngine.Material TMPro.WordWrapState::currentMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___currentMaterial_50;
// System.Int32 TMPro.WordWrapState::currentMaterialIndex
int32_t ___currentMaterialIndex_51;
// TMPro.Extents TMPro.WordWrapState::meshExtents
Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 ___meshExtents_52;
// System.Boolean TMPro.WordWrapState::tagNoParsing
bool ___tagNoParsing_53;
// System.Boolean TMPro.WordWrapState::isNonBreakingSpace
bool ___isNonBreakingSpace_54;
public:
inline static int32_t get_offset_of_previous_WordBreak_0() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___previous_WordBreak_0)); }
inline int32_t get_previous_WordBreak_0() const { return ___previous_WordBreak_0; }
inline int32_t* get_address_of_previous_WordBreak_0() { return &___previous_WordBreak_0; }
inline void set_previous_WordBreak_0(int32_t value)
{
___previous_WordBreak_0 = value;
}
inline static int32_t get_offset_of_total_CharacterCount_1() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___total_CharacterCount_1)); }
inline int32_t get_total_CharacterCount_1() const { return ___total_CharacterCount_1; }
inline int32_t* get_address_of_total_CharacterCount_1() { return &___total_CharacterCount_1; }
inline void set_total_CharacterCount_1(int32_t value)
{
___total_CharacterCount_1 = value;
}
inline static int32_t get_offset_of_visible_CharacterCount_2() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___visible_CharacterCount_2)); }
inline int32_t get_visible_CharacterCount_2() const { return ___visible_CharacterCount_2; }
inline int32_t* get_address_of_visible_CharacterCount_2() { return &___visible_CharacterCount_2; }
inline void set_visible_CharacterCount_2(int32_t value)
{
___visible_CharacterCount_2 = value;
}
inline static int32_t get_offset_of_visible_SpriteCount_3() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___visible_SpriteCount_3)); }
inline int32_t get_visible_SpriteCount_3() const { return ___visible_SpriteCount_3; }
inline int32_t* get_address_of_visible_SpriteCount_3() { return &___visible_SpriteCount_3; }
inline void set_visible_SpriteCount_3(int32_t value)
{
___visible_SpriteCount_3 = value;
}
inline static int32_t get_offset_of_visible_LinkCount_4() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___visible_LinkCount_4)); }
inline int32_t get_visible_LinkCount_4() const { return ___visible_LinkCount_4; }
inline int32_t* get_address_of_visible_LinkCount_4() { return &___visible_LinkCount_4; }
inline void set_visible_LinkCount_4(int32_t value)
{
___visible_LinkCount_4 = value;
}
inline static int32_t get_offset_of_firstCharacterIndex_5() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___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(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___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(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___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_lastVisibleCharIndex_8() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___lastVisibleCharIndex_8)); }
inline int32_t get_lastVisibleCharIndex_8() const { return ___lastVisibleCharIndex_8; }
inline int32_t* get_address_of_lastVisibleCharIndex_8() { return &___lastVisibleCharIndex_8; }
inline void set_lastVisibleCharIndex_8(int32_t value)
{
___lastVisibleCharIndex_8 = value;
}
inline static int32_t get_offset_of_lineNumber_9() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___lineNumber_9)); }
inline int32_t get_lineNumber_9() const { return ___lineNumber_9; }
inline int32_t* get_address_of_lineNumber_9() { return &___lineNumber_9; }
inline void set_lineNumber_9(int32_t value)
{
___lineNumber_9 = value;
}
inline static int32_t get_offset_of_maxCapHeight_10() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___maxCapHeight_10)); }
inline float get_maxCapHeight_10() const { return ___maxCapHeight_10; }
inline float* get_address_of_maxCapHeight_10() { return &___maxCapHeight_10; }
inline void set_maxCapHeight_10(float value)
{
___maxCapHeight_10 = value;
}
inline static int32_t get_offset_of_maxAscender_11() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___maxAscender_11)); }
inline float get_maxAscender_11() const { return ___maxAscender_11; }
inline float* get_address_of_maxAscender_11() { return &___maxAscender_11; }
inline void set_maxAscender_11(float value)
{
___maxAscender_11 = value;
}
inline static int32_t get_offset_of_maxDescender_12() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___maxDescender_12)); }
inline float get_maxDescender_12() const { return ___maxDescender_12; }
inline float* get_address_of_maxDescender_12() { return &___maxDescender_12; }
inline void set_maxDescender_12(float value)
{
___maxDescender_12 = value;
}
inline static int32_t get_offset_of_maxLineAscender_13() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___maxLineAscender_13)); }
inline float get_maxLineAscender_13() const { return ___maxLineAscender_13; }
inline float* get_address_of_maxLineAscender_13() { return &___maxLineAscender_13; }
inline void set_maxLineAscender_13(float value)
{
___maxLineAscender_13 = value;
}
inline static int32_t get_offset_of_maxLineDescender_14() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___maxLineDescender_14)); }
inline float get_maxLineDescender_14() const { return ___maxLineDescender_14; }
inline float* get_address_of_maxLineDescender_14() { return &___maxLineDescender_14; }
inline void set_maxLineDescender_14(float value)
{
___maxLineDescender_14 = value;
}
inline static int32_t get_offset_of_previousLineAscender_15() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___previousLineAscender_15)); }
inline float get_previousLineAscender_15() const { return ___previousLineAscender_15; }
inline float* get_address_of_previousLineAscender_15() { return &___previousLineAscender_15; }
inline void set_previousLineAscender_15(float value)
{
___previousLineAscender_15 = value;
}
inline static int32_t get_offset_of_xAdvance_16() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___xAdvance_16)); }
inline float get_xAdvance_16() const { return ___xAdvance_16; }
inline float* get_address_of_xAdvance_16() { return &___xAdvance_16; }
inline void set_xAdvance_16(float value)
{
___xAdvance_16 = value;
}
inline static int32_t get_offset_of_preferredWidth_17() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___preferredWidth_17)); }
inline float get_preferredWidth_17() const { return ___preferredWidth_17; }
inline float* get_address_of_preferredWidth_17() { return &___preferredWidth_17; }
inline void set_preferredWidth_17(float value)
{
___preferredWidth_17 = value;
}
inline static int32_t get_offset_of_preferredHeight_18() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___preferredHeight_18)); }
inline float get_preferredHeight_18() const { return ___preferredHeight_18; }
inline float* get_address_of_preferredHeight_18() { return &___preferredHeight_18; }
inline void set_preferredHeight_18(float value)
{
___preferredHeight_18 = value;
}
inline static int32_t get_offset_of_previousLineScale_19() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___previousLineScale_19)); }
inline float get_previousLineScale_19() const { return ___previousLineScale_19; }
inline float* get_address_of_previousLineScale_19() { return &___previousLineScale_19; }
inline void set_previousLineScale_19(float value)
{
___previousLineScale_19 = value;
}
inline static int32_t get_offset_of_wordCount_20() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___wordCount_20)); }
inline int32_t get_wordCount_20() const { return ___wordCount_20; }
inline int32_t* get_address_of_wordCount_20() { return &___wordCount_20; }
inline void set_wordCount_20(int32_t value)
{
___wordCount_20 = value;
}
inline static int32_t get_offset_of_fontStyle_21() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___fontStyle_21)); }
inline int32_t get_fontStyle_21() const { return ___fontStyle_21; }
inline int32_t* get_address_of_fontStyle_21() { return &___fontStyle_21; }
inline void set_fontStyle_21(int32_t value)
{
___fontStyle_21 = value;
}
inline static int32_t get_offset_of_fontScale_22() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___fontScale_22)); }
inline float get_fontScale_22() const { return ___fontScale_22; }
inline float* get_address_of_fontScale_22() { return &___fontScale_22; }
inline void set_fontScale_22(float value)
{
___fontScale_22 = value;
}
inline static int32_t get_offset_of_fontScaleMultiplier_23() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___fontScaleMultiplier_23)); }
inline float get_fontScaleMultiplier_23() const { return ___fontScaleMultiplier_23; }
inline float* get_address_of_fontScaleMultiplier_23() { return &___fontScaleMultiplier_23; }
inline void set_fontScaleMultiplier_23(float value)
{
___fontScaleMultiplier_23 = value;
}
inline static int32_t get_offset_of_currentFontSize_24() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___currentFontSize_24)); }
inline float get_currentFontSize_24() const { return ___currentFontSize_24; }
inline float* get_address_of_currentFontSize_24() { return &___currentFontSize_24; }
inline void set_currentFontSize_24(float value)
{
___currentFontSize_24 = value;
}
inline static int32_t get_offset_of_baselineOffset_25() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___baselineOffset_25)); }
inline float get_baselineOffset_25() const { return ___baselineOffset_25; }
inline float* get_address_of_baselineOffset_25() { return &___baselineOffset_25; }
inline void set_baselineOffset_25(float value)
{
___baselineOffset_25 = value;
}
inline static int32_t get_offset_of_lineOffset_26() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___lineOffset_26)); }
inline float get_lineOffset_26() const { return ___lineOffset_26; }
inline float* get_address_of_lineOffset_26() { return &___lineOffset_26; }
inline void set_lineOffset_26(float value)
{
___lineOffset_26 = value;
}
inline static int32_t get_offset_of_textInfo_27() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___textInfo_27)); }
inline TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 * get_textInfo_27() const { return ___textInfo_27; }
inline TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 ** get_address_of_textInfo_27() { return &___textInfo_27; }
inline void set_textInfo_27(TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 * value)
{
___textInfo_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___textInfo_27), (void*)value);
}
inline static int32_t get_offset_of_lineInfo_28() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___lineInfo_28)); }
inline TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 get_lineInfo_28() const { return ___lineInfo_28; }
inline TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 * get_address_of_lineInfo_28() { return &___lineInfo_28; }
inline void set_lineInfo_28(TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 value)
{
___lineInfo_28 = value;
}
inline static int32_t get_offset_of_vertexColor_29() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___vertexColor_29)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_vertexColor_29() const { return ___vertexColor_29; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_vertexColor_29() { return &___vertexColor_29; }
inline void set_vertexColor_29(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___vertexColor_29 = value;
}
inline static int32_t get_offset_of_underlineColor_30() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___underlineColor_30)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_underlineColor_30() const { return ___underlineColor_30; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_underlineColor_30() { return &___underlineColor_30; }
inline void set_underlineColor_30(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___underlineColor_30 = value;
}
inline static int32_t get_offset_of_strikethroughColor_31() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___strikethroughColor_31)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_strikethroughColor_31() const { return ___strikethroughColor_31; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_strikethroughColor_31() { return &___strikethroughColor_31; }
inline void set_strikethroughColor_31(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___strikethroughColor_31 = value;
}
inline static int32_t get_offset_of_highlightColor_32() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___highlightColor_32)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_highlightColor_32() const { return ___highlightColor_32; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_highlightColor_32() { return &___highlightColor_32; }
inline void set_highlightColor_32(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___highlightColor_32 = value;
}
inline static int32_t get_offset_of_basicStyleStack_33() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___basicStyleStack_33)); }
inline TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 get_basicStyleStack_33() const { return ___basicStyleStack_33; }
inline TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 * get_address_of_basicStyleStack_33() { return &___basicStyleStack_33; }
inline void set_basicStyleStack_33(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 value)
{
___basicStyleStack_33 = value;
}
inline static int32_t get_offset_of_colorStack_34() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___colorStack_34)); }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 get_colorStack_34() const { return ___colorStack_34; }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 * get_address_of_colorStack_34() { return &___colorStack_34; }
inline void set_colorStack_34(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 value)
{
___colorStack_34 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___colorStack_34))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_underlineColorStack_35() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___underlineColorStack_35)); }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 get_underlineColorStack_35() const { return ___underlineColorStack_35; }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 * get_address_of_underlineColorStack_35() { return &___underlineColorStack_35; }
inline void set_underlineColorStack_35(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 value)
{
___underlineColorStack_35 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___underlineColorStack_35))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_strikethroughColorStack_36() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___strikethroughColorStack_36)); }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 get_strikethroughColorStack_36() const { return ___strikethroughColorStack_36; }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 * get_address_of_strikethroughColorStack_36() { return &___strikethroughColorStack_36; }
inline void set_strikethroughColorStack_36(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 value)
{
___strikethroughColorStack_36 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___strikethroughColorStack_36))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_highlightColorStack_37() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___highlightColorStack_37)); }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 get_highlightColorStack_37() const { return ___highlightColorStack_37; }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 * get_address_of_highlightColorStack_37() { return &___highlightColorStack_37; }
inline void set_highlightColorStack_37(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 value)
{
___highlightColorStack_37 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___highlightColorStack_37))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_colorGradientStack_38() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___colorGradientStack_38)); }
inline TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D get_colorGradientStack_38() const { return ___colorGradientStack_38; }
inline TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D * get_address_of_colorGradientStack_38() { return &___colorGradientStack_38; }
inline void set_colorGradientStack_38(TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D value)
{
___colorGradientStack_38 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___colorGradientStack_38))->___m_ItemStack_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___colorGradientStack_38))->___m_DefaultItem_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_sizeStack_39() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___sizeStack_39)); }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 get_sizeStack_39() const { return ___sizeStack_39; }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 * get_address_of_sizeStack_39() { return &___sizeStack_39; }
inline void set_sizeStack_39(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 value)
{
___sizeStack_39 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___sizeStack_39))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_indentStack_40() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___indentStack_40)); }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 get_indentStack_40() const { return ___indentStack_40; }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 * get_address_of_indentStack_40() { return &___indentStack_40; }
inline void set_indentStack_40(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 value)
{
___indentStack_40 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___indentStack_40))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_fontWeightStack_41() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___fontWeightStack_41)); }
inline TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B get_fontWeightStack_41() const { return ___fontWeightStack_41; }
inline TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B * get_address_of_fontWeightStack_41() { return &___fontWeightStack_41; }
inline void set_fontWeightStack_41(TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B value)
{
___fontWeightStack_41 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___fontWeightStack_41))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_styleStack_42() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___styleStack_42)); }
inline TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F get_styleStack_42() const { return ___styleStack_42; }
inline TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F * get_address_of_styleStack_42() { return &___styleStack_42; }
inline void set_styleStack_42(TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F value)
{
___styleStack_42 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___styleStack_42))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_baselineStack_43() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___baselineStack_43)); }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 get_baselineStack_43() const { return ___baselineStack_43; }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 * get_address_of_baselineStack_43() { return &___baselineStack_43; }
inline void set_baselineStack_43(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 value)
{
___baselineStack_43 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___baselineStack_43))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_actionStack_44() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___actionStack_44)); }
inline TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F get_actionStack_44() const { return ___actionStack_44; }
inline TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F * get_address_of_actionStack_44() { return &___actionStack_44; }
inline void set_actionStack_44(TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F value)
{
___actionStack_44 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___actionStack_44))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_materialReferenceStack_45() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___materialReferenceStack_45)); }
inline TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 get_materialReferenceStack_45() const { return ___materialReferenceStack_45; }
inline TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 * get_address_of_materialReferenceStack_45() { return &___materialReferenceStack_45; }
inline void set_materialReferenceStack_45(TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 value)
{
___materialReferenceStack_45 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___materialReferenceStack_45))->___m_ItemStack_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___materialReferenceStack_45))->___m_DefaultItem_3))->___fontAsset_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___materialReferenceStack_45))->___m_DefaultItem_3))->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___materialReferenceStack_45))->___m_DefaultItem_3))->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___materialReferenceStack_45))->___m_DefaultItem_3))->___fallbackMaterial_6), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_lineJustificationStack_46() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___lineJustificationStack_46)); }
inline TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 get_lineJustificationStack_46() const { return ___lineJustificationStack_46; }
inline TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 * get_address_of_lineJustificationStack_46() { return &___lineJustificationStack_46; }
inline void set_lineJustificationStack_46(TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 value)
{
___lineJustificationStack_46 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___lineJustificationStack_46))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_spriteAnimationID_47() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___spriteAnimationID_47)); }
inline int32_t get_spriteAnimationID_47() const { return ___spriteAnimationID_47; }
inline int32_t* get_address_of_spriteAnimationID_47() { return &___spriteAnimationID_47; }
inline void set_spriteAnimationID_47(int32_t value)
{
___spriteAnimationID_47 = value;
}
inline static int32_t get_offset_of_currentFontAsset_48() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___currentFontAsset_48)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_currentFontAsset_48() const { return ___currentFontAsset_48; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_currentFontAsset_48() { return &___currentFontAsset_48; }
inline void set_currentFontAsset_48(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___currentFontAsset_48 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentFontAsset_48), (void*)value);
}
inline static int32_t get_offset_of_currentSpriteAsset_49() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___currentSpriteAsset_49)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_currentSpriteAsset_49() const { return ___currentSpriteAsset_49; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_currentSpriteAsset_49() { return &___currentSpriteAsset_49; }
inline void set_currentSpriteAsset_49(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___currentSpriteAsset_49 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentSpriteAsset_49), (void*)value);
}
inline static int32_t get_offset_of_currentMaterial_50() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___currentMaterial_50)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_currentMaterial_50() const { return ___currentMaterial_50; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_currentMaterial_50() { return &___currentMaterial_50; }
inline void set_currentMaterial_50(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___currentMaterial_50 = value;
Il2CppCodeGenWriteBarrier((void**)(&___currentMaterial_50), (void*)value);
}
inline static int32_t get_offset_of_currentMaterialIndex_51() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___currentMaterialIndex_51)); }
inline int32_t get_currentMaterialIndex_51() const { return ___currentMaterialIndex_51; }
inline int32_t* get_address_of_currentMaterialIndex_51() { return &___currentMaterialIndex_51; }
inline void set_currentMaterialIndex_51(int32_t value)
{
___currentMaterialIndex_51 = value;
}
inline static int32_t get_offset_of_meshExtents_52() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___meshExtents_52)); }
inline Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 get_meshExtents_52() const { return ___meshExtents_52; }
inline Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 * get_address_of_meshExtents_52() { return &___meshExtents_52; }
inline void set_meshExtents_52(Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 value)
{
___meshExtents_52 = value;
}
inline static int32_t get_offset_of_tagNoParsing_53() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___tagNoParsing_53)); }
inline bool get_tagNoParsing_53() const { return ___tagNoParsing_53; }
inline bool* get_address_of_tagNoParsing_53() { return &___tagNoParsing_53; }
inline void set_tagNoParsing_53(bool value)
{
___tagNoParsing_53 = value;
}
inline static int32_t get_offset_of_isNonBreakingSpace_54() { return static_cast<int32_t>(offsetof(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557, ___isNonBreakingSpace_54)); }
inline bool get_isNonBreakingSpace_54() const { return ___isNonBreakingSpace_54; }
inline bool* get_address_of_isNonBreakingSpace_54() { return &___isNonBreakingSpace_54; }
inline void set_isNonBreakingSpace_54(bool value)
{
___isNonBreakingSpace_54 = value;
}
};
// Native definition for P/Invoke marshalling of TMPro.WordWrapState
struct WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557_marshaled_pinvoke
{
int32_t ___previous_WordBreak_0;
int32_t ___total_CharacterCount_1;
int32_t ___visible_CharacterCount_2;
int32_t ___visible_SpriteCount_3;
int32_t ___visible_LinkCount_4;
int32_t ___firstCharacterIndex_5;
int32_t ___firstVisibleCharacterIndex_6;
int32_t ___lastCharacterIndex_7;
int32_t ___lastVisibleCharIndex_8;
int32_t ___lineNumber_9;
float ___maxCapHeight_10;
float ___maxAscender_11;
float ___maxDescender_12;
float ___maxLineAscender_13;
float ___maxLineDescender_14;
float ___previousLineAscender_15;
float ___xAdvance_16;
float ___preferredWidth_17;
float ___preferredHeight_18;
float ___previousLineScale_19;
int32_t ___wordCount_20;
int32_t ___fontStyle_21;
float ___fontScale_22;
float ___fontScaleMultiplier_23;
float ___currentFontSize_24;
float ___baselineOffset_25;
float ___lineOffset_26;
TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 * ___textInfo_27;
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 ___lineInfo_28;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___vertexColor_29;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_30;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_31;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_32;
TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 ___basicStyleStack_33;
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___colorStack_34;
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___underlineColorStack_35;
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___strikethroughColorStack_36;
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___highlightColorStack_37;
TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D ___colorGradientStack_38;
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___sizeStack_39;
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___indentStack_40;
TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B ___fontWeightStack_41;
TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F ___styleStack_42;
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___baselineStack_43;
TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F ___actionStack_44;
TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 ___materialReferenceStack_45;
TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 ___lineJustificationStack_46;
int32_t ___spriteAnimationID_47;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___currentFontAsset_48;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___currentSpriteAsset_49;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___currentMaterial_50;
int32_t ___currentMaterialIndex_51;
Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 ___meshExtents_52;
int32_t ___tagNoParsing_53;
int32_t ___isNonBreakingSpace_54;
};
// Native definition for COM marshalling of TMPro.WordWrapState
struct WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557_marshaled_com
{
int32_t ___previous_WordBreak_0;
int32_t ___total_CharacterCount_1;
int32_t ___visible_CharacterCount_2;
int32_t ___visible_SpriteCount_3;
int32_t ___visible_LinkCount_4;
int32_t ___firstCharacterIndex_5;
int32_t ___firstVisibleCharacterIndex_6;
int32_t ___lastCharacterIndex_7;
int32_t ___lastVisibleCharIndex_8;
int32_t ___lineNumber_9;
float ___maxCapHeight_10;
float ___maxAscender_11;
float ___maxDescender_12;
float ___maxLineAscender_13;
float ___maxLineDescender_14;
float ___previousLineAscender_15;
float ___xAdvance_16;
float ___preferredWidth_17;
float ___preferredHeight_18;
float ___previousLineScale_19;
int32_t ___wordCount_20;
int32_t ___fontStyle_21;
float ___fontScale_22;
float ___fontScaleMultiplier_23;
float ___currentFontSize_24;
float ___baselineOffset_25;
float ___lineOffset_26;
TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 * ___textInfo_27;
TMP_LineInfo_tE89A82D872E55C3DDF29C4C8D862358633D0B442 ___lineInfo_28;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___vertexColor_29;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___underlineColor_30;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___strikethroughColor_31;
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___highlightColor_32;
TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 ___basicStyleStack_33;
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___colorStack_34;
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___underlineColorStack_35;
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___strikethroughColorStack_36;
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___highlightColorStack_37;
TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D ___colorGradientStack_38;
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___sizeStack_39;
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___indentStack_40;
TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B ___fontWeightStack_41;
TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F ___styleStack_42;
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___baselineStack_43;
TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F ___actionStack_44;
TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 ___materialReferenceStack_45;
TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 ___lineJustificationStack_46;
int32_t ___spriteAnimationID_47;
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___currentFontAsset_48;
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___currentSpriteAsset_49;
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___currentMaterial_50;
int32_t ___currentMaterialIndex_51;
Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 ___meshExtents_52;
int32_t ___tagNoParsing_53;
int32_t ___isNonBreakingSpace_54;
};
// UnityEngine.Behaviour
struct Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8 : public Component_t05064EF382ABCAF4B8C94F8A350EA85184C26621
{
public:
public:
};
// UnityEngine.Texture2D
struct Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C : public Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4
{
public:
public:
};
// UnityEngine.MonoBehaviour
struct MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429 : public Behaviour_tBDC7E9C3C898AD8348891B82D3E345801D920CA8
{
public:
public:
};
// Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer
struct BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineDataProvider Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::lineDataSource
BaseMixedRealityLineDataProvider_tBDC1C0137D794157BB9AA6DDB6838067D790AFB4 * ___lineDataSource_4;
// UnityEngine.Gradient Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::lineColor
Gradient_t35A694DDA1066524440E325E582B01E33DE66A3A * ___lineColor_5;
// UnityEngine.AnimationCurve Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::lineWidth
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * ___lineWidth_6;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::widthMultiplier
float ___widthMultiplier_7;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::colorOffset
float ___colorOffset_8;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::widthOffset
float ___widthOffset_9;
// Microsoft.MixedReality.Toolkit.StepMode Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::stepMode
int32_t ___stepMode_10;
// System.Int32 Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::lineStepCount
int32_t ___lineStepCount_11;
// Microsoft.MixedReality.Toolkit.PointDistributionMode Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::pointDistributionMode
int32_t ___pointDistributionMode_12;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::customPointDistributionLength
float ___customPointDistributionLength_13;
// UnityEngine.AnimationCurve Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer::customPointDistributionCurve
AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * ___customPointDistributionCurve_14;
public:
inline static int32_t get_offset_of_lineDataSource_4() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___lineDataSource_4)); }
inline BaseMixedRealityLineDataProvider_tBDC1C0137D794157BB9AA6DDB6838067D790AFB4 * get_lineDataSource_4() const { return ___lineDataSource_4; }
inline BaseMixedRealityLineDataProvider_tBDC1C0137D794157BB9AA6DDB6838067D790AFB4 ** get_address_of_lineDataSource_4() { return &___lineDataSource_4; }
inline void set_lineDataSource_4(BaseMixedRealityLineDataProvider_tBDC1C0137D794157BB9AA6DDB6838067D790AFB4 * value)
{
___lineDataSource_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lineDataSource_4), (void*)value);
}
inline static int32_t get_offset_of_lineColor_5() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___lineColor_5)); }
inline Gradient_t35A694DDA1066524440E325E582B01E33DE66A3A * get_lineColor_5() const { return ___lineColor_5; }
inline Gradient_t35A694DDA1066524440E325E582B01E33DE66A3A ** get_address_of_lineColor_5() { return &___lineColor_5; }
inline void set_lineColor_5(Gradient_t35A694DDA1066524440E325E582B01E33DE66A3A * value)
{
___lineColor_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lineColor_5), (void*)value);
}
inline static int32_t get_offset_of_lineWidth_6() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___lineWidth_6)); }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * get_lineWidth_6() const { return ___lineWidth_6; }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C ** get_address_of_lineWidth_6() { return &___lineWidth_6; }
inline void set_lineWidth_6(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * value)
{
___lineWidth_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___lineWidth_6), (void*)value);
}
inline static int32_t get_offset_of_widthMultiplier_7() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___widthMultiplier_7)); }
inline float get_widthMultiplier_7() const { return ___widthMultiplier_7; }
inline float* get_address_of_widthMultiplier_7() { return &___widthMultiplier_7; }
inline void set_widthMultiplier_7(float value)
{
___widthMultiplier_7 = value;
}
inline static int32_t get_offset_of_colorOffset_8() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___colorOffset_8)); }
inline float get_colorOffset_8() const { return ___colorOffset_8; }
inline float* get_address_of_colorOffset_8() { return &___colorOffset_8; }
inline void set_colorOffset_8(float value)
{
___colorOffset_8 = value;
}
inline static int32_t get_offset_of_widthOffset_9() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___widthOffset_9)); }
inline float get_widthOffset_9() const { return ___widthOffset_9; }
inline float* get_address_of_widthOffset_9() { return &___widthOffset_9; }
inline void set_widthOffset_9(float value)
{
___widthOffset_9 = value;
}
inline static int32_t get_offset_of_stepMode_10() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___stepMode_10)); }
inline int32_t get_stepMode_10() const { return ___stepMode_10; }
inline int32_t* get_address_of_stepMode_10() { return &___stepMode_10; }
inline void set_stepMode_10(int32_t value)
{
___stepMode_10 = value;
}
inline static int32_t get_offset_of_lineStepCount_11() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___lineStepCount_11)); }
inline int32_t get_lineStepCount_11() const { return ___lineStepCount_11; }
inline int32_t* get_address_of_lineStepCount_11() { return &___lineStepCount_11; }
inline void set_lineStepCount_11(int32_t value)
{
___lineStepCount_11 = value;
}
inline static int32_t get_offset_of_pointDistributionMode_12() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___pointDistributionMode_12)); }
inline int32_t get_pointDistributionMode_12() const { return ___pointDistributionMode_12; }
inline int32_t* get_address_of_pointDistributionMode_12() { return &___pointDistributionMode_12; }
inline void set_pointDistributionMode_12(int32_t value)
{
___pointDistributionMode_12 = value;
}
inline static int32_t get_offset_of_customPointDistributionLength_13() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___customPointDistributionLength_13)); }
inline float get_customPointDistributionLength_13() const { return ___customPointDistributionLength_13; }
inline float* get_address_of_customPointDistributionLength_13() { return &___customPointDistributionLength_13; }
inline void set_customPointDistributionLength_13(float value)
{
___customPointDistributionLength_13 = value;
}
inline static int32_t get_offset_of_customPointDistributionCurve_14() { return static_cast<int32_t>(offsetof(BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA, ___customPointDistributionCurve_14)); }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * get_customPointDistributionCurve_14() const { return ___customPointDistributionCurve_14; }
inline AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C ** get_address_of_customPointDistributionCurve_14() { return &___customPointDistributionCurve_14; }
inline void set_customPointDistributionCurve_14(AnimationCurve_tD2F265379583AAF1BF8D84F1BB8DB12980FA504C * value)
{
___customPointDistributionCurve_14 = value;
Il2CppCodeGenWriteBarrier((void**)(&___customPointDistributionCurve_14), (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver
struct Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::updateLinkedTransform
bool ___updateLinkedTransform_4;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::moveLerpTime
float ___moveLerpTime_5;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::rotateLerpTime
float ___rotateLerpTime_6;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::scaleLerpTime
float ___scaleLerpTime_7;
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::maintainScale
bool ___maintainScale_8;
// System.Boolean Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::smoothing
bool ___smoothing_9;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::lifetime
float ___lifetime_10;
// System.Single Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::currentLifetime
float ___currentLifetime_11;
// Microsoft.MixedReality.Toolkit.Utilities.Solvers.SolverHandler Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver::SolverHandler
SolverHandler_tB266A703760FDE8F574DAB22078E58FBD4F181FE * ___SolverHandler_12;
public:
inline static int32_t get_offset_of_updateLinkedTransform_4() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___updateLinkedTransform_4)); }
inline bool get_updateLinkedTransform_4() const { return ___updateLinkedTransform_4; }
inline bool* get_address_of_updateLinkedTransform_4() { return &___updateLinkedTransform_4; }
inline void set_updateLinkedTransform_4(bool value)
{
___updateLinkedTransform_4 = value;
}
inline static int32_t get_offset_of_moveLerpTime_5() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___moveLerpTime_5)); }
inline float get_moveLerpTime_5() const { return ___moveLerpTime_5; }
inline float* get_address_of_moveLerpTime_5() { return &___moveLerpTime_5; }
inline void set_moveLerpTime_5(float value)
{
___moveLerpTime_5 = value;
}
inline static int32_t get_offset_of_rotateLerpTime_6() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___rotateLerpTime_6)); }
inline float get_rotateLerpTime_6() const { return ___rotateLerpTime_6; }
inline float* get_address_of_rotateLerpTime_6() { return &___rotateLerpTime_6; }
inline void set_rotateLerpTime_6(float value)
{
___rotateLerpTime_6 = value;
}
inline static int32_t get_offset_of_scaleLerpTime_7() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___scaleLerpTime_7)); }
inline float get_scaleLerpTime_7() const { return ___scaleLerpTime_7; }
inline float* get_address_of_scaleLerpTime_7() { return &___scaleLerpTime_7; }
inline void set_scaleLerpTime_7(float value)
{
___scaleLerpTime_7 = value;
}
inline static int32_t get_offset_of_maintainScale_8() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___maintainScale_8)); }
inline bool get_maintainScale_8() const { return ___maintainScale_8; }
inline bool* get_address_of_maintainScale_8() { return &___maintainScale_8; }
inline void set_maintainScale_8(bool value)
{
___maintainScale_8 = value;
}
inline static int32_t get_offset_of_smoothing_9() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___smoothing_9)); }
inline bool get_smoothing_9() const { return ___smoothing_9; }
inline bool* get_address_of_smoothing_9() { return &___smoothing_9; }
inline void set_smoothing_9(bool value)
{
___smoothing_9 = value;
}
inline static int32_t get_offset_of_lifetime_10() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___lifetime_10)); }
inline float get_lifetime_10() const { return ___lifetime_10; }
inline float* get_address_of_lifetime_10() { return &___lifetime_10; }
inline void set_lifetime_10(float value)
{
___lifetime_10 = value;
}
inline static int32_t get_offset_of_currentLifetime_11() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___currentLifetime_11)); }
inline float get_currentLifetime_11() const { return ___currentLifetime_11; }
inline float* get_address_of_currentLifetime_11() { return &___currentLifetime_11; }
inline void set_currentLifetime_11(float value)
{
___currentLifetime_11 = value;
}
inline static int32_t get_offset_of_SolverHandler_12() { return static_cast<int32_t>(offsetof(Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011, ___SolverHandler_12)); }
inline SolverHandler_tB266A703760FDE8F574DAB22078E58FBD4F181FE * get_SolverHandler_12() const { return ___SolverHandler_12; }
inline SolverHandler_tB266A703760FDE8F574DAB22078E58FBD4F181FE ** get_address_of_SolverHandler_12() { return &___SolverHandler_12; }
inline void set_SolverHandler_12(SolverHandler_tB266A703760FDE8F574DAB22078E58FBD4F181FE * value)
{
___SolverHandler_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___SolverHandler_12), (void*)value);
}
};
// TMPro.TMP_Dropdown_DropdownItem
struct DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
// TMPro.TMP_Text TMPro.TMP_Dropdown_DropdownItem::m_Text
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___m_Text_4;
// UnityEngine.UI.Image TMPro.TMP_Dropdown_DropdownItem::m_Image
Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * ___m_Image_5;
// UnityEngine.RectTransform TMPro.TMP_Dropdown_DropdownItem::m_RectTransform
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_RectTransform_6;
// UnityEngine.UI.Toggle TMPro.TMP_Dropdown_DropdownItem::m_Toggle
Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * ___m_Toggle_7;
public:
inline static int32_t get_offset_of_m_Text_4() { return static_cast<int32_t>(offsetof(DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD, ___m_Text_4)); }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * get_m_Text_4() const { return ___m_Text_4; }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** get_address_of_m_Text_4() { return &___m_Text_4; }
inline void set_m_Text_4(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
___m_Text_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Text_4), (void*)value);
}
inline static int32_t get_offset_of_m_Image_5() { return static_cast<int32_t>(offsetof(DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD, ___m_Image_5)); }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * get_m_Image_5() const { return ___m_Image_5; }
inline Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E ** get_address_of_m_Image_5() { return &___m_Image_5; }
inline void set_m_Image_5(Image_t18FED07D8646917E1C563745518CF3DD57FF0B3E * value)
{
___m_Image_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Image_5), (void*)value);
}
inline static int32_t get_offset_of_m_RectTransform_6() { return static_cast<int32_t>(offsetof(DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD, ___m_RectTransform_6)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_RectTransform_6() const { return ___m_RectTransform_6; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_RectTransform_6() { return &___m_RectTransform_6; }
inline void set_m_RectTransform_6(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_RectTransform_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_6), (void*)value);
}
inline static int32_t get_offset_of_m_Toggle_7() { return static_cast<int32_t>(offsetof(DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD, ___m_Toggle_7)); }
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * get_m_Toggle_7() const { return ___m_Toggle_7; }
inline Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 ** get_address_of_m_Toggle_7() { return &___m_Toggle_7; }
inline void set_m_Toggle_7(Toggle_t9ADD572046F831945ED0E48A01B50FEA1CA52106 * value)
{
___m_Toggle_7 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Toggle_7), (void*)value);
}
};
// UnityEngine.EventSystems.UIBehaviour
struct UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70 : public MonoBehaviour_t4A60845CF505405AF8BE8C61CC07F75CADEF6429
{
public:
public:
};
// UnityEngine.UI.Graphic
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8 : public UIBehaviour_t3C3C339CD5677BA7FC27C352FED8B78052A3FE70
{
public:
// UnityEngine.Material UnityEngine.UI.Graphic::m_Material
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_Material_6;
// UnityEngine.Color UnityEngine.UI.Graphic::m_Color
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_Color_7;
// System.Boolean UnityEngine.UI.Graphic::m_SkipLayoutUpdate
bool ___m_SkipLayoutUpdate_8;
// System.Boolean UnityEngine.UI.Graphic::m_SkipMaterialUpdate
bool ___m_SkipMaterialUpdate_9;
// System.Boolean UnityEngine.UI.Graphic::m_RaycastTarget
bool ___m_RaycastTarget_10;
// UnityEngine.RectTransform UnityEngine.UI.Graphic::m_RectTransform
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_RectTransform_11;
// UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::m_CanvasRenderer
CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * ___m_CanvasRenderer_12;
// UnityEngine.Canvas UnityEngine.UI.Graphic::m_Canvas
Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * ___m_Canvas_13;
// System.Boolean UnityEngine.UI.Graphic::m_VertsDirty
bool ___m_VertsDirty_14;
// System.Boolean UnityEngine.UI.Graphic::m_MaterialDirty
bool ___m_MaterialDirty_15;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyLayoutCallback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___m_OnDirtyLayoutCallback_16;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyVertsCallback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___m_OnDirtyVertsCallback_17;
// UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyMaterialCallback
UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * ___m_OnDirtyMaterialCallback_18;
// UnityEngine.Mesh UnityEngine.UI.Graphic::m_CachedMesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___m_CachedMesh_21;
// UnityEngine.Vector2[] UnityEngine.UI.Graphic::m_CachedUvs
Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* ___m_CachedUvs_22;
// UnityEngine.UI.CoroutineTween.TweenRunner`1<UnityEngine.UI.CoroutineTween.ColorTween> UnityEngine.UI.Graphic::m_ColorTweenRunner
TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172 * ___m_ColorTweenRunner_23;
// System.Boolean UnityEngine.UI.Graphic::<useLegacyMeshGeneration>k__BackingField
bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField_24;
public:
inline static int32_t get_offset_of_m_Material_6() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_Material_6)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_Material_6() const { return ___m_Material_6; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_Material_6() { return &___m_Material_6; }
inline void set_m_Material_6(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_Material_6 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Material_6), (void*)value);
}
inline static int32_t get_offset_of_m_Color_7() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_Color_7)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_Color_7() const { return ___m_Color_7; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_Color_7() { return &___m_Color_7; }
inline void set_m_Color_7(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_Color_7 = value;
}
inline static int32_t get_offset_of_m_SkipLayoutUpdate_8() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_SkipLayoutUpdate_8)); }
inline bool get_m_SkipLayoutUpdate_8() const { return ___m_SkipLayoutUpdate_8; }
inline bool* get_address_of_m_SkipLayoutUpdate_8() { return &___m_SkipLayoutUpdate_8; }
inline void set_m_SkipLayoutUpdate_8(bool value)
{
___m_SkipLayoutUpdate_8 = value;
}
inline static int32_t get_offset_of_m_SkipMaterialUpdate_9() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_SkipMaterialUpdate_9)); }
inline bool get_m_SkipMaterialUpdate_9() const { return ___m_SkipMaterialUpdate_9; }
inline bool* get_address_of_m_SkipMaterialUpdate_9() { return &___m_SkipMaterialUpdate_9; }
inline void set_m_SkipMaterialUpdate_9(bool value)
{
___m_SkipMaterialUpdate_9 = value;
}
inline static int32_t get_offset_of_m_RaycastTarget_10() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_RaycastTarget_10)); }
inline bool get_m_RaycastTarget_10() const { return ___m_RaycastTarget_10; }
inline bool* get_address_of_m_RaycastTarget_10() { return &___m_RaycastTarget_10; }
inline void set_m_RaycastTarget_10(bool value)
{
___m_RaycastTarget_10 = value;
}
inline static int32_t get_offset_of_m_RectTransform_11() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_RectTransform_11)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_RectTransform_11() const { return ___m_RectTransform_11; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_RectTransform_11() { return &___m_RectTransform_11; }
inline void set_m_RectTransform_11(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_RectTransform_11 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_11), (void*)value);
}
inline static int32_t get_offset_of_m_CanvasRenderer_12() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_CanvasRenderer_12)); }
inline CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * get_m_CanvasRenderer_12() const { return ___m_CanvasRenderer_12; }
inline CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 ** get_address_of_m_CanvasRenderer_12() { return &___m_CanvasRenderer_12; }
inline void set_m_CanvasRenderer_12(CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * value)
{
___m_CanvasRenderer_12 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasRenderer_12), (void*)value);
}
inline static int32_t get_offset_of_m_Canvas_13() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_Canvas_13)); }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * get_m_Canvas_13() const { return ___m_Canvas_13; }
inline Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 ** get_address_of_m_Canvas_13() { return &___m_Canvas_13; }
inline void set_m_Canvas_13(Canvas_tBC28BF1DD8D8499A89B5781505833D3728CF8591 * value)
{
___m_Canvas_13 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_13), (void*)value);
}
inline static int32_t get_offset_of_m_VertsDirty_14() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_VertsDirty_14)); }
inline bool get_m_VertsDirty_14() const { return ___m_VertsDirty_14; }
inline bool* get_address_of_m_VertsDirty_14() { return &___m_VertsDirty_14; }
inline void set_m_VertsDirty_14(bool value)
{
___m_VertsDirty_14 = value;
}
inline static int32_t get_offset_of_m_MaterialDirty_15() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_MaterialDirty_15)); }
inline bool get_m_MaterialDirty_15() const { return ___m_MaterialDirty_15; }
inline bool* get_address_of_m_MaterialDirty_15() { return &___m_MaterialDirty_15; }
inline void set_m_MaterialDirty_15(bool value)
{
___m_MaterialDirty_15 = value;
}
inline static int32_t get_offset_of_m_OnDirtyLayoutCallback_16() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_OnDirtyLayoutCallback_16)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_m_OnDirtyLayoutCallback_16() const { return ___m_OnDirtyLayoutCallback_16; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_m_OnDirtyLayoutCallback_16() { return &___m_OnDirtyLayoutCallback_16; }
inline void set_m_OnDirtyLayoutCallback_16(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___m_OnDirtyLayoutCallback_16 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyLayoutCallback_16), (void*)value);
}
inline static int32_t get_offset_of_m_OnDirtyVertsCallback_17() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_OnDirtyVertsCallback_17)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_m_OnDirtyVertsCallback_17() const { return ___m_OnDirtyVertsCallback_17; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_m_OnDirtyVertsCallback_17() { return &___m_OnDirtyVertsCallback_17; }
inline void set_m_OnDirtyVertsCallback_17(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___m_OnDirtyVertsCallback_17 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyVertsCallback_17), (void*)value);
}
inline static int32_t get_offset_of_m_OnDirtyMaterialCallback_18() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_OnDirtyMaterialCallback_18)); }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * get_m_OnDirtyMaterialCallback_18() const { return ___m_OnDirtyMaterialCallback_18; }
inline UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 ** get_address_of_m_OnDirtyMaterialCallback_18() { return &___m_OnDirtyMaterialCallback_18; }
inline void set_m_OnDirtyMaterialCallback_18(UnityAction_tD19B26F1B2C048E38FD5801A33573BE01064CAF4 * value)
{
___m_OnDirtyMaterialCallback_18 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyMaterialCallback_18), (void*)value);
}
inline static int32_t get_offset_of_m_CachedMesh_21() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_CachedMesh_21)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_m_CachedMesh_21() const { return ___m_CachedMesh_21; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_m_CachedMesh_21() { return &___m_CachedMesh_21; }
inline void set_m_CachedMesh_21(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___m_CachedMesh_21 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CachedMesh_21), (void*)value);
}
inline static int32_t get_offset_of_m_CachedUvs_22() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_CachedUvs_22)); }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* get_m_CachedUvs_22() const { return ___m_CachedUvs_22; }
inline Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6** get_address_of_m_CachedUvs_22() { return &___m_CachedUvs_22; }
inline void set_m_CachedUvs_22(Vector2U5BU5D_tA065A07DFC060C1B8786BBAA5F3A6577CCEB27D6* value)
{
___m_CachedUvs_22 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_CachedUvs_22), (void*)value);
}
inline static int32_t get_offset_of_m_ColorTweenRunner_23() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___m_ColorTweenRunner_23)); }
inline TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172 * get_m_ColorTweenRunner_23() const { return ___m_ColorTweenRunner_23; }
inline TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172 ** get_address_of_m_ColorTweenRunner_23() { return &___m_ColorTweenRunner_23; }
inline void set_m_ColorTweenRunner_23(TweenRunner_1_t56CEB168ADE3739A1BDDBF258FDC759DF8927172 * value)
{
___m_ColorTweenRunner_23 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ColorTweenRunner_23), (void*)value);
}
inline static int32_t get_offset_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_24() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8, ___U3CuseLegacyMeshGenerationU3Ek__BackingField_24)); }
inline bool get_U3CuseLegacyMeshGenerationU3Ek__BackingField_24() const { return ___U3CuseLegacyMeshGenerationU3Ek__BackingField_24; }
inline bool* get_address_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_24() { return &___U3CuseLegacyMeshGenerationU3Ek__BackingField_24; }
inline void set_U3CuseLegacyMeshGenerationU3Ek__BackingField_24(bool value)
{
___U3CuseLegacyMeshGenerationU3Ek__BackingField_24 = value;
}
};
struct Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields
{
public:
// UnityEngine.Material UnityEngine.UI.Graphic::s_DefaultUI
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___s_DefaultUI_4;
// UnityEngine.Texture2D UnityEngine.UI.Graphic::s_WhiteTexture
Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * ___s_WhiteTexture_5;
// UnityEngine.Mesh UnityEngine.UI.Graphic::s_Mesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___s_Mesh_19;
// UnityEngine.UI.VertexHelper UnityEngine.UI.Graphic::s_VertexHelper
VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * ___s_VertexHelper_20;
public:
inline static int32_t get_offset_of_s_DefaultUI_4() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields, ___s_DefaultUI_4)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_s_DefaultUI_4() const { return ___s_DefaultUI_4; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_s_DefaultUI_4() { return &___s_DefaultUI_4; }
inline void set_s_DefaultUI_4(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___s_DefaultUI_4 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultUI_4), (void*)value);
}
inline static int32_t get_offset_of_s_WhiteTexture_5() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields, ___s_WhiteTexture_5)); }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * get_s_WhiteTexture_5() const { return ___s_WhiteTexture_5; }
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** get_address_of_s_WhiteTexture_5() { return &___s_WhiteTexture_5; }
inline void set_s_WhiteTexture_5(Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
___s_WhiteTexture_5 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_WhiteTexture_5), (void*)value);
}
inline static int32_t get_offset_of_s_Mesh_19() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields, ___s_Mesh_19)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_s_Mesh_19() const { return ___s_Mesh_19; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_s_Mesh_19() { return &___s_Mesh_19; }
inline void set_s_Mesh_19(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___s_Mesh_19 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_Mesh_19), (void*)value);
}
inline static int32_t get_offset_of_s_VertexHelper_20() { return static_cast<int32_t>(offsetof(Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8_StaticFields, ___s_VertexHelper_20)); }
inline VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * get_s_VertexHelper_20() const { return ___s_VertexHelper_20; }
inline VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F ** get_address_of_s_VertexHelper_20() { return &___s_VertexHelper_20; }
inline void set_s_VertexHelper_20(VertexHelper_t27373EA2CF0F5810EC8CF873D0A6D6C0B23DAC3F * value)
{
___s_VertexHelper_20 = value;
Il2CppCodeGenWriteBarrier((void**)(&___s_VertexHelper_20), (void*)value);
}
};
// UnityEngine.UI.MaskableGraphic
struct MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F : public Graphic_tBA2C3EF11D3DAEBB57F6879AB0BB4F8BD40D00D8
{
public:
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculateStencil
bool ___m_ShouldRecalculateStencil_25;
// UnityEngine.Material UnityEngine.UI.MaskableGraphic::m_MaskMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_MaskMaterial_26;
// UnityEngine.UI.RectMask2D UnityEngine.UI.MaskableGraphic::m_ParentMask
RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * ___m_ParentMask_27;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_Maskable
bool ___m_Maskable_28;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_IncludeForMasking
bool ___m_IncludeForMasking_29;
// UnityEngine.UI.MaskableGraphic_CullStateChangedEvent UnityEngine.UI.MaskableGraphic::m_OnCullStateChanged
CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * ___m_OnCullStateChanged_30;
// System.Boolean UnityEngine.UI.MaskableGraphic::m_ShouldRecalculate
bool ___m_ShouldRecalculate_31;
// System.Int32 UnityEngine.UI.MaskableGraphic::m_StencilValue
int32_t ___m_StencilValue_32;
// UnityEngine.Vector3[] UnityEngine.UI.MaskableGraphic::m_Corners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_Corners_33;
public:
inline static int32_t get_offset_of_m_ShouldRecalculateStencil_25() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ShouldRecalculateStencil_25)); }
inline bool get_m_ShouldRecalculateStencil_25() const { return ___m_ShouldRecalculateStencil_25; }
inline bool* get_address_of_m_ShouldRecalculateStencil_25() { return &___m_ShouldRecalculateStencil_25; }
inline void set_m_ShouldRecalculateStencil_25(bool value)
{
___m_ShouldRecalculateStencil_25 = value;
}
inline static int32_t get_offset_of_m_MaskMaterial_26() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_MaskMaterial_26)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_MaskMaterial_26() const { return ___m_MaskMaterial_26; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_MaskMaterial_26() { return &___m_MaskMaterial_26; }
inline void set_m_MaskMaterial_26(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_MaskMaterial_26 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_MaskMaterial_26), (void*)value);
}
inline static int32_t get_offset_of_m_ParentMask_27() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ParentMask_27)); }
inline RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * get_m_ParentMask_27() const { return ___m_ParentMask_27; }
inline RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B ** get_address_of_m_ParentMask_27() { return &___m_ParentMask_27; }
inline void set_m_ParentMask_27(RectMask2D_tF2CF19F2A4FE2D2FFC7E6F7809374757CA2F377B * value)
{
___m_ParentMask_27 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_ParentMask_27), (void*)value);
}
inline static int32_t get_offset_of_m_Maskable_28() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_Maskable_28)); }
inline bool get_m_Maskable_28() const { return ___m_Maskable_28; }
inline bool* get_address_of_m_Maskable_28() { return &___m_Maskable_28; }
inline void set_m_Maskable_28(bool value)
{
___m_Maskable_28 = value;
}
inline static int32_t get_offset_of_m_IncludeForMasking_29() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_IncludeForMasking_29)); }
inline bool get_m_IncludeForMasking_29() const { return ___m_IncludeForMasking_29; }
inline bool* get_address_of_m_IncludeForMasking_29() { return &___m_IncludeForMasking_29; }
inline void set_m_IncludeForMasking_29(bool value)
{
___m_IncludeForMasking_29 = value;
}
inline static int32_t get_offset_of_m_OnCullStateChanged_30() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_OnCullStateChanged_30)); }
inline CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * get_m_OnCullStateChanged_30() const { return ___m_OnCullStateChanged_30; }
inline CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 ** get_address_of_m_OnCullStateChanged_30() { return &___m_OnCullStateChanged_30; }
inline void set_m_OnCullStateChanged_30(CullStateChangedEvent_t6BC3E87DBC04B585798460D55F56B86C23B62FE4 * value)
{
___m_OnCullStateChanged_30 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_OnCullStateChanged_30), (void*)value);
}
inline static int32_t get_offset_of_m_ShouldRecalculate_31() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_ShouldRecalculate_31)); }
inline bool get_m_ShouldRecalculate_31() const { return ___m_ShouldRecalculate_31; }
inline bool* get_address_of_m_ShouldRecalculate_31() { return &___m_ShouldRecalculate_31; }
inline void set_m_ShouldRecalculate_31(bool value)
{
___m_ShouldRecalculate_31 = value;
}
inline static int32_t get_offset_of_m_StencilValue_32() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_StencilValue_32)); }
inline int32_t get_m_StencilValue_32() const { return ___m_StencilValue_32; }
inline int32_t* get_address_of_m_StencilValue_32() { return &___m_StencilValue_32; }
inline void set_m_StencilValue_32(int32_t value)
{
___m_StencilValue_32 = value;
}
inline static int32_t get_offset_of_m_Corners_33() { return static_cast<int32_t>(offsetof(MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F, ___m_Corners_33)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_Corners_33() const { return ___m_Corners_33; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_Corners_33() { return &___m_Corners_33; }
inline void set_m_Corners_33(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_Corners_33 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_Corners_33), (void*)value);
}
};
// TMPro.TMP_SubMeshUI
struct TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1 : public MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F
{
public:
// TMPro.TMP_FontAsset TMPro.TMP_SubMeshUI::m_fontAsset
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___m_fontAsset_34;
// TMPro.TMP_SpriteAsset TMPro.TMP_SubMeshUI::m_spriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___m_spriteAsset_35;
// UnityEngine.Material TMPro.TMP_SubMeshUI::m_material
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_material_36;
// UnityEngine.Material TMPro.TMP_SubMeshUI::m_sharedMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_sharedMaterial_37;
// UnityEngine.Material TMPro.TMP_SubMeshUI::m_fallbackMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_fallbackMaterial_38;
// UnityEngine.Material TMPro.TMP_SubMeshUI::m_fallbackSourceMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_fallbackSourceMaterial_39;
// System.Boolean TMPro.TMP_SubMeshUI::m_isDefaultMaterial
bool ___m_isDefaultMaterial_40;
// System.Single TMPro.TMP_SubMeshUI::m_padding
float ___m_padding_41;
// UnityEngine.CanvasRenderer TMPro.TMP_SubMeshUI::m_canvasRenderer
CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * ___m_canvasRenderer_42;
// UnityEngine.Mesh TMPro.TMP_SubMeshUI::m_mesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___m_mesh_43;
// TMPro.TextMeshProUGUI TMPro.TMP_SubMeshUI::m_TextComponent
TextMeshProUGUI_tBA60B913AB6151F8563F7078AD67EB6458129438 * ___m_TextComponent_44;
// System.Boolean TMPro.TMP_SubMeshUI::m_isRegisteredForEvents
bool ___m_isRegisteredForEvents_45;
// System.Boolean TMPro.TMP_SubMeshUI::m_materialDirty
bool ___m_materialDirty_46;
// System.Int32 TMPro.TMP_SubMeshUI::m_materialReferenceIndex
int32_t ___m_materialReferenceIndex_47;
public:
inline static int32_t get_offset_of_m_fontAsset_34() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_fontAsset_34)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_m_fontAsset_34() const { return ___m_fontAsset_34; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_m_fontAsset_34() { return &___m_fontAsset_34; }
inline void set_m_fontAsset_34(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___m_fontAsset_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fontAsset_34), (void*)value);
}
inline static int32_t get_offset_of_m_spriteAsset_35() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_spriteAsset_35)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_m_spriteAsset_35() const { return ___m_spriteAsset_35; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_m_spriteAsset_35() { return &___m_spriteAsset_35; }
inline void set_m_spriteAsset_35(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___m_spriteAsset_35 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_spriteAsset_35), (void*)value);
}
inline static int32_t get_offset_of_m_material_36() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_material_36)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_material_36() const { return ___m_material_36; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_material_36() { return &___m_material_36; }
inline void set_m_material_36(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_material_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_material_36), (void*)value);
}
inline static int32_t get_offset_of_m_sharedMaterial_37() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_sharedMaterial_37)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_sharedMaterial_37() const { return ___m_sharedMaterial_37; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_sharedMaterial_37() { return &___m_sharedMaterial_37; }
inline void set_m_sharedMaterial_37(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_sharedMaterial_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_sharedMaterial_37), (void*)value);
}
inline static int32_t get_offset_of_m_fallbackMaterial_38() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_fallbackMaterial_38)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_fallbackMaterial_38() const { return ___m_fallbackMaterial_38; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_fallbackMaterial_38() { return &___m_fallbackMaterial_38; }
inline void set_m_fallbackMaterial_38(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_fallbackMaterial_38 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackMaterial_38), (void*)value);
}
inline static int32_t get_offset_of_m_fallbackSourceMaterial_39() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_fallbackSourceMaterial_39)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_fallbackSourceMaterial_39() const { return ___m_fallbackSourceMaterial_39; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_fallbackSourceMaterial_39() { return &___m_fallbackSourceMaterial_39; }
inline void set_m_fallbackSourceMaterial_39(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_fallbackSourceMaterial_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fallbackSourceMaterial_39), (void*)value);
}
inline static int32_t get_offset_of_m_isDefaultMaterial_40() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_isDefaultMaterial_40)); }
inline bool get_m_isDefaultMaterial_40() const { return ___m_isDefaultMaterial_40; }
inline bool* get_address_of_m_isDefaultMaterial_40() { return &___m_isDefaultMaterial_40; }
inline void set_m_isDefaultMaterial_40(bool value)
{
___m_isDefaultMaterial_40 = value;
}
inline static int32_t get_offset_of_m_padding_41() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_padding_41)); }
inline float get_m_padding_41() const { return ___m_padding_41; }
inline float* get_address_of_m_padding_41() { return &___m_padding_41; }
inline void set_m_padding_41(float value)
{
___m_padding_41 = value;
}
inline static int32_t get_offset_of_m_canvasRenderer_42() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_canvasRenderer_42)); }
inline CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * get_m_canvasRenderer_42() const { return ___m_canvasRenderer_42; }
inline CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 ** get_address_of_m_canvasRenderer_42() { return &___m_canvasRenderer_42; }
inline void set_m_canvasRenderer_42(CanvasRenderer_tB4D9C9FE77FD5C9C4546FC022D6E956960BC2B72 * value)
{
___m_canvasRenderer_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_canvasRenderer_42), (void*)value);
}
inline static int32_t get_offset_of_m_mesh_43() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_mesh_43)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_m_mesh_43() const { return ___m_mesh_43; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_m_mesh_43() { return &___m_mesh_43; }
inline void set_m_mesh_43(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___m_mesh_43 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_mesh_43), (void*)value);
}
inline static int32_t get_offset_of_m_TextComponent_44() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_TextComponent_44)); }
inline TextMeshProUGUI_tBA60B913AB6151F8563F7078AD67EB6458129438 * get_m_TextComponent_44() const { return ___m_TextComponent_44; }
inline TextMeshProUGUI_tBA60B913AB6151F8563F7078AD67EB6458129438 ** get_address_of_m_TextComponent_44() { return &___m_TextComponent_44; }
inline void set_m_TextComponent_44(TextMeshProUGUI_tBA60B913AB6151F8563F7078AD67EB6458129438 * value)
{
___m_TextComponent_44 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextComponent_44), (void*)value);
}
inline static int32_t get_offset_of_m_isRegisteredForEvents_45() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_isRegisteredForEvents_45)); }
inline bool get_m_isRegisteredForEvents_45() const { return ___m_isRegisteredForEvents_45; }
inline bool* get_address_of_m_isRegisteredForEvents_45() { return &___m_isRegisteredForEvents_45; }
inline void set_m_isRegisteredForEvents_45(bool value)
{
___m_isRegisteredForEvents_45 = value;
}
inline static int32_t get_offset_of_m_materialDirty_46() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_materialDirty_46)); }
inline bool get_m_materialDirty_46() const { return ___m_materialDirty_46; }
inline bool* get_address_of_m_materialDirty_46() { return &___m_materialDirty_46; }
inline void set_m_materialDirty_46(bool value)
{
___m_materialDirty_46 = value;
}
inline static int32_t get_offset_of_m_materialReferenceIndex_47() { return static_cast<int32_t>(offsetof(TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1, ___m_materialReferenceIndex_47)); }
inline int32_t get_m_materialReferenceIndex_47() const { return ___m_materialReferenceIndex_47; }
inline int32_t* get_address_of_m_materialReferenceIndex_47() { return &___m_materialReferenceIndex_47; }
inline void set_m_materialReferenceIndex_47(int32_t value)
{
___m_materialReferenceIndex_47 = value;
}
};
// TMPro.TMP_Text
struct TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 : public MaskableGraphic_tDA46A5925C6A2101217C9F52C855B5C1A36A7A0F
{
public:
// System.String TMPro.TMP_Text::m_text
String_t* ___m_text_34;
// System.Boolean TMPro.TMP_Text::m_isRightToLeft
bool ___m_isRightToLeft_35;
// TMPro.TMP_FontAsset TMPro.TMP_Text::m_fontAsset
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___m_fontAsset_36;
// TMPro.TMP_FontAsset TMPro.TMP_Text::m_currentFontAsset
TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * ___m_currentFontAsset_37;
// System.Boolean TMPro.TMP_Text::m_isSDFShader
bool ___m_isSDFShader_38;
// UnityEngine.Material TMPro.TMP_Text::m_sharedMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_sharedMaterial_39;
// UnityEngine.Material TMPro.TMP_Text::m_currentMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_currentMaterial_40;
// TMPro.MaterialReference[] TMPro.TMP_Text::m_materialReferences
MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* ___m_materialReferences_41;
// System.Collections.Generic.Dictionary`2<System.Int32,System.Int32> TMPro.TMP_Text::m_materialReferenceIndexLookup
Dictionary_2_t6567430A4033E968FED88FBBD298DC9D0DFA398F * ___m_materialReferenceIndexLookup_42;
// TMPro.TMP_RichTextTagStack`1<TMPro.MaterialReference> TMPro.TMP_Text::m_materialReferenceStack
TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 ___m_materialReferenceStack_43;
// System.Int32 TMPro.TMP_Text::m_currentMaterialIndex
int32_t ___m_currentMaterialIndex_44;
// UnityEngine.Material[] TMPro.TMP_Text::m_fontSharedMaterials
MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* ___m_fontSharedMaterials_45;
// UnityEngine.Material TMPro.TMP_Text::m_fontMaterial
Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * ___m_fontMaterial_46;
// UnityEngine.Material[] TMPro.TMP_Text::m_fontMaterials
MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* ___m_fontMaterials_47;
// System.Boolean TMPro.TMP_Text::m_isMaterialDirty
bool ___m_isMaterialDirty_48;
// UnityEngine.Color32 TMPro.TMP_Text::m_fontColor32
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_fontColor32_49;
// UnityEngine.Color TMPro.TMP_Text::m_fontColor
Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 ___m_fontColor_50;
// UnityEngine.Color32 TMPro.TMP_Text::m_underlineColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_underlineColor_52;
// UnityEngine.Color32 TMPro.TMP_Text::m_strikethroughColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_strikethroughColor_53;
// UnityEngine.Color32 TMPro.TMP_Text::m_highlightColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_highlightColor_54;
// UnityEngine.Vector4 TMPro.TMP_Text::m_highlightPadding
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___m_highlightPadding_55;
// System.Boolean TMPro.TMP_Text::m_enableVertexGradient
bool ___m_enableVertexGradient_56;
// TMPro.ColorMode TMPro.TMP_Text::m_colorMode
int32_t ___m_colorMode_57;
// TMPro.VertexGradient TMPro.TMP_Text::m_fontColorGradient
VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A ___m_fontColorGradient_58;
// TMPro.TMP_ColorGradient TMPro.TMP_Text::m_fontColorGradientPreset
TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * ___m_fontColorGradientPreset_59;
// TMPro.TMP_SpriteAsset TMPro.TMP_Text::m_spriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___m_spriteAsset_60;
// System.Boolean TMPro.TMP_Text::m_tintAllSprites
bool ___m_tintAllSprites_61;
// System.Boolean TMPro.TMP_Text::m_tintSprite
bool ___m_tintSprite_62;
// UnityEngine.Color32 TMPro.TMP_Text::m_spriteColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_spriteColor_63;
// System.Boolean TMPro.TMP_Text::m_overrideHtmlColors
bool ___m_overrideHtmlColors_64;
// UnityEngine.Color32 TMPro.TMP_Text::m_faceColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_faceColor_65;
// UnityEngine.Color32 TMPro.TMP_Text::m_outlineColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_outlineColor_66;
// System.Single TMPro.TMP_Text::m_outlineWidth
float ___m_outlineWidth_67;
// System.Single TMPro.TMP_Text::m_fontSize
float ___m_fontSize_68;
// System.Single TMPro.TMP_Text::m_currentFontSize
float ___m_currentFontSize_69;
// System.Single TMPro.TMP_Text::m_fontSizeBase
float ___m_fontSizeBase_70;
// TMPro.TMP_RichTextTagStack`1<System.Single> TMPro.TMP_Text::m_sizeStack
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___m_sizeStack_71;
// TMPro.FontWeight TMPro.TMP_Text::m_fontWeight
int32_t ___m_fontWeight_72;
// TMPro.FontWeight TMPro.TMP_Text::m_FontWeightInternal
int32_t ___m_FontWeightInternal_73;
// TMPro.TMP_RichTextTagStack`1<TMPro.FontWeight> TMPro.TMP_Text::m_FontWeightStack
TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B ___m_FontWeightStack_74;
// System.Boolean TMPro.TMP_Text::m_enableAutoSizing
bool ___m_enableAutoSizing_75;
// System.Single TMPro.TMP_Text::m_maxFontSize
float ___m_maxFontSize_76;
// System.Single TMPro.TMP_Text::m_minFontSize
float ___m_minFontSize_77;
// System.Single TMPro.TMP_Text::m_fontSizeMin
float ___m_fontSizeMin_78;
// System.Single TMPro.TMP_Text::m_fontSizeMax
float ___m_fontSizeMax_79;
// TMPro.FontStyles TMPro.TMP_Text::m_fontStyle
int32_t ___m_fontStyle_80;
// TMPro.FontStyles TMPro.TMP_Text::m_FontStyleInternal
int32_t ___m_FontStyleInternal_81;
// TMPro.TMP_FontStyleStack TMPro.TMP_Text::m_fontStyleStack
TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 ___m_fontStyleStack_82;
// System.Boolean TMPro.TMP_Text::m_isUsingBold
bool ___m_isUsingBold_83;
// TMPro.TextAlignmentOptions TMPro.TMP_Text::m_textAlignment
int32_t ___m_textAlignment_84;
// TMPro.TextAlignmentOptions TMPro.TMP_Text::m_lineJustification
int32_t ___m_lineJustification_85;
// TMPro.TMP_RichTextTagStack`1<TMPro.TextAlignmentOptions> TMPro.TMP_Text::m_lineJustificationStack
TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 ___m_lineJustificationStack_86;
// UnityEngine.Vector3[] TMPro.TMP_Text::m_textContainerLocalCorners
Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* ___m_textContainerLocalCorners_87;
// System.Single TMPro.TMP_Text::m_characterSpacing
float ___m_characterSpacing_88;
// System.Single TMPro.TMP_Text::m_cSpacing
float ___m_cSpacing_89;
// System.Single TMPro.TMP_Text::m_monoSpacing
float ___m_monoSpacing_90;
// System.Single TMPro.TMP_Text::m_wordSpacing
float ___m_wordSpacing_91;
// System.Single TMPro.TMP_Text::m_lineSpacing
float ___m_lineSpacing_92;
// System.Single TMPro.TMP_Text::m_lineSpacingDelta
float ___m_lineSpacingDelta_93;
// System.Single TMPro.TMP_Text::m_lineHeight
float ___m_lineHeight_94;
// System.Single TMPro.TMP_Text::m_lineSpacingMax
float ___m_lineSpacingMax_95;
// System.Single TMPro.TMP_Text::m_paragraphSpacing
float ___m_paragraphSpacing_96;
// System.Single TMPro.TMP_Text::m_charWidthMaxAdj
float ___m_charWidthMaxAdj_97;
// System.Single TMPro.TMP_Text::m_charWidthAdjDelta
float ___m_charWidthAdjDelta_98;
// System.Boolean TMPro.TMP_Text::m_enableWordWrapping
bool ___m_enableWordWrapping_99;
// System.Boolean TMPro.TMP_Text::m_isCharacterWrappingEnabled
bool ___m_isCharacterWrappingEnabled_100;
// System.Boolean TMPro.TMP_Text::m_isNonBreakingSpace
bool ___m_isNonBreakingSpace_101;
// System.Boolean TMPro.TMP_Text::m_isIgnoringAlignment
bool ___m_isIgnoringAlignment_102;
// System.Single TMPro.TMP_Text::m_wordWrappingRatios
float ___m_wordWrappingRatios_103;
// TMPro.TextOverflowModes TMPro.TMP_Text::m_overflowMode
int32_t ___m_overflowMode_104;
// System.Int32 TMPro.TMP_Text::m_firstOverflowCharacterIndex
int32_t ___m_firstOverflowCharacterIndex_105;
// TMPro.TMP_Text TMPro.TMP_Text::m_linkedTextComponent
TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * ___m_linkedTextComponent_106;
// System.Boolean TMPro.TMP_Text::m_isLinkedTextComponent
bool ___m_isLinkedTextComponent_107;
// System.Boolean TMPro.TMP_Text::m_isTextTruncated
bool ___m_isTextTruncated_108;
// System.Boolean TMPro.TMP_Text::m_enableKerning
bool ___m_enableKerning_109;
// System.Boolean TMPro.TMP_Text::m_enableExtraPadding
bool ___m_enableExtraPadding_110;
// System.Boolean TMPro.TMP_Text::checkPaddingRequired
bool ___checkPaddingRequired_111;
// System.Boolean TMPro.TMP_Text::m_isRichText
bool ___m_isRichText_112;
// System.Boolean TMPro.TMP_Text::m_parseCtrlCharacters
bool ___m_parseCtrlCharacters_113;
// System.Boolean TMPro.TMP_Text::m_isOverlay
bool ___m_isOverlay_114;
// System.Boolean TMPro.TMP_Text::m_isOrthographic
bool ___m_isOrthographic_115;
// System.Boolean TMPro.TMP_Text::m_isCullingEnabled
bool ___m_isCullingEnabled_116;
// System.Boolean TMPro.TMP_Text::m_ignoreRectMaskCulling
bool ___m_ignoreRectMaskCulling_117;
// System.Boolean TMPro.TMP_Text::m_ignoreCulling
bool ___m_ignoreCulling_118;
// TMPro.TextureMappingOptions TMPro.TMP_Text::m_horizontalMapping
int32_t ___m_horizontalMapping_119;
// TMPro.TextureMappingOptions TMPro.TMP_Text::m_verticalMapping
int32_t ___m_verticalMapping_120;
// System.Single TMPro.TMP_Text::m_uvLineOffset
float ___m_uvLineOffset_121;
// TMPro.TextRenderFlags TMPro.TMP_Text::m_renderMode
int32_t ___m_renderMode_122;
// TMPro.VertexSortingOrder TMPro.TMP_Text::m_geometrySortingOrder
int32_t ___m_geometrySortingOrder_123;
// System.Boolean TMPro.TMP_Text::m_VertexBufferAutoSizeReduction
bool ___m_VertexBufferAutoSizeReduction_124;
// System.Int32 TMPro.TMP_Text::m_firstVisibleCharacter
int32_t ___m_firstVisibleCharacter_125;
// System.Int32 TMPro.TMP_Text::m_maxVisibleCharacters
int32_t ___m_maxVisibleCharacters_126;
// System.Int32 TMPro.TMP_Text::m_maxVisibleWords
int32_t ___m_maxVisibleWords_127;
// System.Int32 TMPro.TMP_Text::m_maxVisibleLines
int32_t ___m_maxVisibleLines_128;
// System.Boolean TMPro.TMP_Text::m_useMaxVisibleDescender
bool ___m_useMaxVisibleDescender_129;
// System.Int32 TMPro.TMP_Text::m_pageToDisplay
int32_t ___m_pageToDisplay_130;
// System.Boolean TMPro.TMP_Text::m_isNewPage
bool ___m_isNewPage_131;
// UnityEngine.Vector4 TMPro.TMP_Text::m_margin
Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E ___m_margin_132;
// System.Single TMPro.TMP_Text::m_marginLeft
float ___m_marginLeft_133;
// System.Single TMPro.TMP_Text::m_marginRight
float ___m_marginRight_134;
// System.Single TMPro.TMP_Text::m_marginWidth
float ___m_marginWidth_135;
// System.Single TMPro.TMP_Text::m_marginHeight
float ___m_marginHeight_136;
// System.Single TMPro.TMP_Text::m_width
float ___m_width_137;
// TMPro.TMP_TextInfo TMPro.TMP_Text::m_textInfo
TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 * ___m_textInfo_138;
// System.Boolean TMPro.TMP_Text::m_havePropertiesChanged
bool ___m_havePropertiesChanged_139;
// System.Boolean TMPro.TMP_Text::m_isUsingLegacyAnimationComponent
bool ___m_isUsingLegacyAnimationComponent_140;
// UnityEngine.Transform TMPro.TMP_Text::m_transform
Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * ___m_transform_141;
// UnityEngine.RectTransform TMPro.TMP_Text::m_rectTransform
RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * ___m_rectTransform_142;
// System.Boolean TMPro.TMP_Text::<autoSizeTextContainer>k__BackingField
bool ___U3CautoSizeTextContainerU3Ek__BackingField_143;
// System.Boolean TMPro.TMP_Text::m_autoSizeTextContainer
bool ___m_autoSizeTextContainer_144;
// UnityEngine.Mesh TMPro.TMP_Text::m_mesh
Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * ___m_mesh_145;
// System.Boolean TMPro.TMP_Text::m_isVolumetricText
bool ___m_isVolumetricText_146;
// TMPro.TMP_SpriteAnimator TMPro.TMP_Text::m_spriteAnimator
TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17 * ___m_spriteAnimator_147;
// System.Single TMPro.TMP_Text::m_flexibleHeight
float ___m_flexibleHeight_148;
// System.Single TMPro.TMP_Text::m_flexibleWidth
float ___m_flexibleWidth_149;
// System.Single TMPro.TMP_Text::m_minWidth
float ___m_minWidth_150;
// System.Single TMPro.TMP_Text::m_minHeight
float ___m_minHeight_151;
// System.Single TMPro.TMP_Text::m_maxWidth
float ___m_maxWidth_152;
// System.Single TMPro.TMP_Text::m_maxHeight
float ___m_maxHeight_153;
// UnityEngine.UI.LayoutElement TMPro.TMP_Text::m_LayoutElement
LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B * ___m_LayoutElement_154;
// System.Single TMPro.TMP_Text::m_preferredWidth
float ___m_preferredWidth_155;
// System.Single TMPro.TMP_Text::m_renderedWidth
float ___m_renderedWidth_156;
// System.Boolean TMPro.TMP_Text::m_isPreferredWidthDirty
bool ___m_isPreferredWidthDirty_157;
// System.Single TMPro.TMP_Text::m_preferredHeight
float ___m_preferredHeight_158;
// System.Single TMPro.TMP_Text::m_renderedHeight
float ___m_renderedHeight_159;
// System.Boolean TMPro.TMP_Text::m_isPreferredHeightDirty
bool ___m_isPreferredHeightDirty_160;
// System.Boolean TMPro.TMP_Text::m_isCalculatingPreferredValues
bool ___m_isCalculatingPreferredValues_161;
// System.Int32 TMPro.TMP_Text::m_recursiveCount
int32_t ___m_recursiveCount_162;
// System.Int32 TMPro.TMP_Text::m_layoutPriority
int32_t ___m_layoutPriority_163;
// System.Boolean TMPro.TMP_Text::m_isCalculateSizeRequired
bool ___m_isCalculateSizeRequired_164;
// System.Boolean TMPro.TMP_Text::m_isLayoutDirty
bool ___m_isLayoutDirty_165;
// System.Boolean TMPro.TMP_Text::m_verticesAlreadyDirty
bool ___m_verticesAlreadyDirty_166;
// System.Boolean TMPro.TMP_Text::m_layoutAlreadyDirty
bool ___m_layoutAlreadyDirty_167;
// System.Boolean TMPro.TMP_Text::m_isAwake
bool ___m_isAwake_168;
// System.Boolean TMPro.TMP_Text::m_isWaitingOnResourceLoad
bool ___m_isWaitingOnResourceLoad_169;
// System.Boolean TMPro.TMP_Text::m_isInputParsingRequired
bool ___m_isInputParsingRequired_170;
// TMPro.TMP_Text_TextInputSources TMPro.TMP_Text::m_inputSource
int32_t ___m_inputSource_171;
// System.String TMPro.TMP_Text::old_text
String_t* ___old_text_172;
// System.Single TMPro.TMP_Text::m_fontScale
float ___m_fontScale_173;
// System.Single TMPro.TMP_Text::m_fontScaleMultiplier
float ___m_fontScaleMultiplier_174;
// System.Char[] TMPro.TMP_Text::m_htmlTag
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_htmlTag_175;
// TMPro.RichTextTagAttribute[] TMPro.TMP_Text::m_xmlAttribute
RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652* ___m_xmlAttribute_176;
// System.Single[] TMPro.TMP_Text::m_attributeParameterValues
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___m_attributeParameterValues_177;
// System.Single TMPro.TMP_Text::tag_LineIndent
float ___tag_LineIndent_178;
// System.Single TMPro.TMP_Text::tag_Indent
float ___tag_Indent_179;
// TMPro.TMP_RichTextTagStack`1<System.Single> TMPro.TMP_Text::m_indentStack
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___m_indentStack_180;
// System.Boolean TMPro.TMP_Text::tag_NoParsing
bool ___tag_NoParsing_181;
// System.Boolean TMPro.TMP_Text::m_isParsingText
bool ___m_isParsingText_182;
// UnityEngine.Matrix4x4 TMPro.TMP_Text::m_FXMatrix
Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA ___m_FXMatrix_183;
// System.Boolean TMPro.TMP_Text::m_isFXMatrixSet
bool ___m_isFXMatrixSet_184;
// TMPro.TMP_Text_UnicodeChar[] TMPro.TMP_Text::m_TextParsingBuffer
UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* ___m_TextParsingBuffer_185;
// TMPro.TMP_CharacterInfo[] TMPro.TMP_Text::m_internalCharacterInfo
TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* ___m_internalCharacterInfo_186;
// System.Char[] TMPro.TMP_Text::m_input_CharArray
CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_input_CharArray_187;
// System.Int32 TMPro.TMP_Text::m_charArray_Length
int32_t ___m_charArray_Length_188;
// System.Int32 TMPro.TMP_Text::m_totalCharacterCount
int32_t ___m_totalCharacterCount_189;
// TMPro.WordWrapState TMPro.TMP_Text::m_SavedWordWrapState
WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557 ___m_SavedWordWrapState_190;
// TMPro.WordWrapState TMPro.TMP_Text::m_SavedLineState
WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557 ___m_SavedLineState_191;
// System.Int32 TMPro.TMP_Text::m_characterCount
int32_t ___m_characterCount_192;
// System.Int32 TMPro.TMP_Text::m_firstCharacterOfLine
int32_t ___m_firstCharacterOfLine_193;
// System.Int32 TMPro.TMP_Text::m_firstVisibleCharacterOfLine
int32_t ___m_firstVisibleCharacterOfLine_194;
// System.Int32 TMPro.TMP_Text::m_lastCharacterOfLine
int32_t ___m_lastCharacterOfLine_195;
// System.Int32 TMPro.TMP_Text::m_lastVisibleCharacterOfLine
int32_t ___m_lastVisibleCharacterOfLine_196;
// System.Int32 TMPro.TMP_Text::m_lineNumber
int32_t ___m_lineNumber_197;
// System.Int32 TMPro.TMP_Text::m_lineVisibleCharacterCount
int32_t ___m_lineVisibleCharacterCount_198;
// System.Int32 TMPro.TMP_Text::m_pageNumber
int32_t ___m_pageNumber_199;
// System.Single TMPro.TMP_Text::m_maxAscender
float ___m_maxAscender_200;
// System.Single TMPro.TMP_Text::m_maxCapHeight
float ___m_maxCapHeight_201;
// System.Single TMPro.TMP_Text::m_maxDescender
float ___m_maxDescender_202;
// System.Single TMPro.TMP_Text::m_maxLineAscender
float ___m_maxLineAscender_203;
// System.Single TMPro.TMP_Text::m_maxLineDescender
float ___m_maxLineDescender_204;
// System.Single TMPro.TMP_Text::m_startOfLineAscender
float ___m_startOfLineAscender_205;
// System.Single TMPro.TMP_Text::m_lineOffset
float ___m_lineOffset_206;
// TMPro.Extents TMPro.TMP_Text::m_meshExtents
Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 ___m_meshExtents_207;
// UnityEngine.Color32 TMPro.TMP_Text::m_htmlColor
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___m_htmlColor_208;
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32> TMPro.TMP_Text::m_colorStack
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___m_colorStack_209;
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32> TMPro.TMP_Text::m_underlineColorStack
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___m_underlineColorStack_210;
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32> TMPro.TMP_Text::m_strikethroughColorStack
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___m_strikethroughColorStack_211;
// TMPro.TMP_RichTextTagStack`1<UnityEngine.Color32> TMPro.TMP_Text::m_highlightColorStack
TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 ___m_highlightColorStack_212;
// TMPro.TMP_ColorGradient TMPro.TMP_Text::m_colorGradientPreset
TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * ___m_colorGradientPreset_213;
// TMPro.TMP_RichTextTagStack`1<TMPro.TMP_ColorGradient> TMPro.TMP_Text::m_colorGradientStack
TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D ___m_colorGradientStack_214;
// System.Single TMPro.TMP_Text::m_tabSpacing
float ___m_tabSpacing_215;
// System.Single TMPro.TMP_Text::m_spacing
float ___m_spacing_216;
// TMPro.TMP_RichTextTagStack`1<System.Int32> TMPro.TMP_Text::m_styleStack
TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F ___m_styleStack_217;
// TMPro.TMP_RichTextTagStack`1<System.Int32> TMPro.TMP_Text::m_actionStack
TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F ___m_actionStack_218;
// System.Single TMPro.TMP_Text::m_padding
float ___m_padding_219;
// System.Single TMPro.TMP_Text::m_baselineOffset
float ___m_baselineOffset_220;
// TMPro.TMP_RichTextTagStack`1<System.Single> TMPro.TMP_Text::m_baselineOffsetStack
TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 ___m_baselineOffsetStack_221;
// System.Single TMPro.TMP_Text::m_xAdvance
float ___m_xAdvance_222;
// TMPro.TMP_TextElementType TMPro.TMP_Text::m_textElementType
int32_t ___m_textElementType_223;
// TMPro.TMP_TextElement TMPro.TMP_Text::m_cached_TextElement
TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * ___m_cached_TextElement_224;
// TMPro.TMP_Character TMPro.TMP_Text::m_cached_Underline_Character
TMP_Character_t1875AACA978396521498D6A699052C187903553D * ___m_cached_Underline_Character_225;
// TMPro.TMP_Character TMPro.TMP_Text::m_cached_Ellipsis_Character
TMP_Character_t1875AACA978396521498D6A699052C187903553D * ___m_cached_Ellipsis_Character_226;
// TMPro.TMP_SpriteAsset TMPro.TMP_Text::m_defaultSpriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___m_defaultSpriteAsset_227;
// TMPro.TMP_SpriteAsset TMPro.TMP_Text::m_currentSpriteAsset
TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * ___m_currentSpriteAsset_228;
// System.Int32 TMPro.TMP_Text::m_spriteCount
int32_t ___m_spriteCount_229;
// System.Int32 TMPro.TMP_Text::m_spriteIndex
int32_t ___m_spriteIndex_230;
// System.Int32 TMPro.TMP_Text::m_spriteAnimationID
int32_t ___m_spriteAnimationID_231;
// System.Boolean TMPro.TMP_Text::m_ignoreActiveState
bool ___m_ignoreActiveState_232;
// System.Single[] TMPro.TMP_Text::k_Power
SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* ___k_Power_233;
public:
inline static int32_t get_offset_of_m_text_34() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_text_34)); }
inline String_t* get_m_text_34() const { return ___m_text_34; }
inline String_t** get_address_of_m_text_34() { return &___m_text_34; }
inline void set_m_text_34(String_t* value)
{
___m_text_34 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_text_34), (void*)value);
}
inline static int32_t get_offset_of_m_isRightToLeft_35() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isRightToLeft_35)); }
inline bool get_m_isRightToLeft_35() const { return ___m_isRightToLeft_35; }
inline bool* get_address_of_m_isRightToLeft_35() { return &___m_isRightToLeft_35; }
inline void set_m_isRightToLeft_35(bool value)
{
___m_isRightToLeft_35 = value;
}
inline static int32_t get_offset_of_m_fontAsset_36() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontAsset_36)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_m_fontAsset_36() const { return ___m_fontAsset_36; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_m_fontAsset_36() { return &___m_fontAsset_36; }
inline void set_m_fontAsset_36(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___m_fontAsset_36 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fontAsset_36), (void*)value);
}
inline static int32_t get_offset_of_m_currentFontAsset_37() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_currentFontAsset_37)); }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * get_m_currentFontAsset_37() const { return ___m_currentFontAsset_37; }
inline TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C ** get_address_of_m_currentFontAsset_37() { return &___m_currentFontAsset_37; }
inline void set_m_currentFontAsset_37(TMP_FontAsset_t44D2006105B39FB33AE5A0ADF07A7EF36C72385C * value)
{
___m_currentFontAsset_37 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_currentFontAsset_37), (void*)value);
}
inline static int32_t get_offset_of_m_isSDFShader_38() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isSDFShader_38)); }
inline bool get_m_isSDFShader_38() const { return ___m_isSDFShader_38; }
inline bool* get_address_of_m_isSDFShader_38() { return &___m_isSDFShader_38; }
inline void set_m_isSDFShader_38(bool value)
{
___m_isSDFShader_38 = value;
}
inline static int32_t get_offset_of_m_sharedMaterial_39() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_sharedMaterial_39)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_sharedMaterial_39() const { return ___m_sharedMaterial_39; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_sharedMaterial_39() { return &___m_sharedMaterial_39; }
inline void set_m_sharedMaterial_39(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_sharedMaterial_39 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_sharedMaterial_39), (void*)value);
}
inline static int32_t get_offset_of_m_currentMaterial_40() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_currentMaterial_40)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_currentMaterial_40() const { return ___m_currentMaterial_40; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_currentMaterial_40() { return &___m_currentMaterial_40; }
inline void set_m_currentMaterial_40(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_currentMaterial_40 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_currentMaterial_40), (void*)value);
}
inline static int32_t get_offset_of_m_materialReferences_41() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_materialReferences_41)); }
inline MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* get_m_materialReferences_41() const { return ___m_materialReferences_41; }
inline MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B** get_address_of_m_materialReferences_41() { return &___m_materialReferences_41; }
inline void set_m_materialReferences_41(MaterialReferenceU5BU5D_t01EC9C1C00A504C2EF9FBAF95DE26BB88E9B743B* value)
{
___m_materialReferences_41 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_materialReferences_41), (void*)value);
}
inline static int32_t get_offset_of_m_materialReferenceIndexLookup_42() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_materialReferenceIndexLookup_42)); }
inline Dictionary_2_t6567430A4033E968FED88FBBD298DC9D0DFA398F * get_m_materialReferenceIndexLookup_42() const { return ___m_materialReferenceIndexLookup_42; }
inline Dictionary_2_t6567430A4033E968FED88FBBD298DC9D0DFA398F ** get_address_of_m_materialReferenceIndexLookup_42() { return &___m_materialReferenceIndexLookup_42; }
inline void set_m_materialReferenceIndexLookup_42(Dictionary_2_t6567430A4033E968FED88FBBD298DC9D0DFA398F * value)
{
___m_materialReferenceIndexLookup_42 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_materialReferenceIndexLookup_42), (void*)value);
}
inline static int32_t get_offset_of_m_materialReferenceStack_43() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_materialReferenceStack_43)); }
inline TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 get_m_materialReferenceStack_43() const { return ___m_materialReferenceStack_43; }
inline TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 * get_address_of_m_materialReferenceStack_43() { return &___m_materialReferenceStack_43; }
inline void set_m_materialReferenceStack_43(TMP_RichTextTagStack_1_t9742B1BC2B58D513502935F599F4AF09FFC379A9 value)
{
___m_materialReferenceStack_43 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_materialReferenceStack_43))->___m_ItemStack_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_materialReferenceStack_43))->___m_DefaultItem_3))->___fontAsset_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_materialReferenceStack_43))->___m_DefaultItem_3))->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_materialReferenceStack_43))->___m_DefaultItem_3))->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_materialReferenceStack_43))->___m_DefaultItem_3))->___fallbackMaterial_6), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_currentMaterialIndex_44() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_currentMaterialIndex_44)); }
inline int32_t get_m_currentMaterialIndex_44() const { return ___m_currentMaterialIndex_44; }
inline int32_t* get_address_of_m_currentMaterialIndex_44() { return &___m_currentMaterialIndex_44; }
inline void set_m_currentMaterialIndex_44(int32_t value)
{
___m_currentMaterialIndex_44 = value;
}
inline static int32_t get_offset_of_m_fontSharedMaterials_45() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontSharedMaterials_45)); }
inline MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* get_m_fontSharedMaterials_45() const { return ___m_fontSharedMaterials_45; }
inline MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398** get_address_of_m_fontSharedMaterials_45() { return &___m_fontSharedMaterials_45; }
inline void set_m_fontSharedMaterials_45(MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* value)
{
___m_fontSharedMaterials_45 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fontSharedMaterials_45), (void*)value);
}
inline static int32_t get_offset_of_m_fontMaterial_46() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontMaterial_46)); }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * get_m_fontMaterial_46() const { return ___m_fontMaterial_46; }
inline Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 ** get_address_of_m_fontMaterial_46() { return &___m_fontMaterial_46; }
inline void set_m_fontMaterial_46(Material_tF7DB3BF0C24DEC2FE0CB51E5DF5053D5223C8598 * value)
{
___m_fontMaterial_46 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fontMaterial_46), (void*)value);
}
inline static int32_t get_offset_of_m_fontMaterials_47() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontMaterials_47)); }
inline MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* get_m_fontMaterials_47() const { return ___m_fontMaterials_47; }
inline MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398** get_address_of_m_fontMaterials_47() { return &___m_fontMaterials_47; }
inline void set_m_fontMaterials_47(MaterialU5BU5D_tD2350F98F2A1BB6C7A5FBFE1474DFC47331AB398* value)
{
___m_fontMaterials_47 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fontMaterials_47), (void*)value);
}
inline static int32_t get_offset_of_m_isMaterialDirty_48() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isMaterialDirty_48)); }
inline bool get_m_isMaterialDirty_48() const { return ___m_isMaterialDirty_48; }
inline bool* get_address_of_m_isMaterialDirty_48() { return &___m_isMaterialDirty_48; }
inline void set_m_isMaterialDirty_48(bool value)
{
___m_isMaterialDirty_48 = value;
}
inline static int32_t get_offset_of_m_fontColor32_49() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontColor32_49)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_fontColor32_49() const { return ___m_fontColor32_49; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_fontColor32_49() { return &___m_fontColor32_49; }
inline void set_m_fontColor32_49(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_fontColor32_49 = value;
}
inline static int32_t get_offset_of_m_fontColor_50() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontColor_50)); }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 get_m_fontColor_50() const { return ___m_fontColor_50; }
inline Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 * get_address_of_m_fontColor_50() { return &___m_fontColor_50; }
inline void set_m_fontColor_50(Color_t119BCA590009762C7223FDD3AF9706653AC84ED2 value)
{
___m_fontColor_50 = value;
}
inline static int32_t get_offset_of_m_underlineColor_52() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_underlineColor_52)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_underlineColor_52() const { return ___m_underlineColor_52; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_underlineColor_52() { return &___m_underlineColor_52; }
inline void set_m_underlineColor_52(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_underlineColor_52 = value;
}
inline static int32_t get_offset_of_m_strikethroughColor_53() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_strikethroughColor_53)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_strikethroughColor_53() const { return ___m_strikethroughColor_53; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_strikethroughColor_53() { return &___m_strikethroughColor_53; }
inline void set_m_strikethroughColor_53(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_strikethroughColor_53 = value;
}
inline static int32_t get_offset_of_m_highlightColor_54() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_highlightColor_54)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_highlightColor_54() const { return ___m_highlightColor_54; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_highlightColor_54() { return &___m_highlightColor_54; }
inline void set_m_highlightColor_54(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_highlightColor_54 = value;
}
inline static int32_t get_offset_of_m_highlightPadding_55() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_highlightPadding_55)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_m_highlightPadding_55() const { return ___m_highlightPadding_55; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_m_highlightPadding_55() { return &___m_highlightPadding_55; }
inline void set_m_highlightPadding_55(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___m_highlightPadding_55 = value;
}
inline static int32_t get_offset_of_m_enableVertexGradient_56() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_enableVertexGradient_56)); }
inline bool get_m_enableVertexGradient_56() const { return ___m_enableVertexGradient_56; }
inline bool* get_address_of_m_enableVertexGradient_56() { return &___m_enableVertexGradient_56; }
inline void set_m_enableVertexGradient_56(bool value)
{
___m_enableVertexGradient_56 = value;
}
inline static int32_t get_offset_of_m_colorMode_57() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_colorMode_57)); }
inline int32_t get_m_colorMode_57() const { return ___m_colorMode_57; }
inline int32_t* get_address_of_m_colorMode_57() { return &___m_colorMode_57; }
inline void set_m_colorMode_57(int32_t value)
{
___m_colorMode_57 = value;
}
inline static int32_t get_offset_of_m_fontColorGradient_58() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontColorGradient_58)); }
inline VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A get_m_fontColorGradient_58() const { return ___m_fontColorGradient_58; }
inline VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A * get_address_of_m_fontColorGradient_58() { return &___m_fontColorGradient_58; }
inline void set_m_fontColorGradient_58(VertexGradient_tDDAAE14E70CADA44B1B69F228CFF837C67EF6F9A value)
{
___m_fontColorGradient_58 = value;
}
inline static int32_t get_offset_of_m_fontColorGradientPreset_59() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontColorGradientPreset_59)); }
inline TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * get_m_fontColorGradientPreset_59() const { return ___m_fontColorGradientPreset_59; }
inline TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 ** get_address_of_m_fontColorGradientPreset_59() { return &___m_fontColorGradientPreset_59; }
inline void set_m_fontColorGradientPreset_59(TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * value)
{
___m_fontColorGradientPreset_59 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_fontColorGradientPreset_59), (void*)value);
}
inline static int32_t get_offset_of_m_spriteAsset_60() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_spriteAsset_60)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_m_spriteAsset_60() const { return ___m_spriteAsset_60; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_m_spriteAsset_60() { return &___m_spriteAsset_60; }
inline void set_m_spriteAsset_60(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___m_spriteAsset_60 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_spriteAsset_60), (void*)value);
}
inline static int32_t get_offset_of_m_tintAllSprites_61() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_tintAllSprites_61)); }
inline bool get_m_tintAllSprites_61() const { return ___m_tintAllSprites_61; }
inline bool* get_address_of_m_tintAllSprites_61() { return &___m_tintAllSprites_61; }
inline void set_m_tintAllSprites_61(bool value)
{
___m_tintAllSprites_61 = value;
}
inline static int32_t get_offset_of_m_tintSprite_62() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_tintSprite_62)); }
inline bool get_m_tintSprite_62() const { return ___m_tintSprite_62; }
inline bool* get_address_of_m_tintSprite_62() { return &___m_tintSprite_62; }
inline void set_m_tintSprite_62(bool value)
{
___m_tintSprite_62 = value;
}
inline static int32_t get_offset_of_m_spriteColor_63() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_spriteColor_63)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_spriteColor_63() const { return ___m_spriteColor_63; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_spriteColor_63() { return &___m_spriteColor_63; }
inline void set_m_spriteColor_63(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_spriteColor_63 = value;
}
inline static int32_t get_offset_of_m_overrideHtmlColors_64() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_overrideHtmlColors_64)); }
inline bool get_m_overrideHtmlColors_64() const { return ___m_overrideHtmlColors_64; }
inline bool* get_address_of_m_overrideHtmlColors_64() { return &___m_overrideHtmlColors_64; }
inline void set_m_overrideHtmlColors_64(bool value)
{
___m_overrideHtmlColors_64 = value;
}
inline static int32_t get_offset_of_m_faceColor_65() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_faceColor_65)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_faceColor_65() const { return ___m_faceColor_65; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_faceColor_65() { return &___m_faceColor_65; }
inline void set_m_faceColor_65(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_faceColor_65 = value;
}
inline static int32_t get_offset_of_m_outlineColor_66() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_outlineColor_66)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_outlineColor_66() const { return ___m_outlineColor_66; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_outlineColor_66() { return &___m_outlineColor_66; }
inline void set_m_outlineColor_66(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_outlineColor_66 = value;
}
inline static int32_t get_offset_of_m_outlineWidth_67() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_outlineWidth_67)); }
inline float get_m_outlineWidth_67() const { return ___m_outlineWidth_67; }
inline float* get_address_of_m_outlineWidth_67() { return &___m_outlineWidth_67; }
inline void set_m_outlineWidth_67(float value)
{
___m_outlineWidth_67 = value;
}
inline static int32_t get_offset_of_m_fontSize_68() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontSize_68)); }
inline float get_m_fontSize_68() const { return ___m_fontSize_68; }
inline float* get_address_of_m_fontSize_68() { return &___m_fontSize_68; }
inline void set_m_fontSize_68(float value)
{
___m_fontSize_68 = value;
}
inline static int32_t get_offset_of_m_currentFontSize_69() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_currentFontSize_69)); }
inline float get_m_currentFontSize_69() const { return ___m_currentFontSize_69; }
inline float* get_address_of_m_currentFontSize_69() { return &___m_currentFontSize_69; }
inline void set_m_currentFontSize_69(float value)
{
___m_currentFontSize_69 = value;
}
inline static int32_t get_offset_of_m_fontSizeBase_70() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontSizeBase_70)); }
inline float get_m_fontSizeBase_70() const { return ___m_fontSizeBase_70; }
inline float* get_address_of_m_fontSizeBase_70() { return &___m_fontSizeBase_70; }
inline void set_m_fontSizeBase_70(float value)
{
___m_fontSizeBase_70 = value;
}
inline static int32_t get_offset_of_m_sizeStack_71() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_sizeStack_71)); }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 get_m_sizeStack_71() const { return ___m_sizeStack_71; }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 * get_address_of_m_sizeStack_71() { return &___m_sizeStack_71; }
inline void set_m_sizeStack_71(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 value)
{
___m_sizeStack_71 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_sizeStack_71))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_fontWeight_72() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontWeight_72)); }
inline int32_t get_m_fontWeight_72() const { return ___m_fontWeight_72; }
inline int32_t* get_address_of_m_fontWeight_72() { return &___m_fontWeight_72; }
inline void set_m_fontWeight_72(int32_t value)
{
___m_fontWeight_72 = value;
}
inline static int32_t get_offset_of_m_FontWeightInternal_73() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_FontWeightInternal_73)); }
inline int32_t get_m_FontWeightInternal_73() const { return ___m_FontWeightInternal_73; }
inline int32_t* get_address_of_m_FontWeightInternal_73() { return &___m_FontWeightInternal_73; }
inline void set_m_FontWeightInternal_73(int32_t value)
{
___m_FontWeightInternal_73 = value;
}
inline static int32_t get_offset_of_m_FontWeightStack_74() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_FontWeightStack_74)); }
inline TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B get_m_FontWeightStack_74() const { return ___m_FontWeightStack_74; }
inline TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B * get_address_of_m_FontWeightStack_74() { return &___m_FontWeightStack_74; }
inline void set_m_FontWeightStack_74(TMP_RichTextTagStack_1_t9B6C6D23490A525AEA83F4301C7523574055098B value)
{
___m_FontWeightStack_74 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_FontWeightStack_74))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_enableAutoSizing_75() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_enableAutoSizing_75)); }
inline bool get_m_enableAutoSizing_75() const { return ___m_enableAutoSizing_75; }
inline bool* get_address_of_m_enableAutoSizing_75() { return &___m_enableAutoSizing_75; }
inline void set_m_enableAutoSizing_75(bool value)
{
___m_enableAutoSizing_75 = value;
}
inline static int32_t get_offset_of_m_maxFontSize_76() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxFontSize_76)); }
inline float get_m_maxFontSize_76() const { return ___m_maxFontSize_76; }
inline float* get_address_of_m_maxFontSize_76() { return &___m_maxFontSize_76; }
inline void set_m_maxFontSize_76(float value)
{
___m_maxFontSize_76 = value;
}
inline static int32_t get_offset_of_m_minFontSize_77() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_minFontSize_77)); }
inline float get_m_minFontSize_77() const { return ___m_minFontSize_77; }
inline float* get_address_of_m_minFontSize_77() { return &___m_minFontSize_77; }
inline void set_m_minFontSize_77(float value)
{
___m_minFontSize_77 = value;
}
inline static int32_t get_offset_of_m_fontSizeMin_78() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontSizeMin_78)); }
inline float get_m_fontSizeMin_78() const { return ___m_fontSizeMin_78; }
inline float* get_address_of_m_fontSizeMin_78() { return &___m_fontSizeMin_78; }
inline void set_m_fontSizeMin_78(float value)
{
___m_fontSizeMin_78 = value;
}
inline static int32_t get_offset_of_m_fontSizeMax_79() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontSizeMax_79)); }
inline float get_m_fontSizeMax_79() const { return ___m_fontSizeMax_79; }
inline float* get_address_of_m_fontSizeMax_79() { return &___m_fontSizeMax_79; }
inline void set_m_fontSizeMax_79(float value)
{
___m_fontSizeMax_79 = value;
}
inline static int32_t get_offset_of_m_fontStyle_80() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontStyle_80)); }
inline int32_t get_m_fontStyle_80() const { return ___m_fontStyle_80; }
inline int32_t* get_address_of_m_fontStyle_80() { return &___m_fontStyle_80; }
inline void set_m_fontStyle_80(int32_t value)
{
___m_fontStyle_80 = value;
}
inline static int32_t get_offset_of_m_FontStyleInternal_81() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_FontStyleInternal_81)); }
inline int32_t get_m_FontStyleInternal_81() const { return ___m_FontStyleInternal_81; }
inline int32_t* get_address_of_m_FontStyleInternal_81() { return &___m_FontStyleInternal_81; }
inline void set_m_FontStyleInternal_81(int32_t value)
{
___m_FontStyleInternal_81 = value;
}
inline static int32_t get_offset_of_m_fontStyleStack_82() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontStyleStack_82)); }
inline TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 get_m_fontStyleStack_82() const { return ___m_fontStyleStack_82; }
inline TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 * get_address_of_m_fontStyleStack_82() { return &___m_fontStyleStack_82; }
inline void set_m_fontStyleStack_82(TMP_FontStyleStack_tC7146DA5AD4540B2C8733862D785AD50AD229E84 value)
{
___m_fontStyleStack_82 = value;
}
inline static int32_t get_offset_of_m_isUsingBold_83() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isUsingBold_83)); }
inline bool get_m_isUsingBold_83() const { return ___m_isUsingBold_83; }
inline bool* get_address_of_m_isUsingBold_83() { return &___m_isUsingBold_83; }
inline void set_m_isUsingBold_83(bool value)
{
___m_isUsingBold_83 = value;
}
inline static int32_t get_offset_of_m_textAlignment_84() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_textAlignment_84)); }
inline int32_t get_m_textAlignment_84() const { return ___m_textAlignment_84; }
inline int32_t* get_address_of_m_textAlignment_84() { return &___m_textAlignment_84; }
inline void set_m_textAlignment_84(int32_t value)
{
___m_textAlignment_84 = value;
}
inline static int32_t get_offset_of_m_lineJustification_85() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineJustification_85)); }
inline int32_t get_m_lineJustification_85() const { return ___m_lineJustification_85; }
inline int32_t* get_address_of_m_lineJustification_85() { return &___m_lineJustification_85; }
inline void set_m_lineJustification_85(int32_t value)
{
___m_lineJustification_85 = value;
}
inline static int32_t get_offset_of_m_lineJustificationStack_86() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineJustificationStack_86)); }
inline TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 get_m_lineJustificationStack_86() const { return ___m_lineJustificationStack_86; }
inline TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 * get_address_of_m_lineJustificationStack_86() { return &___m_lineJustificationStack_86; }
inline void set_m_lineJustificationStack_86(TMP_RichTextTagStack_1_t435AA844A7DBDA7E54BCDA3C53622D4B28952115 value)
{
___m_lineJustificationStack_86 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_lineJustificationStack_86))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_textContainerLocalCorners_87() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_textContainerLocalCorners_87)); }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* get_m_textContainerLocalCorners_87() const { return ___m_textContainerLocalCorners_87; }
inline Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28** get_address_of_m_textContainerLocalCorners_87() { return &___m_textContainerLocalCorners_87; }
inline void set_m_textContainerLocalCorners_87(Vector3U5BU5D_tB9EC3346CC4A0EA5447D968E84A9AC1F6F372C28* value)
{
___m_textContainerLocalCorners_87 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textContainerLocalCorners_87), (void*)value);
}
inline static int32_t get_offset_of_m_characterSpacing_88() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_characterSpacing_88)); }
inline float get_m_characterSpacing_88() const { return ___m_characterSpacing_88; }
inline float* get_address_of_m_characterSpacing_88() { return &___m_characterSpacing_88; }
inline void set_m_characterSpacing_88(float value)
{
___m_characterSpacing_88 = value;
}
inline static int32_t get_offset_of_m_cSpacing_89() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_cSpacing_89)); }
inline float get_m_cSpacing_89() const { return ___m_cSpacing_89; }
inline float* get_address_of_m_cSpacing_89() { return &___m_cSpacing_89; }
inline void set_m_cSpacing_89(float value)
{
___m_cSpacing_89 = value;
}
inline static int32_t get_offset_of_m_monoSpacing_90() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_monoSpacing_90)); }
inline float get_m_monoSpacing_90() const { return ___m_monoSpacing_90; }
inline float* get_address_of_m_monoSpacing_90() { return &___m_monoSpacing_90; }
inline void set_m_monoSpacing_90(float value)
{
___m_monoSpacing_90 = value;
}
inline static int32_t get_offset_of_m_wordSpacing_91() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_wordSpacing_91)); }
inline float get_m_wordSpacing_91() const { return ___m_wordSpacing_91; }
inline float* get_address_of_m_wordSpacing_91() { return &___m_wordSpacing_91; }
inline void set_m_wordSpacing_91(float value)
{
___m_wordSpacing_91 = value;
}
inline static int32_t get_offset_of_m_lineSpacing_92() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineSpacing_92)); }
inline float get_m_lineSpacing_92() const { return ___m_lineSpacing_92; }
inline float* get_address_of_m_lineSpacing_92() { return &___m_lineSpacing_92; }
inline void set_m_lineSpacing_92(float value)
{
___m_lineSpacing_92 = value;
}
inline static int32_t get_offset_of_m_lineSpacingDelta_93() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineSpacingDelta_93)); }
inline float get_m_lineSpacingDelta_93() const { return ___m_lineSpacingDelta_93; }
inline float* get_address_of_m_lineSpacingDelta_93() { return &___m_lineSpacingDelta_93; }
inline void set_m_lineSpacingDelta_93(float value)
{
___m_lineSpacingDelta_93 = value;
}
inline static int32_t get_offset_of_m_lineHeight_94() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineHeight_94)); }
inline float get_m_lineHeight_94() const { return ___m_lineHeight_94; }
inline float* get_address_of_m_lineHeight_94() { return &___m_lineHeight_94; }
inline void set_m_lineHeight_94(float value)
{
___m_lineHeight_94 = value;
}
inline static int32_t get_offset_of_m_lineSpacingMax_95() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineSpacingMax_95)); }
inline float get_m_lineSpacingMax_95() const { return ___m_lineSpacingMax_95; }
inline float* get_address_of_m_lineSpacingMax_95() { return &___m_lineSpacingMax_95; }
inline void set_m_lineSpacingMax_95(float value)
{
___m_lineSpacingMax_95 = value;
}
inline static int32_t get_offset_of_m_paragraphSpacing_96() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_paragraphSpacing_96)); }
inline float get_m_paragraphSpacing_96() const { return ___m_paragraphSpacing_96; }
inline float* get_address_of_m_paragraphSpacing_96() { return &___m_paragraphSpacing_96; }
inline void set_m_paragraphSpacing_96(float value)
{
___m_paragraphSpacing_96 = value;
}
inline static int32_t get_offset_of_m_charWidthMaxAdj_97() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_charWidthMaxAdj_97)); }
inline float get_m_charWidthMaxAdj_97() const { return ___m_charWidthMaxAdj_97; }
inline float* get_address_of_m_charWidthMaxAdj_97() { return &___m_charWidthMaxAdj_97; }
inline void set_m_charWidthMaxAdj_97(float value)
{
___m_charWidthMaxAdj_97 = value;
}
inline static int32_t get_offset_of_m_charWidthAdjDelta_98() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_charWidthAdjDelta_98)); }
inline float get_m_charWidthAdjDelta_98() const { return ___m_charWidthAdjDelta_98; }
inline float* get_address_of_m_charWidthAdjDelta_98() { return &___m_charWidthAdjDelta_98; }
inline void set_m_charWidthAdjDelta_98(float value)
{
___m_charWidthAdjDelta_98 = value;
}
inline static int32_t get_offset_of_m_enableWordWrapping_99() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_enableWordWrapping_99)); }
inline bool get_m_enableWordWrapping_99() const { return ___m_enableWordWrapping_99; }
inline bool* get_address_of_m_enableWordWrapping_99() { return &___m_enableWordWrapping_99; }
inline void set_m_enableWordWrapping_99(bool value)
{
___m_enableWordWrapping_99 = value;
}
inline static int32_t get_offset_of_m_isCharacterWrappingEnabled_100() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isCharacterWrappingEnabled_100)); }
inline bool get_m_isCharacterWrappingEnabled_100() const { return ___m_isCharacterWrappingEnabled_100; }
inline bool* get_address_of_m_isCharacterWrappingEnabled_100() { return &___m_isCharacterWrappingEnabled_100; }
inline void set_m_isCharacterWrappingEnabled_100(bool value)
{
___m_isCharacterWrappingEnabled_100 = value;
}
inline static int32_t get_offset_of_m_isNonBreakingSpace_101() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isNonBreakingSpace_101)); }
inline bool get_m_isNonBreakingSpace_101() const { return ___m_isNonBreakingSpace_101; }
inline bool* get_address_of_m_isNonBreakingSpace_101() { return &___m_isNonBreakingSpace_101; }
inline void set_m_isNonBreakingSpace_101(bool value)
{
___m_isNonBreakingSpace_101 = value;
}
inline static int32_t get_offset_of_m_isIgnoringAlignment_102() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isIgnoringAlignment_102)); }
inline bool get_m_isIgnoringAlignment_102() const { return ___m_isIgnoringAlignment_102; }
inline bool* get_address_of_m_isIgnoringAlignment_102() { return &___m_isIgnoringAlignment_102; }
inline void set_m_isIgnoringAlignment_102(bool value)
{
___m_isIgnoringAlignment_102 = value;
}
inline static int32_t get_offset_of_m_wordWrappingRatios_103() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_wordWrappingRatios_103)); }
inline float get_m_wordWrappingRatios_103() const { return ___m_wordWrappingRatios_103; }
inline float* get_address_of_m_wordWrappingRatios_103() { return &___m_wordWrappingRatios_103; }
inline void set_m_wordWrappingRatios_103(float value)
{
___m_wordWrappingRatios_103 = value;
}
inline static int32_t get_offset_of_m_overflowMode_104() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_overflowMode_104)); }
inline int32_t get_m_overflowMode_104() const { return ___m_overflowMode_104; }
inline int32_t* get_address_of_m_overflowMode_104() { return &___m_overflowMode_104; }
inline void set_m_overflowMode_104(int32_t value)
{
___m_overflowMode_104 = value;
}
inline static int32_t get_offset_of_m_firstOverflowCharacterIndex_105() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_firstOverflowCharacterIndex_105)); }
inline int32_t get_m_firstOverflowCharacterIndex_105() const { return ___m_firstOverflowCharacterIndex_105; }
inline int32_t* get_address_of_m_firstOverflowCharacterIndex_105() { return &___m_firstOverflowCharacterIndex_105; }
inline void set_m_firstOverflowCharacterIndex_105(int32_t value)
{
___m_firstOverflowCharacterIndex_105 = value;
}
inline static int32_t get_offset_of_m_linkedTextComponent_106() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_linkedTextComponent_106)); }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * get_m_linkedTextComponent_106() const { return ___m_linkedTextComponent_106; }
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** get_address_of_m_linkedTextComponent_106() { return &___m_linkedTextComponent_106; }
inline void set_m_linkedTextComponent_106(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
___m_linkedTextComponent_106 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_linkedTextComponent_106), (void*)value);
}
inline static int32_t get_offset_of_m_isLinkedTextComponent_107() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isLinkedTextComponent_107)); }
inline bool get_m_isLinkedTextComponent_107() const { return ___m_isLinkedTextComponent_107; }
inline bool* get_address_of_m_isLinkedTextComponent_107() { return &___m_isLinkedTextComponent_107; }
inline void set_m_isLinkedTextComponent_107(bool value)
{
___m_isLinkedTextComponent_107 = value;
}
inline static int32_t get_offset_of_m_isTextTruncated_108() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isTextTruncated_108)); }
inline bool get_m_isTextTruncated_108() const { return ___m_isTextTruncated_108; }
inline bool* get_address_of_m_isTextTruncated_108() { return &___m_isTextTruncated_108; }
inline void set_m_isTextTruncated_108(bool value)
{
___m_isTextTruncated_108 = value;
}
inline static int32_t get_offset_of_m_enableKerning_109() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_enableKerning_109)); }
inline bool get_m_enableKerning_109() const { return ___m_enableKerning_109; }
inline bool* get_address_of_m_enableKerning_109() { return &___m_enableKerning_109; }
inline void set_m_enableKerning_109(bool value)
{
___m_enableKerning_109 = value;
}
inline static int32_t get_offset_of_m_enableExtraPadding_110() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_enableExtraPadding_110)); }
inline bool get_m_enableExtraPadding_110() const { return ___m_enableExtraPadding_110; }
inline bool* get_address_of_m_enableExtraPadding_110() { return &___m_enableExtraPadding_110; }
inline void set_m_enableExtraPadding_110(bool value)
{
___m_enableExtraPadding_110 = value;
}
inline static int32_t get_offset_of_checkPaddingRequired_111() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___checkPaddingRequired_111)); }
inline bool get_checkPaddingRequired_111() const { return ___checkPaddingRequired_111; }
inline bool* get_address_of_checkPaddingRequired_111() { return &___checkPaddingRequired_111; }
inline void set_checkPaddingRequired_111(bool value)
{
___checkPaddingRequired_111 = value;
}
inline static int32_t get_offset_of_m_isRichText_112() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isRichText_112)); }
inline bool get_m_isRichText_112() const { return ___m_isRichText_112; }
inline bool* get_address_of_m_isRichText_112() { return &___m_isRichText_112; }
inline void set_m_isRichText_112(bool value)
{
___m_isRichText_112 = value;
}
inline static int32_t get_offset_of_m_parseCtrlCharacters_113() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_parseCtrlCharacters_113)); }
inline bool get_m_parseCtrlCharacters_113() const { return ___m_parseCtrlCharacters_113; }
inline bool* get_address_of_m_parseCtrlCharacters_113() { return &___m_parseCtrlCharacters_113; }
inline void set_m_parseCtrlCharacters_113(bool value)
{
___m_parseCtrlCharacters_113 = value;
}
inline static int32_t get_offset_of_m_isOverlay_114() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isOverlay_114)); }
inline bool get_m_isOverlay_114() const { return ___m_isOverlay_114; }
inline bool* get_address_of_m_isOverlay_114() { return &___m_isOverlay_114; }
inline void set_m_isOverlay_114(bool value)
{
___m_isOverlay_114 = value;
}
inline static int32_t get_offset_of_m_isOrthographic_115() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isOrthographic_115)); }
inline bool get_m_isOrthographic_115() const { return ___m_isOrthographic_115; }
inline bool* get_address_of_m_isOrthographic_115() { return &___m_isOrthographic_115; }
inline void set_m_isOrthographic_115(bool value)
{
___m_isOrthographic_115 = value;
}
inline static int32_t get_offset_of_m_isCullingEnabled_116() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isCullingEnabled_116)); }
inline bool get_m_isCullingEnabled_116() const { return ___m_isCullingEnabled_116; }
inline bool* get_address_of_m_isCullingEnabled_116() { return &___m_isCullingEnabled_116; }
inline void set_m_isCullingEnabled_116(bool value)
{
___m_isCullingEnabled_116 = value;
}
inline static int32_t get_offset_of_m_ignoreRectMaskCulling_117() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_ignoreRectMaskCulling_117)); }
inline bool get_m_ignoreRectMaskCulling_117() const { return ___m_ignoreRectMaskCulling_117; }
inline bool* get_address_of_m_ignoreRectMaskCulling_117() { return &___m_ignoreRectMaskCulling_117; }
inline void set_m_ignoreRectMaskCulling_117(bool value)
{
___m_ignoreRectMaskCulling_117 = value;
}
inline static int32_t get_offset_of_m_ignoreCulling_118() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_ignoreCulling_118)); }
inline bool get_m_ignoreCulling_118() const { return ___m_ignoreCulling_118; }
inline bool* get_address_of_m_ignoreCulling_118() { return &___m_ignoreCulling_118; }
inline void set_m_ignoreCulling_118(bool value)
{
___m_ignoreCulling_118 = value;
}
inline static int32_t get_offset_of_m_horizontalMapping_119() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_horizontalMapping_119)); }
inline int32_t get_m_horizontalMapping_119() const { return ___m_horizontalMapping_119; }
inline int32_t* get_address_of_m_horizontalMapping_119() { return &___m_horizontalMapping_119; }
inline void set_m_horizontalMapping_119(int32_t value)
{
___m_horizontalMapping_119 = value;
}
inline static int32_t get_offset_of_m_verticalMapping_120() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_verticalMapping_120)); }
inline int32_t get_m_verticalMapping_120() const { return ___m_verticalMapping_120; }
inline int32_t* get_address_of_m_verticalMapping_120() { return &___m_verticalMapping_120; }
inline void set_m_verticalMapping_120(int32_t value)
{
___m_verticalMapping_120 = value;
}
inline static int32_t get_offset_of_m_uvLineOffset_121() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_uvLineOffset_121)); }
inline float get_m_uvLineOffset_121() const { return ___m_uvLineOffset_121; }
inline float* get_address_of_m_uvLineOffset_121() { return &___m_uvLineOffset_121; }
inline void set_m_uvLineOffset_121(float value)
{
___m_uvLineOffset_121 = value;
}
inline static int32_t get_offset_of_m_renderMode_122() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_renderMode_122)); }
inline int32_t get_m_renderMode_122() const { return ___m_renderMode_122; }
inline int32_t* get_address_of_m_renderMode_122() { return &___m_renderMode_122; }
inline void set_m_renderMode_122(int32_t value)
{
___m_renderMode_122 = value;
}
inline static int32_t get_offset_of_m_geometrySortingOrder_123() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_geometrySortingOrder_123)); }
inline int32_t get_m_geometrySortingOrder_123() const { return ___m_geometrySortingOrder_123; }
inline int32_t* get_address_of_m_geometrySortingOrder_123() { return &___m_geometrySortingOrder_123; }
inline void set_m_geometrySortingOrder_123(int32_t value)
{
___m_geometrySortingOrder_123 = value;
}
inline static int32_t get_offset_of_m_VertexBufferAutoSizeReduction_124() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_VertexBufferAutoSizeReduction_124)); }
inline bool get_m_VertexBufferAutoSizeReduction_124() const { return ___m_VertexBufferAutoSizeReduction_124; }
inline bool* get_address_of_m_VertexBufferAutoSizeReduction_124() { return &___m_VertexBufferAutoSizeReduction_124; }
inline void set_m_VertexBufferAutoSizeReduction_124(bool value)
{
___m_VertexBufferAutoSizeReduction_124 = value;
}
inline static int32_t get_offset_of_m_firstVisibleCharacter_125() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_firstVisibleCharacter_125)); }
inline int32_t get_m_firstVisibleCharacter_125() const { return ___m_firstVisibleCharacter_125; }
inline int32_t* get_address_of_m_firstVisibleCharacter_125() { return &___m_firstVisibleCharacter_125; }
inline void set_m_firstVisibleCharacter_125(int32_t value)
{
___m_firstVisibleCharacter_125 = value;
}
inline static int32_t get_offset_of_m_maxVisibleCharacters_126() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxVisibleCharacters_126)); }
inline int32_t get_m_maxVisibleCharacters_126() const { return ___m_maxVisibleCharacters_126; }
inline int32_t* get_address_of_m_maxVisibleCharacters_126() { return &___m_maxVisibleCharacters_126; }
inline void set_m_maxVisibleCharacters_126(int32_t value)
{
___m_maxVisibleCharacters_126 = value;
}
inline static int32_t get_offset_of_m_maxVisibleWords_127() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxVisibleWords_127)); }
inline int32_t get_m_maxVisibleWords_127() const { return ___m_maxVisibleWords_127; }
inline int32_t* get_address_of_m_maxVisibleWords_127() { return &___m_maxVisibleWords_127; }
inline void set_m_maxVisibleWords_127(int32_t value)
{
___m_maxVisibleWords_127 = value;
}
inline static int32_t get_offset_of_m_maxVisibleLines_128() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxVisibleLines_128)); }
inline int32_t get_m_maxVisibleLines_128() const { return ___m_maxVisibleLines_128; }
inline int32_t* get_address_of_m_maxVisibleLines_128() { return &___m_maxVisibleLines_128; }
inline void set_m_maxVisibleLines_128(int32_t value)
{
___m_maxVisibleLines_128 = value;
}
inline static int32_t get_offset_of_m_useMaxVisibleDescender_129() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_useMaxVisibleDescender_129)); }
inline bool get_m_useMaxVisibleDescender_129() const { return ___m_useMaxVisibleDescender_129; }
inline bool* get_address_of_m_useMaxVisibleDescender_129() { return &___m_useMaxVisibleDescender_129; }
inline void set_m_useMaxVisibleDescender_129(bool value)
{
___m_useMaxVisibleDescender_129 = value;
}
inline static int32_t get_offset_of_m_pageToDisplay_130() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_pageToDisplay_130)); }
inline int32_t get_m_pageToDisplay_130() const { return ___m_pageToDisplay_130; }
inline int32_t* get_address_of_m_pageToDisplay_130() { return &___m_pageToDisplay_130; }
inline void set_m_pageToDisplay_130(int32_t value)
{
___m_pageToDisplay_130 = value;
}
inline static int32_t get_offset_of_m_isNewPage_131() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isNewPage_131)); }
inline bool get_m_isNewPage_131() const { return ___m_isNewPage_131; }
inline bool* get_address_of_m_isNewPage_131() { return &___m_isNewPage_131; }
inline void set_m_isNewPage_131(bool value)
{
___m_isNewPage_131 = value;
}
inline static int32_t get_offset_of_m_margin_132() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_margin_132)); }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E get_m_margin_132() const { return ___m_margin_132; }
inline Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E * get_address_of_m_margin_132() { return &___m_margin_132; }
inline void set_m_margin_132(Vector4_tD148D6428C3F8FF6CD998F82090113C2B490B76E value)
{
___m_margin_132 = value;
}
inline static int32_t get_offset_of_m_marginLeft_133() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_marginLeft_133)); }
inline float get_m_marginLeft_133() const { return ___m_marginLeft_133; }
inline float* get_address_of_m_marginLeft_133() { return &___m_marginLeft_133; }
inline void set_m_marginLeft_133(float value)
{
___m_marginLeft_133 = value;
}
inline static int32_t get_offset_of_m_marginRight_134() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_marginRight_134)); }
inline float get_m_marginRight_134() const { return ___m_marginRight_134; }
inline float* get_address_of_m_marginRight_134() { return &___m_marginRight_134; }
inline void set_m_marginRight_134(float value)
{
___m_marginRight_134 = value;
}
inline static int32_t get_offset_of_m_marginWidth_135() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_marginWidth_135)); }
inline float get_m_marginWidth_135() const { return ___m_marginWidth_135; }
inline float* get_address_of_m_marginWidth_135() { return &___m_marginWidth_135; }
inline void set_m_marginWidth_135(float value)
{
___m_marginWidth_135 = value;
}
inline static int32_t get_offset_of_m_marginHeight_136() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_marginHeight_136)); }
inline float get_m_marginHeight_136() const { return ___m_marginHeight_136; }
inline float* get_address_of_m_marginHeight_136() { return &___m_marginHeight_136; }
inline void set_m_marginHeight_136(float value)
{
___m_marginHeight_136 = value;
}
inline static int32_t get_offset_of_m_width_137() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_width_137)); }
inline float get_m_width_137() const { return ___m_width_137; }
inline float* get_address_of_m_width_137() { return &___m_width_137; }
inline void set_m_width_137(float value)
{
___m_width_137 = value;
}
inline static int32_t get_offset_of_m_textInfo_138() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_textInfo_138)); }
inline TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 * get_m_textInfo_138() const { return ___m_textInfo_138; }
inline TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 ** get_address_of_m_textInfo_138() { return &___m_textInfo_138; }
inline void set_m_textInfo_138(TMP_TextInfo_tC40DAAB47C5BD5AD21B3F456D860474D96D9C181 * value)
{
___m_textInfo_138 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_textInfo_138), (void*)value);
}
inline static int32_t get_offset_of_m_havePropertiesChanged_139() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_havePropertiesChanged_139)); }
inline bool get_m_havePropertiesChanged_139() const { return ___m_havePropertiesChanged_139; }
inline bool* get_address_of_m_havePropertiesChanged_139() { return &___m_havePropertiesChanged_139; }
inline void set_m_havePropertiesChanged_139(bool value)
{
___m_havePropertiesChanged_139 = value;
}
inline static int32_t get_offset_of_m_isUsingLegacyAnimationComponent_140() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isUsingLegacyAnimationComponent_140)); }
inline bool get_m_isUsingLegacyAnimationComponent_140() const { return ___m_isUsingLegacyAnimationComponent_140; }
inline bool* get_address_of_m_isUsingLegacyAnimationComponent_140() { return &___m_isUsingLegacyAnimationComponent_140; }
inline void set_m_isUsingLegacyAnimationComponent_140(bool value)
{
___m_isUsingLegacyAnimationComponent_140 = value;
}
inline static int32_t get_offset_of_m_transform_141() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_transform_141)); }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * get_m_transform_141() const { return ___m_transform_141; }
inline Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA ** get_address_of_m_transform_141() { return &___m_transform_141; }
inline void set_m_transform_141(Transform_tBB9E78A2766C3C83599A8F66EDE7D1FCAFC66EDA * value)
{
___m_transform_141 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_transform_141), (void*)value);
}
inline static int32_t get_offset_of_m_rectTransform_142() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_rectTransform_142)); }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * get_m_rectTransform_142() const { return ___m_rectTransform_142; }
inline RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 ** get_address_of_m_rectTransform_142() { return &___m_rectTransform_142; }
inline void set_m_rectTransform_142(RectTransform_t285CBD8775B25174B75164F10618F8B9728E1B20 * value)
{
___m_rectTransform_142 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_rectTransform_142), (void*)value);
}
inline static int32_t get_offset_of_U3CautoSizeTextContainerU3Ek__BackingField_143() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___U3CautoSizeTextContainerU3Ek__BackingField_143)); }
inline bool get_U3CautoSizeTextContainerU3Ek__BackingField_143() const { return ___U3CautoSizeTextContainerU3Ek__BackingField_143; }
inline bool* get_address_of_U3CautoSizeTextContainerU3Ek__BackingField_143() { return &___U3CautoSizeTextContainerU3Ek__BackingField_143; }
inline void set_U3CautoSizeTextContainerU3Ek__BackingField_143(bool value)
{
___U3CautoSizeTextContainerU3Ek__BackingField_143 = value;
}
inline static int32_t get_offset_of_m_autoSizeTextContainer_144() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_autoSizeTextContainer_144)); }
inline bool get_m_autoSizeTextContainer_144() const { return ___m_autoSizeTextContainer_144; }
inline bool* get_address_of_m_autoSizeTextContainer_144() { return &___m_autoSizeTextContainer_144; }
inline void set_m_autoSizeTextContainer_144(bool value)
{
___m_autoSizeTextContainer_144 = value;
}
inline static int32_t get_offset_of_m_mesh_145() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_mesh_145)); }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * get_m_mesh_145() const { return ___m_mesh_145; }
inline Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C ** get_address_of_m_mesh_145() { return &___m_mesh_145; }
inline void set_m_mesh_145(Mesh_t6106B8D8E4C691321581AB0445552EC78B947B8C * value)
{
___m_mesh_145 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_mesh_145), (void*)value);
}
inline static int32_t get_offset_of_m_isVolumetricText_146() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isVolumetricText_146)); }
inline bool get_m_isVolumetricText_146() const { return ___m_isVolumetricText_146; }
inline bool* get_address_of_m_isVolumetricText_146() { return &___m_isVolumetricText_146; }
inline void set_m_isVolumetricText_146(bool value)
{
___m_isVolumetricText_146 = value;
}
inline static int32_t get_offset_of_m_spriteAnimator_147() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_spriteAnimator_147)); }
inline TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17 * get_m_spriteAnimator_147() const { return ___m_spriteAnimator_147; }
inline TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17 ** get_address_of_m_spriteAnimator_147() { return &___m_spriteAnimator_147; }
inline void set_m_spriteAnimator_147(TMP_SpriteAnimator_tEB1A22D4A88DC5AAC3EFBDD8FD10B2A02C7B0D17 * value)
{
___m_spriteAnimator_147 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_spriteAnimator_147), (void*)value);
}
inline static int32_t get_offset_of_m_flexibleHeight_148() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_flexibleHeight_148)); }
inline float get_m_flexibleHeight_148() const { return ___m_flexibleHeight_148; }
inline float* get_address_of_m_flexibleHeight_148() { return &___m_flexibleHeight_148; }
inline void set_m_flexibleHeight_148(float value)
{
___m_flexibleHeight_148 = value;
}
inline static int32_t get_offset_of_m_flexibleWidth_149() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_flexibleWidth_149)); }
inline float get_m_flexibleWidth_149() const { return ___m_flexibleWidth_149; }
inline float* get_address_of_m_flexibleWidth_149() { return &___m_flexibleWidth_149; }
inline void set_m_flexibleWidth_149(float value)
{
___m_flexibleWidth_149 = value;
}
inline static int32_t get_offset_of_m_minWidth_150() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_minWidth_150)); }
inline float get_m_minWidth_150() const { return ___m_minWidth_150; }
inline float* get_address_of_m_minWidth_150() { return &___m_minWidth_150; }
inline void set_m_minWidth_150(float value)
{
___m_minWidth_150 = value;
}
inline static int32_t get_offset_of_m_minHeight_151() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_minHeight_151)); }
inline float get_m_minHeight_151() const { return ___m_minHeight_151; }
inline float* get_address_of_m_minHeight_151() { return &___m_minHeight_151; }
inline void set_m_minHeight_151(float value)
{
___m_minHeight_151 = value;
}
inline static int32_t get_offset_of_m_maxWidth_152() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxWidth_152)); }
inline float get_m_maxWidth_152() const { return ___m_maxWidth_152; }
inline float* get_address_of_m_maxWidth_152() { return &___m_maxWidth_152; }
inline void set_m_maxWidth_152(float value)
{
___m_maxWidth_152 = value;
}
inline static int32_t get_offset_of_m_maxHeight_153() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxHeight_153)); }
inline float get_m_maxHeight_153() const { return ___m_maxHeight_153; }
inline float* get_address_of_m_maxHeight_153() { return &___m_maxHeight_153; }
inline void set_m_maxHeight_153(float value)
{
___m_maxHeight_153 = value;
}
inline static int32_t get_offset_of_m_LayoutElement_154() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_LayoutElement_154)); }
inline LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B * get_m_LayoutElement_154() const { return ___m_LayoutElement_154; }
inline LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B ** get_address_of_m_LayoutElement_154() { return &___m_LayoutElement_154; }
inline void set_m_LayoutElement_154(LayoutElement_tD503826DB41B6EA85AC689292F8B2661B3C1048B * value)
{
___m_LayoutElement_154 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_LayoutElement_154), (void*)value);
}
inline static int32_t get_offset_of_m_preferredWidth_155() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_preferredWidth_155)); }
inline float get_m_preferredWidth_155() const { return ___m_preferredWidth_155; }
inline float* get_address_of_m_preferredWidth_155() { return &___m_preferredWidth_155; }
inline void set_m_preferredWidth_155(float value)
{
___m_preferredWidth_155 = value;
}
inline static int32_t get_offset_of_m_renderedWidth_156() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_renderedWidth_156)); }
inline float get_m_renderedWidth_156() const { return ___m_renderedWidth_156; }
inline float* get_address_of_m_renderedWidth_156() { return &___m_renderedWidth_156; }
inline void set_m_renderedWidth_156(float value)
{
___m_renderedWidth_156 = value;
}
inline static int32_t get_offset_of_m_isPreferredWidthDirty_157() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isPreferredWidthDirty_157)); }
inline bool get_m_isPreferredWidthDirty_157() const { return ___m_isPreferredWidthDirty_157; }
inline bool* get_address_of_m_isPreferredWidthDirty_157() { return &___m_isPreferredWidthDirty_157; }
inline void set_m_isPreferredWidthDirty_157(bool value)
{
___m_isPreferredWidthDirty_157 = value;
}
inline static int32_t get_offset_of_m_preferredHeight_158() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_preferredHeight_158)); }
inline float get_m_preferredHeight_158() const { return ___m_preferredHeight_158; }
inline float* get_address_of_m_preferredHeight_158() { return &___m_preferredHeight_158; }
inline void set_m_preferredHeight_158(float value)
{
___m_preferredHeight_158 = value;
}
inline static int32_t get_offset_of_m_renderedHeight_159() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_renderedHeight_159)); }
inline float get_m_renderedHeight_159() const { return ___m_renderedHeight_159; }
inline float* get_address_of_m_renderedHeight_159() { return &___m_renderedHeight_159; }
inline void set_m_renderedHeight_159(float value)
{
___m_renderedHeight_159 = value;
}
inline static int32_t get_offset_of_m_isPreferredHeightDirty_160() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isPreferredHeightDirty_160)); }
inline bool get_m_isPreferredHeightDirty_160() const { return ___m_isPreferredHeightDirty_160; }
inline bool* get_address_of_m_isPreferredHeightDirty_160() { return &___m_isPreferredHeightDirty_160; }
inline void set_m_isPreferredHeightDirty_160(bool value)
{
___m_isPreferredHeightDirty_160 = value;
}
inline static int32_t get_offset_of_m_isCalculatingPreferredValues_161() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isCalculatingPreferredValues_161)); }
inline bool get_m_isCalculatingPreferredValues_161() const { return ___m_isCalculatingPreferredValues_161; }
inline bool* get_address_of_m_isCalculatingPreferredValues_161() { return &___m_isCalculatingPreferredValues_161; }
inline void set_m_isCalculatingPreferredValues_161(bool value)
{
___m_isCalculatingPreferredValues_161 = value;
}
inline static int32_t get_offset_of_m_recursiveCount_162() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_recursiveCount_162)); }
inline int32_t get_m_recursiveCount_162() const { return ___m_recursiveCount_162; }
inline int32_t* get_address_of_m_recursiveCount_162() { return &___m_recursiveCount_162; }
inline void set_m_recursiveCount_162(int32_t value)
{
___m_recursiveCount_162 = value;
}
inline static int32_t get_offset_of_m_layoutPriority_163() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_layoutPriority_163)); }
inline int32_t get_m_layoutPriority_163() const { return ___m_layoutPriority_163; }
inline int32_t* get_address_of_m_layoutPriority_163() { return &___m_layoutPriority_163; }
inline void set_m_layoutPriority_163(int32_t value)
{
___m_layoutPriority_163 = value;
}
inline static int32_t get_offset_of_m_isCalculateSizeRequired_164() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isCalculateSizeRequired_164)); }
inline bool get_m_isCalculateSizeRequired_164() const { return ___m_isCalculateSizeRequired_164; }
inline bool* get_address_of_m_isCalculateSizeRequired_164() { return &___m_isCalculateSizeRequired_164; }
inline void set_m_isCalculateSizeRequired_164(bool value)
{
___m_isCalculateSizeRequired_164 = value;
}
inline static int32_t get_offset_of_m_isLayoutDirty_165() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isLayoutDirty_165)); }
inline bool get_m_isLayoutDirty_165() const { return ___m_isLayoutDirty_165; }
inline bool* get_address_of_m_isLayoutDirty_165() { return &___m_isLayoutDirty_165; }
inline void set_m_isLayoutDirty_165(bool value)
{
___m_isLayoutDirty_165 = value;
}
inline static int32_t get_offset_of_m_verticesAlreadyDirty_166() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_verticesAlreadyDirty_166)); }
inline bool get_m_verticesAlreadyDirty_166() const { return ___m_verticesAlreadyDirty_166; }
inline bool* get_address_of_m_verticesAlreadyDirty_166() { return &___m_verticesAlreadyDirty_166; }
inline void set_m_verticesAlreadyDirty_166(bool value)
{
___m_verticesAlreadyDirty_166 = value;
}
inline static int32_t get_offset_of_m_layoutAlreadyDirty_167() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_layoutAlreadyDirty_167)); }
inline bool get_m_layoutAlreadyDirty_167() const { return ___m_layoutAlreadyDirty_167; }
inline bool* get_address_of_m_layoutAlreadyDirty_167() { return &___m_layoutAlreadyDirty_167; }
inline void set_m_layoutAlreadyDirty_167(bool value)
{
___m_layoutAlreadyDirty_167 = value;
}
inline static int32_t get_offset_of_m_isAwake_168() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isAwake_168)); }
inline bool get_m_isAwake_168() const { return ___m_isAwake_168; }
inline bool* get_address_of_m_isAwake_168() { return &___m_isAwake_168; }
inline void set_m_isAwake_168(bool value)
{
___m_isAwake_168 = value;
}
inline static int32_t get_offset_of_m_isWaitingOnResourceLoad_169() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isWaitingOnResourceLoad_169)); }
inline bool get_m_isWaitingOnResourceLoad_169() const { return ___m_isWaitingOnResourceLoad_169; }
inline bool* get_address_of_m_isWaitingOnResourceLoad_169() { return &___m_isWaitingOnResourceLoad_169; }
inline void set_m_isWaitingOnResourceLoad_169(bool value)
{
___m_isWaitingOnResourceLoad_169 = value;
}
inline static int32_t get_offset_of_m_isInputParsingRequired_170() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isInputParsingRequired_170)); }
inline bool get_m_isInputParsingRequired_170() const { return ___m_isInputParsingRequired_170; }
inline bool* get_address_of_m_isInputParsingRequired_170() { return &___m_isInputParsingRequired_170; }
inline void set_m_isInputParsingRequired_170(bool value)
{
___m_isInputParsingRequired_170 = value;
}
inline static int32_t get_offset_of_m_inputSource_171() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_inputSource_171)); }
inline int32_t get_m_inputSource_171() const { return ___m_inputSource_171; }
inline int32_t* get_address_of_m_inputSource_171() { return &___m_inputSource_171; }
inline void set_m_inputSource_171(int32_t value)
{
___m_inputSource_171 = value;
}
inline static int32_t get_offset_of_old_text_172() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___old_text_172)); }
inline String_t* get_old_text_172() const { return ___old_text_172; }
inline String_t** get_address_of_old_text_172() { return &___old_text_172; }
inline void set_old_text_172(String_t* value)
{
___old_text_172 = value;
Il2CppCodeGenWriteBarrier((void**)(&___old_text_172), (void*)value);
}
inline static int32_t get_offset_of_m_fontScale_173() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontScale_173)); }
inline float get_m_fontScale_173() const { return ___m_fontScale_173; }
inline float* get_address_of_m_fontScale_173() { return &___m_fontScale_173; }
inline void set_m_fontScale_173(float value)
{
___m_fontScale_173 = value;
}
inline static int32_t get_offset_of_m_fontScaleMultiplier_174() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_fontScaleMultiplier_174)); }
inline float get_m_fontScaleMultiplier_174() const { return ___m_fontScaleMultiplier_174; }
inline float* get_address_of_m_fontScaleMultiplier_174() { return &___m_fontScaleMultiplier_174; }
inline void set_m_fontScaleMultiplier_174(float value)
{
___m_fontScaleMultiplier_174 = value;
}
inline static int32_t get_offset_of_m_htmlTag_175() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_htmlTag_175)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_htmlTag_175() const { return ___m_htmlTag_175; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_htmlTag_175() { return &___m_htmlTag_175; }
inline void set_m_htmlTag_175(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_htmlTag_175 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_htmlTag_175), (void*)value);
}
inline static int32_t get_offset_of_m_xmlAttribute_176() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_xmlAttribute_176)); }
inline RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652* get_m_xmlAttribute_176() const { return ___m_xmlAttribute_176; }
inline RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652** get_address_of_m_xmlAttribute_176() { return &___m_xmlAttribute_176; }
inline void set_m_xmlAttribute_176(RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652* value)
{
___m_xmlAttribute_176 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_xmlAttribute_176), (void*)value);
}
inline static int32_t get_offset_of_m_attributeParameterValues_177() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_attributeParameterValues_177)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_m_attributeParameterValues_177() const { return ___m_attributeParameterValues_177; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_m_attributeParameterValues_177() { return &___m_attributeParameterValues_177; }
inline void set_m_attributeParameterValues_177(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___m_attributeParameterValues_177 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_attributeParameterValues_177), (void*)value);
}
inline static int32_t get_offset_of_tag_LineIndent_178() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___tag_LineIndent_178)); }
inline float get_tag_LineIndent_178() const { return ___tag_LineIndent_178; }
inline float* get_address_of_tag_LineIndent_178() { return &___tag_LineIndent_178; }
inline void set_tag_LineIndent_178(float value)
{
___tag_LineIndent_178 = value;
}
inline static int32_t get_offset_of_tag_Indent_179() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___tag_Indent_179)); }
inline float get_tag_Indent_179() const { return ___tag_Indent_179; }
inline float* get_address_of_tag_Indent_179() { return &___tag_Indent_179; }
inline void set_tag_Indent_179(float value)
{
___tag_Indent_179 = value;
}
inline static int32_t get_offset_of_m_indentStack_180() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_indentStack_180)); }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 get_m_indentStack_180() const { return ___m_indentStack_180; }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 * get_address_of_m_indentStack_180() { return &___m_indentStack_180; }
inline void set_m_indentStack_180(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 value)
{
___m_indentStack_180 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_indentStack_180))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_tag_NoParsing_181() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___tag_NoParsing_181)); }
inline bool get_tag_NoParsing_181() const { return ___tag_NoParsing_181; }
inline bool* get_address_of_tag_NoParsing_181() { return &___tag_NoParsing_181; }
inline void set_tag_NoParsing_181(bool value)
{
___tag_NoParsing_181 = value;
}
inline static int32_t get_offset_of_m_isParsingText_182() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isParsingText_182)); }
inline bool get_m_isParsingText_182() const { return ___m_isParsingText_182; }
inline bool* get_address_of_m_isParsingText_182() { return &___m_isParsingText_182; }
inline void set_m_isParsingText_182(bool value)
{
___m_isParsingText_182 = value;
}
inline static int32_t get_offset_of_m_FXMatrix_183() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_FXMatrix_183)); }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA get_m_FXMatrix_183() const { return ___m_FXMatrix_183; }
inline Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA * get_address_of_m_FXMatrix_183() { return &___m_FXMatrix_183; }
inline void set_m_FXMatrix_183(Matrix4x4_t6BF60F70C9169DF14C9D2577672A44224B236ECA value)
{
___m_FXMatrix_183 = value;
}
inline static int32_t get_offset_of_m_isFXMatrixSet_184() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_isFXMatrixSet_184)); }
inline bool get_m_isFXMatrixSet_184() const { return ___m_isFXMatrixSet_184; }
inline bool* get_address_of_m_isFXMatrixSet_184() { return &___m_isFXMatrixSet_184; }
inline void set_m_isFXMatrixSet_184(bool value)
{
___m_isFXMatrixSet_184 = value;
}
inline static int32_t get_offset_of_m_TextParsingBuffer_185() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_TextParsingBuffer_185)); }
inline UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* get_m_TextParsingBuffer_185() const { return ___m_TextParsingBuffer_185; }
inline UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505** get_address_of_m_TextParsingBuffer_185() { return &___m_TextParsingBuffer_185; }
inline void set_m_TextParsingBuffer_185(UnicodeCharU5BU5D_t14B138F2B44C8EA3A5A5DB234E3739F385E55505* value)
{
___m_TextParsingBuffer_185 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_TextParsingBuffer_185), (void*)value);
}
inline static int32_t get_offset_of_m_internalCharacterInfo_186() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_internalCharacterInfo_186)); }
inline TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* get_m_internalCharacterInfo_186() const { return ___m_internalCharacterInfo_186; }
inline TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604** get_address_of_m_internalCharacterInfo_186() { return &___m_internalCharacterInfo_186; }
inline void set_m_internalCharacterInfo_186(TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604* value)
{
___m_internalCharacterInfo_186 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_internalCharacterInfo_186), (void*)value);
}
inline static int32_t get_offset_of_m_input_CharArray_187() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_input_CharArray_187)); }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_input_CharArray_187() const { return ___m_input_CharArray_187; }
inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_input_CharArray_187() { return &___m_input_CharArray_187; }
inline void set_m_input_CharArray_187(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value)
{
___m_input_CharArray_187 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_input_CharArray_187), (void*)value);
}
inline static int32_t get_offset_of_m_charArray_Length_188() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_charArray_Length_188)); }
inline int32_t get_m_charArray_Length_188() const { return ___m_charArray_Length_188; }
inline int32_t* get_address_of_m_charArray_Length_188() { return &___m_charArray_Length_188; }
inline void set_m_charArray_Length_188(int32_t value)
{
___m_charArray_Length_188 = value;
}
inline static int32_t get_offset_of_m_totalCharacterCount_189() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_totalCharacterCount_189)); }
inline int32_t get_m_totalCharacterCount_189() const { return ___m_totalCharacterCount_189; }
inline int32_t* get_address_of_m_totalCharacterCount_189() { return &___m_totalCharacterCount_189; }
inline void set_m_totalCharacterCount_189(int32_t value)
{
___m_totalCharacterCount_189 = value;
}
inline static int32_t get_offset_of_m_SavedWordWrapState_190() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_SavedWordWrapState_190)); }
inline WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557 get_m_SavedWordWrapState_190() const { return ___m_SavedWordWrapState_190; }
inline WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557 * get_address_of_m_SavedWordWrapState_190() { return &___m_SavedWordWrapState_190; }
inline void set_m_SavedWordWrapState_190(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557 value)
{
___m_SavedWordWrapState_190 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SavedWordWrapState_190))->___textInfo_27), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___colorStack_34))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___underlineColorStack_35))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___strikethroughColorStack_36))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___highlightColorStack_37))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___colorGradientStack_38))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___colorGradientStack_38))->___m_DefaultItem_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___sizeStack_39))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___indentStack_40))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___fontWeightStack_41))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___styleStack_42))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___baselineStack_43))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___actionStack_44))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___materialReferenceStack_45))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_SavedWordWrapState_190))->___materialReferenceStack_45))->___m_DefaultItem_3))->___fontAsset_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_SavedWordWrapState_190))->___materialReferenceStack_45))->___m_DefaultItem_3))->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_SavedWordWrapState_190))->___materialReferenceStack_45))->___m_DefaultItem_3))->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_SavedWordWrapState_190))->___materialReferenceStack_45))->___m_DefaultItem_3))->___fallbackMaterial_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedWordWrapState_190))->___lineJustificationStack_46))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SavedWordWrapState_190))->___currentFontAsset_48), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SavedWordWrapState_190))->___currentSpriteAsset_49), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SavedWordWrapState_190))->___currentMaterial_50), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_SavedLineState_191() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_SavedLineState_191)); }
inline WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557 get_m_SavedLineState_191() const { return ___m_SavedLineState_191; }
inline WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557 * get_address_of_m_SavedLineState_191() { return &___m_SavedLineState_191; }
inline void set_m_SavedLineState_191(WordWrapState_t415B8622774DD094A9CD7447D298B33B7365A557 value)
{
___m_SavedLineState_191 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SavedLineState_191))->___textInfo_27), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___colorStack_34))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___underlineColorStack_35))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___strikethroughColorStack_36))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___highlightColorStack_37))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___colorGradientStack_38))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___colorGradientStack_38))->___m_DefaultItem_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___sizeStack_39))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___indentStack_40))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___fontWeightStack_41))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___styleStack_42))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___baselineStack_43))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___actionStack_44))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___materialReferenceStack_45))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_SavedLineState_191))->___materialReferenceStack_45))->___m_DefaultItem_3))->___fontAsset_1), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_SavedLineState_191))->___materialReferenceStack_45))->___m_DefaultItem_3))->___spriteAsset_2), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_SavedLineState_191))->___materialReferenceStack_45))->___m_DefaultItem_3))->___material_3), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&((&(((&___m_SavedLineState_191))->___materialReferenceStack_45))->___m_DefaultItem_3))->___fallbackMaterial_6), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((&(((&___m_SavedLineState_191))->___lineJustificationStack_46))->___m_ItemStack_0), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SavedLineState_191))->___currentFontAsset_48), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SavedLineState_191))->___currentSpriteAsset_49), (void*)NULL);
#endif
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_SavedLineState_191))->___currentMaterial_50), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_characterCount_192() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_characterCount_192)); }
inline int32_t get_m_characterCount_192() const { return ___m_characterCount_192; }
inline int32_t* get_address_of_m_characterCount_192() { return &___m_characterCount_192; }
inline void set_m_characterCount_192(int32_t value)
{
___m_characterCount_192 = value;
}
inline static int32_t get_offset_of_m_firstCharacterOfLine_193() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_firstCharacterOfLine_193)); }
inline int32_t get_m_firstCharacterOfLine_193() const { return ___m_firstCharacterOfLine_193; }
inline int32_t* get_address_of_m_firstCharacterOfLine_193() { return &___m_firstCharacterOfLine_193; }
inline void set_m_firstCharacterOfLine_193(int32_t value)
{
___m_firstCharacterOfLine_193 = value;
}
inline static int32_t get_offset_of_m_firstVisibleCharacterOfLine_194() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_firstVisibleCharacterOfLine_194)); }
inline int32_t get_m_firstVisibleCharacterOfLine_194() const { return ___m_firstVisibleCharacterOfLine_194; }
inline int32_t* get_address_of_m_firstVisibleCharacterOfLine_194() { return &___m_firstVisibleCharacterOfLine_194; }
inline void set_m_firstVisibleCharacterOfLine_194(int32_t value)
{
___m_firstVisibleCharacterOfLine_194 = value;
}
inline static int32_t get_offset_of_m_lastCharacterOfLine_195() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lastCharacterOfLine_195)); }
inline int32_t get_m_lastCharacterOfLine_195() const { return ___m_lastCharacterOfLine_195; }
inline int32_t* get_address_of_m_lastCharacterOfLine_195() { return &___m_lastCharacterOfLine_195; }
inline void set_m_lastCharacterOfLine_195(int32_t value)
{
___m_lastCharacterOfLine_195 = value;
}
inline static int32_t get_offset_of_m_lastVisibleCharacterOfLine_196() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lastVisibleCharacterOfLine_196)); }
inline int32_t get_m_lastVisibleCharacterOfLine_196() const { return ___m_lastVisibleCharacterOfLine_196; }
inline int32_t* get_address_of_m_lastVisibleCharacterOfLine_196() { return &___m_lastVisibleCharacterOfLine_196; }
inline void set_m_lastVisibleCharacterOfLine_196(int32_t value)
{
___m_lastVisibleCharacterOfLine_196 = value;
}
inline static int32_t get_offset_of_m_lineNumber_197() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineNumber_197)); }
inline int32_t get_m_lineNumber_197() const { return ___m_lineNumber_197; }
inline int32_t* get_address_of_m_lineNumber_197() { return &___m_lineNumber_197; }
inline void set_m_lineNumber_197(int32_t value)
{
___m_lineNumber_197 = value;
}
inline static int32_t get_offset_of_m_lineVisibleCharacterCount_198() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineVisibleCharacterCount_198)); }
inline int32_t get_m_lineVisibleCharacterCount_198() const { return ___m_lineVisibleCharacterCount_198; }
inline int32_t* get_address_of_m_lineVisibleCharacterCount_198() { return &___m_lineVisibleCharacterCount_198; }
inline void set_m_lineVisibleCharacterCount_198(int32_t value)
{
___m_lineVisibleCharacterCount_198 = value;
}
inline static int32_t get_offset_of_m_pageNumber_199() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_pageNumber_199)); }
inline int32_t get_m_pageNumber_199() const { return ___m_pageNumber_199; }
inline int32_t* get_address_of_m_pageNumber_199() { return &___m_pageNumber_199; }
inline void set_m_pageNumber_199(int32_t value)
{
___m_pageNumber_199 = value;
}
inline static int32_t get_offset_of_m_maxAscender_200() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxAscender_200)); }
inline float get_m_maxAscender_200() const { return ___m_maxAscender_200; }
inline float* get_address_of_m_maxAscender_200() { return &___m_maxAscender_200; }
inline void set_m_maxAscender_200(float value)
{
___m_maxAscender_200 = value;
}
inline static int32_t get_offset_of_m_maxCapHeight_201() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxCapHeight_201)); }
inline float get_m_maxCapHeight_201() const { return ___m_maxCapHeight_201; }
inline float* get_address_of_m_maxCapHeight_201() { return &___m_maxCapHeight_201; }
inline void set_m_maxCapHeight_201(float value)
{
___m_maxCapHeight_201 = value;
}
inline static int32_t get_offset_of_m_maxDescender_202() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxDescender_202)); }
inline float get_m_maxDescender_202() const { return ___m_maxDescender_202; }
inline float* get_address_of_m_maxDescender_202() { return &___m_maxDescender_202; }
inline void set_m_maxDescender_202(float value)
{
___m_maxDescender_202 = value;
}
inline static int32_t get_offset_of_m_maxLineAscender_203() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxLineAscender_203)); }
inline float get_m_maxLineAscender_203() const { return ___m_maxLineAscender_203; }
inline float* get_address_of_m_maxLineAscender_203() { return &___m_maxLineAscender_203; }
inline void set_m_maxLineAscender_203(float value)
{
___m_maxLineAscender_203 = value;
}
inline static int32_t get_offset_of_m_maxLineDescender_204() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_maxLineDescender_204)); }
inline float get_m_maxLineDescender_204() const { return ___m_maxLineDescender_204; }
inline float* get_address_of_m_maxLineDescender_204() { return &___m_maxLineDescender_204; }
inline void set_m_maxLineDescender_204(float value)
{
___m_maxLineDescender_204 = value;
}
inline static int32_t get_offset_of_m_startOfLineAscender_205() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_startOfLineAscender_205)); }
inline float get_m_startOfLineAscender_205() const { return ___m_startOfLineAscender_205; }
inline float* get_address_of_m_startOfLineAscender_205() { return &___m_startOfLineAscender_205; }
inline void set_m_startOfLineAscender_205(float value)
{
___m_startOfLineAscender_205 = value;
}
inline static int32_t get_offset_of_m_lineOffset_206() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_lineOffset_206)); }
inline float get_m_lineOffset_206() const { return ___m_lineOffset_206; }
inline float* get_address_of_m_lineOffset_206() { return &___m_lineOffset_206; }
inline void set_m_lineOffset_206(float value)
{
___m_lineOffset_206 = value;
}
inline static int32_t get_offset_of_m_meshExtents_207() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_meshExtents_207)); }
inline Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 get_m_meshExtents_207() const { return ___m_meshExtents_207; }
inline Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 * get_address_of_m_meshExtents_207() { return &___m_meshExtents_207; }
inline void set_m_meshExtents_207(Extents_tB63A1FF929CAEBC8E097EF426A8B6F91442B0EA3 value)
{
___m_meshExtents_207 = value;
}
inline static int32_t get_offset_of_m_htmlColor_208() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_htmlColor_208)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_m_htmlColor_208() const { return ___m_htmlColor_208; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_m_htmlColor_208() { return &___m_htmlColor_208; }
inline void set_m_htmlColor_208(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___m_htmlColor_208 = value;
}
inline static int32_t get_offset_of_m_colorStack_209() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_colorStack_209)); }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 get_m_colorStack_209() const { return ___m_colorStack_209; }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 * get_address_of_m_colorStack_209() { return &___m_colorStack_209; }
inline void set_m_colorStack_209(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 value)
{
___m_colorStack_209 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_colorStack_209))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_underlineColorStack_210() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_underlineColorStack_210)); }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 get_m_underlineColorStack_210() const { return ___m_underlineColorStack_210; }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 * get_address_of_m_underlineColorStack_210() { return &___m_underlineColorStack_210; }
inline void set_m_underlineColorStack_210(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 value)
{
___m_underlineColorStack_210 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_underlineColorStack_210))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_strikethroughColorStack_211() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_strikethroughColorStack_211)); }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 get_m_strikethroughColorStack_211() const { return ___m_strikethroughColorStack_211; }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 * get_address_of_m_strikethroughColorStack_211() { return &___m_strikethroughColorStack_211; }
inline void set_m_strikethroughColorStack_211(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 value)
{
___m_strikethroughColorStack_211 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_strikethroughColorStack_211))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_highlightColorStack_212() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_highlightColorStack_212)); }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 get_m_highlightColorStack_212() const { return ___m_highlightColorStack_212; }
inline TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 * get_address_of_m_highlightColorStack_212() { return &___m_highlightColorStack_212; }
inline void set_m_highlightColorStack_212(TMP_RichTextTagStack_1_tDAE1C182F153530A3E6A3ADC1803919A380BCDF0 value)
{
___m_highlightColorStack_212 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_highlightColorStack_212))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_colorGradientPreset_213() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_colorGradientPreset_213)); }
inline TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * get_m_colorGradientPreset_213() const { return ___m_colorGradientPreset_213; }
inline TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 ** get_address_of_m_colorGradientPreset_213() { return &___m_colorGradientPreset_213; }
inline void set_m_colorGradientPreset_213(TMP_ColorGradient_tEA29C4736B1786301A803B6C0FB30107A10D79B7 * value)
{
___m_colorGradientPreset_213 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_colorGradientPreset_213), (void*)value);
}
inline static int32_t get_offset_of_m_colorGradientStack_214() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_colorGradientStack_214)); }
inline TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D get_m_colorGradientStack_214() const { return ___m_colorGradientStack_214; }
inline TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D * get_address_of_m_colorGradientStack_214() { return &___m_colorGradientStack_214; }
inline void set_m_colorGradientStack_214(TMP_RichTextTagStack_1_tF73231072FB2CD9EBFCAF3C4D7E41E2221B9ED1D value)
{
___m_colorGradientStack_214 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_colorGradientStack_214))->___m_ItemStack_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&(((&___m_colorGradientStack_214))->___m_DefaultItem_3), (void*)NULL);
#endif
}
inline static int32_t get_offset_of_m_tabSpacing_215() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_tabSpacing_215)); }
inline float get_m_tabSpacing_215() const { return ___m_tabSpacing_215; }
inline float* get_address_of_m_tabSpacing_215() { return &___m_tabSpacing_215; }
inline void set_m_tabSpacing_215(float value)
{
___m_tabSpacing_215 = value;
}
inline static int32_t get_offset_of_m_spacing_216() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_spacing_216)); }
inline float get_m_spacing_216() const { return ___m_spacing_216; }
inline float* get_address_of_m_spacing_216() { return &___m_spacing_216; }
inline void set_m_spacing_216(float value)
{
___m_spacing_216 = value;
}
inline static int32_t get_offset_of_m_styleStack_217() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_styleStack_217)); }
inline TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F get_m_styleStack_217() const { return ___m_styleStack_217; }
inline TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F * get_address_of_m_styleStack_217() { return &___m_styleStack_217; }
inline void set_m_styleStack_217(TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F value)
{
___m_styleStack_217 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_styleStack_217))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_actionStack_218() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_actionStack_218)); }
inline TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F get_m_actionStack_218() const { return ___m_actionStack_218; }
inline TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F * get_address_of_m_actionStack_218() { return &___m_actionStack_218; }
inline void set_m_actionStack_218(TMP_RichTextTagStack_1_t629E00E06021AA51A5AD8607BAFC61DB099F2D7F value)
{
___m_actionStack_218 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_actionStack_218))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_padding_219() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_padding_219)); }
inline float get_m_padding_219() const { return ___m_padding_219; }
inline float* get_address_of_m_padding_219() { return &___m_padding_219; }
inline void set_m_padding_219(float value)
{
___m_padding_219 = value;
}
inline static int32_t get_offset_of_m_baselineOffset_220() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_baselineOffset_220)); }
inline float get_m_baselineOffset_220() const { return ___m_baselineOffset_220; }
inline float* get_address_of_m_baselineOffset_220() { return &___m_baselineOffset_220; }
inline void set_m_baselineOffset_220(float value)
{
___m_baselineOffset_220 = value;
}
inline static int32_t get_offset_of_m_baselineOffsetStack_221() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_baselineOffsetStack_221)); }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 get_m_baselineOffsetStack_221() const { return ___m_baselineOffsetStack_221; }
inline TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 * get_address_of_m_baselineOffsetStack_221() { return &___m_baselineOffsetStack_221; }
inline void set_m_baselineOffsetStack_221(TMP_RichTextTagStack_1_t221674BAE112F99AB4BDB4D127F20A021FF50CA3 value)
{
___m_baselineOffsetStack_221 = value;
Il2CppCodeGenWriteBarrier((void**)&(((&___m_baselineOffsetStack_221))->___m_ItemStack_0), (void*)NULL);
}
inline static int32_t get_offset_of_m_xAdvance_222() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_xAdvance_222)); }
inline float get_m_xAdvance_222() const { return ___m_xAdvance_222; }
inline float* get_address_of_m_xAdvance_222() { return &___m_xAdvance_222; }
inline void set_m_xAdvance_222(float value)
{
___m_xAdvance_222 = value;
}
inline static int32_t get_offset_of_m_textElementType_223() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_textElementType_223)); }
inline int32_t get_m_textElementType_223() const { return ___m_textElementType_223; }
inline int32_t* get_address_of_m_textElementType_223() { return &___m_textElementType_223; }
inline void set_m_textElementType_223(int32_t value)
{
___m_textElementType_223 = value;
}
inline static int32_t get_offset_of_m_cached_TextElement_224() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_cached_TextElement_224)); }
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * get_m_cached_TextElement_224() const { return ___m_cached_TextElement_224; }
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 ** get_address_of_m_cached_TextElement_224() { return &___m_cached_TextElement_224; }
inline void set_m_cached_TextElement_224(TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * value)
{
___m_cached_TextElement_224 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cached_TextElement_224), (void*)value);
}
inline static int32_t get_offset_of_m_cached_Underline_Character_225() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_cached_Underline_Character_225)); }
inline TMP_Character_t1875AACA978396521498D6A699052C187903553D * get_m_cached_Underline_Character_225() const { return ___m_cached_Underline_Character_225; }
inline TMP_Character_t1875AACA978396521498D6A699052C187903553D ** get_address_of_m_cached_Underline_Character_225() { return &___m_cached_Underline_Character_225; }
inline void set_m_cached_Underline_Character_225(TMP_Character_t1875AACA978396521498D6A699052C187903553D * value)
{
___m_cached_Underline_Character_225 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cached_Underline_Character_225), (void*)value);
}
inline static int32_t get_offset_of_m_cached_Ellipsis_Character_226() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_cached_Ellipsis_Character_226)); }
inline TMP_Character_t1875AACA978396521498D6A699052C187903553D * get_m_cached_Ellipsis_Character_226() const { return ___m_cached_Ellipsis_Character_226; }
inline TMP_Character_t1875AACA978396521498D6A699052C187903553D ** get_address_of_m_cached_Ellipsis_Character_226() { return &___m_cached_Ellipsis_Character_226; }
inline void set_m_cached_Ellipsis_Character_226(TMP_Character_t1875AACA978396521498D6A699052C187903553D * value)
{
___m_cached_Ellipsis_Character_226 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_cached_Ellipsis_Character_226), (void*)value);
}
inline static int32_t get_offset_of_m_defaultSpriteAsset_227() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_defaultSpriteAsset_227)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_m_defaultSpriteAsset_227() const { return ___m_defaultSpriteAsset_227; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_m_defaultSpriteAsset_227() { return &___m_defaultSpriteAsset_227; }
inline void set_m_defaultSpriteAsset_227(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___m_defaultSpriteAsset_227 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_defaultSpriteAsset_227), (void*)value);
}
inline static int32_t get_offset_of_m_currentSpriteAsset_228() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_currentSpriteAsset_228)); }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * get_m_currentSpriteAsset_228() const { return ___m_currentSpriteAsset_228; }
inline TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 ** get_address_of_m_currentSpriteAsset_228() { return &___m_currentSpriteAsset_228; }
inline void set_m_currentSpriteAsset_228(TMP_SpriteAsset_tF896FFED2AA9395D6BC40FFEAC6DE7555A27A487 * value)
{
___m_currentSpriteAsset_228 = value;
Il2CppCodeGenWriteBarrier((void**)(&___m_currentSpriteAsset_228), (void*)value);
}
inline static int32_t get_offset_of_m_spriteCount_229() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_spriteCount_229)); }
inline int32_t get_m_spriteCount_229() const { return ___m_spriteCount_229; }
inline int32_t* get_address_of_m_spriteCount_229() { return &___m_spriteCount_229; }
inline void set_m_spriteCount_229(int32_t value)
{
___m_spriteCount_229 = value;
}
inline static int32_t get_offset_of_m_spriteIndex_230() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_spriteIndex_230)); }
inline int32_t get_m_spriteIndex_230() const { return ___m_spriteIndex_230; }
inline int32_t* get_address_of_m_spriteIndex_230() { return &___m_spriteIndex_230; }
inline void set_m_spriteIndex_230(int32_t value)
{
___m_spriteIndex_230 = value;
}
inline static int32_t get_offset_of_m_spriteAnimationID_231() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_spriteAnimationID_231)); }
inline int32_t get_m_spriteAnimationID_231() const { return ___m_spriteAnimationID_231; }
inline int32_t* get_address_of_m_spriteAnimationID_231() { return &___m_spriteAnimationID_231; }
inline void set_m_spriteAnimationID_231(int32_t value)
{
___m_spriteAnimationID_231 = value;
}
inline static int32_t get_offset_of_m_ignoreActiveState_232() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___m_ignoreActiveState_232)); }
inline bool get_m_ignoreActiveState_232() const { return ___m_ignoreActiveState_232; }
inline bool* get_address_of_m_ignoreActiveState_232() { return &___m_ignoreActiveState_232; }
inline void set_m_ignoreActiveState_232(bool value)
{
___m_ignoreActiveState_232 = value;
}
inline static int32_t get_offset_of_k_Power_233() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7, ___k_Power_233)); }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* get_k_Power_233() const { return ___k_Power_233; }
inline SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5** get_address_of_k_Power_233() { return &___k_Power_233; }
inline void set_k_Power_233(SingleU5BU5D_tA7139B7CAA40EAEF9178E2C386C8A5993754FDD5* value)
{
___k_Power_233 = value;
Il2CppCodeGenWriteBarrier((void**)(&___k_Power_233), (void*)value);
}
};
struct TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7_StaticFields
{
public:
// UnityEngine.Color32 TMPro.TMP_Text::s_colorWhite
Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 ___s_colorWhite_51;
// UnityEngine.Vector2 TMPro.TMP_Text::k_LargePositiveVector2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___k_LargePositiveVector2_234;
// UnityEngine.Vector2 TMPro.TMP_Text::k_LargeNegativeVector2
Vector2_tA85D2DD88578276CA8A8796756458277E72D073D ___k_LargeNegativeVector2_235;
// System.Single TMPro.TMP_Text::k_LargePositiveFloat
float ___k_LargePositiveFloat_236;
// System.Single TMPro.TMP_Text::k_LargeNegativeFloat
float ___k_LargeNegativeFloat_237;
// System.Int32 TMPro.TMP_Text::k_LargePositiveInt
int32_t ___k_LargePositiveInt_238;
// System.Int32 TMPro.TMP_Text::k_LargeNegativeInt
int32_t ___k_LargeNegativeInt_239;
public:
inline static int32_t get_offset_of_s_colorWhite_51() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7_StaticFields, ___s_colorWhite_51)); }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 get_s_colorWhite_51() const { return ___s_colorWhite_51; }
inline Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 * get_address_of_s_colorWhite_51() { return &___s_colorWhite_51; }
inline void set_s_colorWhite_51(Color32_t23ABC4AE0E0BDFD2E22EE1FA0DA3904FFE5F6E23 value)
{
___s_colorWhite_51 = value;
}
inline static int32_t get_offset_of_k_LargePositiveVector2_234() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7_StaticFields, ___k_LargePositiveVector2_234)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_k_LargePositiveVector2_234() const { return ___k_LargePositiveVector2_234; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_k_LargePositiveVector2_234() { return &___k_LargePositiveVector2_234; }
inline void set_k_LargePositiveVector2_234(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___k_LargePositiveVector2_234 = value;
}
inline static int32_t get_offset_of_k_LargeNegativeVector2_235() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7_StaticFields, ___k_LargeNegativeVector2_235)); }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D get_k_LargeNegativeVector2_235() const { return ___k_LargeNegativeVector2_235; }
inline Vector2_tA85D2DD88578276CA8A8796756458277E72D073D * get_address_of_k_LargeNegativeVector2_235() { return &___k_LargeNegativeVector2_235; }
inline void set_k_LargeNegativeVector2_235(Vector2_tA85D2DD88578276CA8A8796756458277E72D073D value)
{
___k_LargeNegativeVector2_235 = value;
}
inline static int32_t get_offset_of_k_LargePositiveFloat_236() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7_StaticFields, ___k_LargePositiveFloat_236)); }
inline float get_k_LargePositiveFloat_236() const { return ___k_LargePositiveFloat_236; }
inline float* get_address_of_k_LargePositiveFloat_236() { return &___k_LargePositiveFloat_236; }
inline void set_k_LargePositiveFloat_236(float value)
{
___k_LargePositiveFloat_236 = value;
}
inline static int32_t get_offset_of_k_LargeNegativeFloat_237() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7_StaticFields, ___k_LargeNegativeFloat_237)); }
inline float get_k_LargeNegativeFloat_237() const { return ___k_LargeNegativeFloat_237; }
inline float* get_address_of_k_LargeNegativeFloat_237() { return &___k_LargeNegativeFloat_237; }
inline void set_k_LargeNegativeFloat_237(float value)
{
___k_LargeNegativeFloat_237 = value;
}
inline static int32_t get_offset_of_k_LargePositiveInt_238() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7_StaticFields, ___k_LargePositiveInt_238)); }
inline int32_t get_k_LargePositiveInt_238() const { return ___k_LargePositiveInt_238; }
inline int32_t* get_address_of_k_LargePositiveInt_238() { return &___k_LargePositiveInt_238; }
inline void set_k_LargePositiveInt_238(int32_t value)
{
___k_LargePositiveInt_238 = value;
}
inline static int32_t get_offset_of_k_LargeNegativeInt_239() { return static_cast<int32_t>(offsetof(TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7_StaticFields, ___k_LargeNegativeInt_239)); }
inline int32_t get_k_LargeNegativeInt_239() const { return ___k_LargeNegativeInt_239; }
inline int32_t* get_address_of_k_LargeNegativeInt_239() { return &___k_LargeNegativeInt_239; }
inline void set_k_LargeNegativeInt_239(int32_t value)
{
___k_LargeNegativeInt_239 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// TMPro.TMP_TextElement[]
struct TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * m_Items[1];
public:
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 ** 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_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_TextElement_tB9A6A361BB93487BD07DDDA37A368819DA46C344 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.UInt32,TMPro.TMP_Character>[]
struct KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E m_Items[1];
public:
inline KeyValuePair_2_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E * 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_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E 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_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tE21FD97ECD62A9F0635C4A317A63AF577AE7F61E value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// TMPro.FontWeight[]
struct FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446 : 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;
}
};
// 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_SpriteCharacter[]
struct TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33 * m_Items[1];
public:
inline TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33 ** 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_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_SpriteCharacter_tDFDF0D32E583270A561804076B01146C324F4D33 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TMPro.TextAlignmentOptions[]
struct TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B : 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;
}
};
// 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;
}
};
// 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.Int64,TMPro.TMP_GlyphPairAdjustmentRecord>[]
struct EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t14172E9A589F7F341C82E6E381D5E68F939F44FD m_Items[1];
public:
inline Entry_t14172E9A589F7F341C82E6E381D5E68F939F44FD GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t14172E9A589F7F341C82E6E381D5E68F939F44FD * 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_t14172E9A589F7F341C82E6E381D5E68F939F44FD 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_t14172E9A589F7F341C82E6E381D5E68F939F44FD GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t14172E9A589F7F341C82E6E381D5E68F939F44FD * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t14172E9A589F7F341C82E6E381D5E68F939F44FD value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// TMPro.TMP_GlyphPairAdjustmentRecord[]
struct TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * m_Items[1];
public:
inline TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 ** 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_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_GlyphPairAdjustmentRecord_tEF0669284CC50EEFC3EE68A7BC378F285EAD7B76 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int64,TMPro.TMP_GlyphPairAdjustmentRecord>[]
struct KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7 m_Items[1];
public:
inline KeyValuePair_2_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7 * 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_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7 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_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t531476D3D5B7B4723782B2CDFF9BE591D0C884F7 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// 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;
}
};
// 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.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;
}
};
// 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);
}
};
// TMPro.TMP_SubMeshUI[]
struct TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1 * m_Items[1];
public:
inline TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1 ** 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_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_SubMeshUI_tA1CA59D5820CBD2494E1A1562E02FE4D4272A2A1 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TMPro.TMP_Dropdown_OptionData[]
struct OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164 : public RuntimeArray
{
public:
ALIGN_FIELD (8) OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B * m_Items[1];
public:
inline OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B ** 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, OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, OptionData_tBAA8999C3B22804F9D5DB0C31869E0AE696B185B * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TMPro.TMP_Dropdown_DropdownItem[]
struct DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD * m_Items[1];
public:
inline DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD ** 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, DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, DropdownItem_tF17064F58BBFAC30E4EE5C1E4F349E624CA855CD * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Texture2D[]
struct Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * m_Items[1];
public:
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** 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, Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Texture2D_tBBF96AC337723E2EF156DF17E09D4379FD05DE1C * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// UnityEngine.Texture[]
struct TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B : public RuntimeArray
{
public:
ALIGN_FIELD (8) Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * m_Items[1];
public:
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** 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, Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Texture_t387FE83BB848001FD06B14707AEA6D5A0F6A95F4 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// 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_Glyph[]
struct TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C * m_Items[1];
public:
inline TMP_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C ** 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_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_Glyph_tCAA5E0C262A3DAF50537C03D9EA90B51B05BA62C * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TMPro.TMP_TextElement_Legacy[]
struct TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05 * m_Items[1];
public:
inline TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05 ** 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_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_TextElement_Legacy_t020BAF673D3D29BC2682AEA5717411BFB13C6D05 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TMPro.KerningPair[]
struct KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA : public RuntimeArray
{
public:
ALIGN_FIELD (8) KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD * m_Items[1];
public:
inline KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD ** 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, KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KerningPair_t4FCF2540D9DBE27046ED4A8643B7AA644ED0DAAD * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TMPro.TMP_InputField_ContentType[]
struct ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410 : 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.Action`1<UnityEngine.Object>[]
struct Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * m_Items[1];
public:
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 ** 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, Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_1_t1396E141003E9015DB9EF1A05540693C7D2B4C78 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`1<UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>>[]
struct EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t5574962500A60239342400606E94D05F4CC73EBB m_Items[1];
public:
inline Entry_t5574962500A60239342400606E94D05F4CC73EBB GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t5574962500A60239342400606E94D05F4CC73EBB * 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_t5574962500A60239342400606E94D05F4CC73EBB 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_t5574962500A60239342400606E94D05F4CC73EBB GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t5574962500A60239342400606E94D05F4CC73EBB * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t5574962500A60239342400606E94D05F4CC73EBB 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.LinkedListNode`1<System.Action`1<UnityEngine.Object>>[]
struct LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * m_Items[1];
public:
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 ** 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, LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t7E53A0734A219CF76185FF9AD5775C4E71104430 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`1<UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>>[]
struct KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F m_Items[1];
public:
inline KeyValuePair_2_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F * 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_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F 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_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t217E74A89D506D2A4D5D9F90DE2F441CDB901D9F 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
}
};
// TMPro.TMP_MaterialManager_MaskingMaterial[]
struct MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733 : public RuntimeArray
{
public:
ALIGN_FIELD (8) MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B * m_Items[1];
public:
inline MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B ** 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, MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, MaskingMaterial_tD567961933B31276005075026B5BA552CF42F30B * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int64,TMPro.TMP_MaterialManager_FallbackMaterial>[]
struct EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8 m_Items[1];
public:
inline Entry_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8 * 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_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8 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_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t641F9B0AE84D5C132EDDF4358BF1CACAD0DA86E8 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// TMPro.TMP_MaterialManager_FallbackMaterial[]
struct FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * m_Items[1];
public:
inline FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A ** 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, FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, FallbackMaterial_t538C842FD3863FAF785036939034732F56B2473A * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int64,TMPro.TMP_MaterialManager_FallbackMaterial>[]
struct KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t997A949BD21D2B94D9A9593C9BA9A977D45340DF m_Items[1];
public:
inline KeyValuePair_2_t997A949BD21D2B94D9A9593C9BA9A977D45340DF GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t997A949BD21D2B94D9A9593C9BA9A977D45340DF * 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_t997A949BD21D2B94D9A9593C9BA9A977D45340DF 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_t997A949BD21D2B94D9A9593C9BA9A977D45340DF GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t997A949BD21D2B94D9A9593C9BA9A977D45340DF * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t997A949BD21D2B94D9A9593C9BA9A977D45340DF value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// 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.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.List`1<UnityEngine.UI.IMaterialModifier>[]
struct List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372 : public RuntimeArray
{
public:
ALIGN_FIELD (8) List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C * m_Items[1];
public:
inline List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C ** 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, List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, List_1_tC0EBD9B05DAE0FA88E6A0DBC608376C63C64595C * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// 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.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.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.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;
}
};
// TMPro.TMP_SpriteGlyph[]
struct TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B * m_Items[1];
public:
inline TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B ** 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_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_SpriteGlyph_t423E5984649351521A513FDF257D33C67116BF9B * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TMPro.TMP_Sprite[]
struct TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802 : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353 * m_Items[1];
public:
inline TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353 ** 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_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_Sprite_t8D26AE7781056AB44B074C80FFC74AFB076E1353 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// TMPro.TMP_Style[]
struct TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * m_Items[1];
public:
inline TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD ** 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_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_Style_t9FD01084B9E3F1D4B92E87114C454C98BA20FBAD * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Int32,TMPro.TMP_Style>[]
struct EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t6A2003C8C036420782DA8B92A453D6A2DA666D7B m_Items[1];
public:
inline Entry_t6A2003C8C036420782DA8B92A453D6A2DA666D7B GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t6A2003C8C036420782DA8B92A453D6A2DA666D7B * 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_t6A2003C8C036420782DA8B92A453D6A2DA666D7B 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_t6A2003C8C036420782DA8B92A453D6A2DA666D7B GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t6A2003C8C036420782DA8B92A453D6A2DA666D7B * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t6A2003C8C036420782DA8B92A453D6A2DA666D7B value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_3), (void*)NULL);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Int32,TMPro.TMP_Style>[]
struct KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC m_Items[1];
public:
inline KeyValuePair_2_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC * 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_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC 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_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t290AE1D52267F53ED316F1C6CDAD734D625AB2CC value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// 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.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_Text[]
struct TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F : public RuntimeArray
{
public:
ALIGN_FIELD (8) TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * m_Items[1];
public:
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** 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_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, TMP_Text_t7BA5B6522651EBED2D8E2C92CBE3F17C14075CE7 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>[]
struct Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * m_Items[1];
public:
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 ** 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, Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_2_tC76A961D8AF47527C3BA23361C3655F0B6083418 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>>[]
struct EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC m_Items[1];
public:
inline Entry_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC * 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_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC 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_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tE0A181E76CE43CEE4F9C4ABBDE44FAC1497019CC 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.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>[]
struct LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * m_Items[1];
public:
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 ** 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, LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_tE3FC50794B399C23FF3665CF94BE53FE08ACBF75 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>>[]
struct KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tB4446E2C7CFC86B6223F9114A5464047923924D6 m_Items[1];
public:
inline KeyValuePair_2_tB4446E2C7CFC86B6223F9114A5464047923924D6 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tB4446E2C7CFC86B6223F9114A5464047923924D6 * 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_tB4446E2C7CFC86B6223F9114A5464047923924D6 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_tB4446E2C7CFC86B6223F9114A5464047923924D6 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tB4446E2C7CFC86B6223F9114A5464047923924D6 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tB4446E2C7CFC86B6223F9114A5464047923924D6 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.Action`2<System.Boolean,System.Object>[]
struct Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * m_Items[1];
public:
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 ** 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, Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_2_t120E9FCFD798A09C812A90B9A6DC2897B6A0E048 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,System.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>>[]
struct EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tC9D72886F376EF3D1A6DE400B587F78E3070B343 m_Items[1];
public:
inline Entry_tC9D72886F376EF3D1A6DE400B587F78E3070B343 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tC9D72886F376EF3D1A6DE400B587F78E3070B343 * 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_tC9D72886F376EF3D1A6DE400B587F78E3070B343 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_tC9D72886F376EF3D1A6DE400B587F78E3070B343 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tC9D72886F376EF3D1A6DE400B587F78E3070B343 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tC9D72886F376EF3D1A6DE400B587F78E3070B343 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.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>[]
struct LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * m_Items[1];
public:
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C ** 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, LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t28C510289F4F9C5FF04E820F5031897F5907DB2C * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,System.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>>[]
struct KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9 m_Items[1];
public:
inline KeyValuePair_2_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9 * 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_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9 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_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tE3613F81A96DE31F6CFF3E9ECA7E2DA26A7738F9 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.Action`2<System.Boolean,UnityEngine.Material>[]
struct Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * m_Items[1];
public:
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E ** 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, Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_2_t3D6E581F6EFBE0EBA4F424D235AB41DAA2F3C49E * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>>[]
struct EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t825BD7658ABEC8CF3AF66279DDD4338087F15165 m_Items[1];
public:
inline Entry_t825BD7658ABEC8CF3AF66279DDD4338087F15165 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t825BD7658ABEC8CF3AF66279DDD4338087F15165 * 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_t825BD7658ABEC8CF3AF66279DDD4338087F15165 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_t825BD7658ABEC8CF3AF66279DDD4338087F15165 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t825BD7658ABEC8CF3AF66279DDD4338087F15165 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t825BD7658ABEC8CF3AF66279DDD4338087F15165 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.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>[]
struct LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * m_Items[1];
public:
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 ** 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, LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t78CD1E7C3560C723EDFA9F3D8A898AAF735B4357 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>>[]
struct KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t77B0F2DF0A9772B335725BC6855744AE5157CB40 m_Items[1];
public:
inline KeyValuePair_2_t77B0F2DF0A9772B335725BC6855744AE5157CB40 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t77B0F2DF0A9772B335725BC6855744AE5157CB40 * 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_t77B0F2DF0A9772B335725BC6855744AE5157CB40 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_t77B0F2DF0A9772B335725BC6855744AE5157CB40 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t77B0F2DF0A9772B335725BC6855744AE5157CB40 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t77B0F2DF0A9772B335725BC6855744AE5157CB40 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.Action`2<System.Boolean,TMPro.TMP_FontAsset>[]
struct Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * m_Items[1];
public:
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 ** 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, Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_2_t9E9CE1AF8E226D06C4DD19E75DA32B8785786612 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>>[]
struct EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980 m_Items[1];
public:
inline Entry_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980 * 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_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980 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_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t6DD3FC1484C5B4DCF5577E8DDC03E625E1054980 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.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>[]
struct LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * m_Items[1];
public:
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 ** 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, LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t83867F955C5AADCD91883F8C98D76FD61A6367C2 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>>[]
struct KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t3FD7FFA11641B37F1E69A7778826C9B2D0262956 m_Items[1];
public:
inline KeyValuePair_2_t3FD7FFA11641B37F1E69A7778826C9B2D0262956 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t3FD7FFA11641B37F1E69A7778826C9B2D0262956 * 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_t3FD7FFA11641B37F1E69A7778826C9B2D0262956 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_t3FD7FFA11641B37F1E69A7778826C9B2D0262956 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t3FD7FFA11641B37F1E69A7778826C9B2D0262956 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t3FD7FFA11641B37F1E69A7778826C9B2D0262956 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.Action`2<System.Boolean,UnityEngine.Object>[]
struct Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * m_Items[1];
public:
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 ** 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, Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_2_tBA1EA8F6215859FC4708A4F0570C85C3436BECE6 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>>[]
struct EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5 m_Items[1];
public:
inline Entry_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5 * 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_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5 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_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tC27AABC968E0E4C6BB778C627FDC3D62E925F5D5 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.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>[]
struct LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * m_Items[1];
public:
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 ** 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, LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t8BCAFD8EE029321FE96A11BA46DFC133C294F157 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>>[]
struct KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD m_Items[1];
public:
inline KeyValuePair_2_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD * 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_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD 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_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tAC0DF1A480BECC7E71AD5E6B472245C61E94FEAD 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.Action`2<System.Boolean,TMPro.TextMeshPro>[]
struct Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * m_Items[1];
public:
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 ** 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, Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_2_tB3151A952DADC30257DAEE668F8A7CBF8C001196 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TextMeshPro>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>>[]
struct EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tA820A14844832B082319ED6A0C140F1D289F3A9C m_Items[1];
public:
inline Entry_tA820A14844832B082319ED6A0C140F1D289F3A9C GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tA820A14844832B082319ED6A0C140F1D289F3A9C * 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_tA820A14844832B082319ED6A0C140F1D289F3A9C 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_tA820A14844832B082319ED6A0C140F1D289F3A9C GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tA820A14844832B082319ED6A0C140F1D289F3A9C * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tA820A14844832B082319ED6A0C140F1D289F3A9C 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.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>[]
struct LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * m_Items[1];
public:
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 ** 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, LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_tC5D1DB29DD9DA76469B1EE65D433A1D6098DCCD9 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TextMeshPro>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>>[]
struct KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711 m_Items[1];
public:
inline KeyValuePair_2_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711 * 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_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711 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_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tBEAA0F2192CD9625BE4D89F6587605D3D86FF711 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.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>[]
struct Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * m_Items[1];
public:
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A ** 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, Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_3_t4949DC665A88A609FA0962C97BA6B81BEF2C603A * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>>[]
struct EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6 m_Items[1];
public:
inline Entry_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6 * 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_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6 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_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_t00D79F355C6E36ADC3F024DE4CD23E1245A66BE6 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.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>[]
struct LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * m_Items[1];
public:
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 ** 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, LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t5FEE9B0BC246CA1FC1BD3A4E7A609043F7F37561 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>>[]
struct KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286 : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tE10D1BEC6098353060BCECC376C0791CDE82B260 m_Items[1];
public:
inline KeyValuePair_2_tE10D1BEC6098353060BCECC376C0791CDE82B260 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tE10D1BEC6098353060BCECC376C0791CDE82B260 * 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_tE10D1BEC6098353060BCECC376C0791CDE82B260 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_tE10D1BEC6098353060BCECC376C0791CDE82B260 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tE10D1BEC6098353060BCECC376C0791CDE82B260 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tE10D1BEC6098353060BCECC376C0791CDE82B260 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.Action`1<System.Boolean>[]
struct Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * m_Items[1];
public:
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** 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, Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_1_tAA0F894C98302D68F7D5034E8104E9AB4763CCAD * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`1<System.Boolean>,System.Collections.Generic.LinkedListNode`1<System.Action`1<System.Boolean>>>[]
struct EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F m_Items[1];
public:
inline Entry_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F * 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_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F 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_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tF53BC202E703CC6D6D6D6895B81B48EA564ABF6F 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.LinkedListNode`1<System.Action`1<System.Boolean>>[]
struct LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * m_Items[1];
public:
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E ** 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, LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t9CD31717A1EB91B61E1782312E40727C79309A8E * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`1<System.Boolean>,System.Collections.Generic.LinkedListNode`1<System.Action`1<System.Boolean>>>[]
struct KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_t2258B69C54E20433F1DC1AB644245A5C533C864F m_Items[1];
public:
inline KeyValuePair_2_t2258B69C54E20433F1DC1AB644245A5C533C864F GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_t2258B69C54E20433F1DC1AB644245A5C533C864F * 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_t2258B69C54E20433F1DC1AB644245A5C533C864F 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_t2258B69C54E20433F1DC1AB644245A5C533C864F GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_t2258B69C54E20433F1DC1AB644245A5C533C864F * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t2258B69C54E20433F1DC1AB644245A5C533C864F 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.Action`1<TMPro.TMP_ColorGradient>[]
struct Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * m_Items[1];
public:
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 ** 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, Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_1_t1B3CC8B0A6C54FB23ADC6DD4CE46D074E1F32230 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`1<TMPro.TMP_ColorGradient>,System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>>[]
struct EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF m_Items[1];
public:
inline Entry_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF * 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_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF 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_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tB277A7FDB66A424D7C35DE2082F96F814DD0B0FF 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.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>[]
struct LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * m_Items[1];
public:
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 ** 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, LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t172311B3264144EDCE08FB040D76B4D2260F97C7 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`1<TMPro.TMP_ColorGradient>,System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>>[]
struct KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tA10BD729F2B4090583BE227D36F1319B1FF329FE m_Items[1];
public:
inline KeyValuePair_2_tA10BD729F2B4090583BE227D36F1319B1FF329FE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tA10BD729F2B4090583BE227D36F1319B1FF329FE * 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_tA10BD729F2B4090583BE227D36F1319B1FF329FE 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_tA10BD729F2B4090583BE227D36F1319B1FF329FE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tA10BD729F2B4090583BE227D36F1319B1FF329FE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tA10BD729F2B4090583BE227D36F1319B1FF329FE 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.Action`2<System.Boolean,TMPro.TextMeshProUGUI>[]
struct Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * m_Items[1];
public:
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 ** 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, Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Action_2_t8774E6031A7152DE44265F3BC4C346364BAEC445 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>>[]
struct EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Entry_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0 m_Items[1];
public:
inline Entry_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Entry_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0 * 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_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0 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_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Entry_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Entry_tB71EEA4DCCB8EBEC25C905BAD2956ADA58F787A0 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.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>[]
struct LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882 : public RuntimeArray
{
public:
ALIGN_FIELD (8) LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * m_Items[1];
public:
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B ** 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, LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, LinkedListNode_1_t04860D52FFC4B07F50A9CA290CED0AFD78025C3B * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>>[]
struct KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F : public RuntimeArray
{
public:
ALIGN_FIELD (8) KeyValuePair_2_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15 m_Items[1];
public:
inline KeyValuePair_2_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline KeyValuePair_2_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15 * 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_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15 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_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline KeyValuePair_2_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tCBEEC45FA038E547DE094289C3D0B65AC52CCB15 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
}
};
// 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);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBuffer[]
struct GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C * m_Items[1];
public:
inline GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C ** 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, GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfBuffer_tCF2A96869BF83A228B7139920208DB8323C9C58C * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfChildOfRootProperty[]
struct GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E * m_Items[1];
public:
inline GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E ** 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, GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfChildOfRootProperty_tE63284586913D3C3253FB38A1E3BD86ECF22A20E * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfProperty[]
struct GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994 * m_Items[1];
public:
inline GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994 ** 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, GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfProperty_t23BF4BCCD7D014F7F8DF7BFAA2766CAABF470994 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView[]
struct GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 * m_Items[1];
public:
inline GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 ** 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, GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfBufferView_tC1A95FB4E16966E22568A770D67F121988F54A95 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTexture[]
struct GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351 * m_Items[1];
public:
inline GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351 ** 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, GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfTexture_t38E70670EA29F0B31DCE48308828528E7FC22351 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial[]
struct GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32 * m_Items[1];
public:
inline GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32 ** 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, GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfMaterial_t3C2F17B4B3555790C4BB85FA806CBDA30B77CB32 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfScene[]
struct GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46 * m_Items[1];
public:
inline GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46 ** 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, GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfScene_tD9831A4C795507EC807CE4B8EB476989790D1A46 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfImage[]
struct GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239 * m_Items[1];
public:
inline GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239 ** 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, GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfImage_t086EF2FE3DED062ADC3E5A05231AB2075A279239 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode[]
struct GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9 * m_Items[1];
public:
inline GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9 ** 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, GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfNode_t9D34DC544A7ACA4C508141D16D94EF242CE201B9 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMesh[]
struct GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD * m_Items[1];
public:
inline GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD ** 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, GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfMesh_tCF6F86BB490A5E2DA90B419A5F27DCE254DBCEBD * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive[]
struct GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF * m_Items[1];
public:
inline GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF ** 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, GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfMeshPrimitive_tD36C24179EC371AE9CB019451C85CB851B4E34CF * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor[]
struct GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB * m_Items[1];
public:
inline GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB ** 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, GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfAccessor_t5BC5EC313DCE53680E8EDC8ADBE7A49CAFA864FB * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannel[]
struct GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF * m_Items[1];
public:
inline GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF ** 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, GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfAnimationChannel_t3139E1DC352349C11FA09A2E3F90DF86230334CF * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler[]
struct GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9 * m_Items[1];
public:
inline GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9 ** 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, GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfAnimationSampler_t3151295A08B5F218799C40253B8803400D7BB0A9 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Collections.Generic.IDictionary`2<System.String,System.Int32>[]
struct IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4 : 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.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.Int32>>[]
struct IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00 : 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.Collections.Generic.IReadOnlyDictionary`2<System.String,System.Int32>[]
struct IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F : 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.Collections.Generic.Dictionary`2<System.String,System.Int32>[]
struct Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * m_Items[1];
public:
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** 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, Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Dictionary_2_tD6E204872BA9FD506A0287EF68E285BEB9EC0DFB * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.Extensions.GltfExtension[]
struct GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082 * m_Items[1];
public:
inline GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082 ** 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, GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfExtension_t55221D9B11384E0DDBC8FF22D2F6FDCB50463082 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimation[]
struct GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C * m_Items[1];
public:
inline GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C ** 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, GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfAnimation_tF3755AE53235C73F13AADE7976DAF22CD4BE0D3C * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCamera[]
struct GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84 * m_Items[1];
public:
inline GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84 ** 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, GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfCamera_tC61742BEEF7599C1350A957D49791C7D4E0BDD84 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSampler[]
struct GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F * m_Items[1];
public:
inline GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F ** 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, GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfSampler_t666ECE5061DAAA56BF9B3A5D95D8D6C269D5E91F * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSkin[]
struct GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778 : public RuntimeArray
{
public:
ALIGN_FIELD (8) GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039 * m_Items[1];
public:
inline GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039 ** 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, GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, GltfSkin_t848AECF2D3C22A7C25D1C2D2806B40942F35C039 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode[]
struct ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9 : public RuntimeArray
{
public:
ALIGN_FIELD (8) ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 m_Items[1];
public:
inline ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 * 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, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Transform_3), (void*)NULL);
#endif
}
inline ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, ObjectCollectionNode_t826AC33CFBA42D5D51D2DE3106A7B68E250BC425 value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Name_0), (void*)NULL);
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Transform_3), (void*)NULL);
#endif
}
};
// Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver[]
struct SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 * m_Items[1];
public:
inline Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 ** 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, Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Solver_t79AE87802ED7C51B02E35D03DF67E057377E1011 * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
// System.Linq.Set`1_Slot<Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver>[]
struct SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461 : public RuntimeArray
{
public:
ALIGN_FIELD (8) Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE m_Items[1];
public:
inline Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE * 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_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE 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 Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE * GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_tA8DF33834AECEB1A10B3D0A9D6CCB567B0AB43EE value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value_1), (void*)NULL);
}
};
// Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer[]
struct BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822 : public RuntimeArray
{
public:
ALIGN_FIELD (8) BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA * m_Items[1];
public:
inline BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA * GetAt(il2cpp_array_size_t index) const
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
return m_Items[index];
}
inline BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA ** 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, BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA * value)
{
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
inline BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA * GetAtUnchecked(il2cpp_array_size_t index) const
{
return m_Items[index];
}
inline BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA ** GetAddressAtUnchecked(il2cpp_array_size_t index)
{
return m_Items + index;
}
inline void SetAtUnchecked(il2cpp_array_size_t index, BaseMixedRealityLineRenderer_tB8BED16FAC047C462B580C8B5532155CF07728FA * value)
{
m_Items[index] = value;
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
}
};
il2cpp_hresult_t IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue);
il2cpp_hresult_t IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable** comReturnValue);
il2cpp_hresult_t IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue);
il2cpp_hresult_t IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable* ___value1);
il2cpp_hresult_t IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, Il2CppIInspectable* ___value1);
il2cpp_hresult_t IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(RuntimeObject* __this, Il2CppIInspectable* ___value0);
il2cpp_hresult_t IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetAt_m7A9C441F6C1AEAD6A647D771817D1308620892DA_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_mF150FBF57131995C1FB1A7B4FF32A4CE095F0873_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m136214CB8B2C6EBFF5978ABC590B0572D4123EC5_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_m7365E2E9A71CD5ED82B593AC0B78A404C5C10E16_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_mE1091FDB971F5780441983F2B681A0234453D47E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_mBD0C69F769AB53528B75B77E5B1DC3B3CE55DD00_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m6A0085CBD24C43212CD179B84407CE9255C64060_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m3E2306A844701BA6A738CFB6C827B2A0C8B873DC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_mF6F1C44F3041340CC38F809E65BE30CC21BF415A_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_mFE64D145A7F104F28009D2741EE7B966B1F9018B_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m03F4B42C5D0BFD65B0777102C7EDBAF0402867BD_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_mAE3A6915099547E5F9F598F75A68A3CD9D0DFCA4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items0);
il2cpp_hresult_t IIterable_1_First_mBC32CD4C8964F603FD9A374B58ECCEEFCAA800D7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tA18FBA1CD465AAA76C95772D67FAF9CDBC95C502** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mF0449D9643B936DC2F20C0C056EF4BE608D782F8_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_mBC27038DCAA9396D445FF20C47112FFE5746DE91_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m8B32E36733280AC6C725BC9CB1C49084F49FDDFE_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_mE2B9B0623223455A7E2F45167AF4B87B76CBD0DB_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_m5A71C605D15BB27A6DD273F9C9ABBEAA56FBE410_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_m5C16CFCF09EE73A8BD19A167C9CDC5FB52156D1E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m1A29E1210D75BAA6CEFD4CD0BB3D37450ABE7746_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_mDF30199DAC11B43CB70585DFA9BC508CD3302085_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_mB5A94A3DD4A36077A3FFF3E9503A4A619FF81D64_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m9DE55A2993614CF981FE72AB21AFAC7C976E77F5_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_mFF953B60CB93755AA28ABA8578AC887EF9D7264E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m9B5C5E7142591563B7EC00BD4DB790195ED98DF0_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_m025700A6EA23262E0D154632681C033BF9902377_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m7B6B7C0544A8EC3621F5E2423CEA4E8D71A25E10_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m53AB2BE76719C907B0C0C5EE7D3201236C658A20_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m14A39E5F76678B22253AF786B843C9B31F88D37E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items0);
il2cpp_hresult_t IIterable_1_First_m2090DC2A52EB0E0DA160B5948057BAA08C53D059_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tC21C0C229C51E51366BD9C6177D6DE5E665F4528** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m7F9C05C45D8C567EC4099DF583F4A6E8CD86D12D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m6E76252ECE84F84C5F4A77179B5F4CC68DE35CCA_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mB9BCA0F576465D9B9B8098C3C972A25B15524072_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m9B956879B736A796B0C0CAA8A0F80D0D1780DFB4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue);
il2cpp_hresult_t IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mAB5FBF2E11782C3284709DBFA4DE5F15F3819B10_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_mBB2E069A39C95E9B799DF56A687C3378593D6DE8_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mE04A0DB765A4541758E866B3039F1064401BE09B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m7A30B074D4DE286EDF193293E625DF60ECDBB23A_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_m2486A9307168F5D3CE716330582CCF5BB135BD81_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_m1BCE16F2A484956260C9584E41FA4BC0E8DC80A3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_mBB033FC008791398C6E9AB55471E7C621DC92CBC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_mDF0877071FEAE6AE0EA1FA853C85B60652879BE8_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_m0A5F2477DE2EB926395635E425072D0C469BD284_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m8334ECA63ECB13E38B4CA3C37C63835F3B288846_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m8F41DFDFF9B59C53E797ECAF11D11ACD6D16E854_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m43345039A1B9425D3F65C8971F1BDF337ECCC33B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_mB71F299CDFFF86A7AB16714298BD90D3D5F5D92B_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_mF8D8009BE5DC9FF06330E2259DE72513906D11C5_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m6715134E91BC5DEEAEDD7820C51798E81BFBFD9C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_mCB8194A732EC9C15B2EE833A0C358D628EB5DD7D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items0);
il2cpp_hresult_t IIterable_1_First_m79FA09D492F7E69B65C0D1FAD02E717367ADC3C5_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t0E6F22317D9596D056B240E4199E3D6355969033** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mA082E4211BB8C7F328C4677A3C15294D993A1766_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_mE2693CC0DB1C233D7B32B4120756C7BAC5A5393B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m0294393BF92FDC8F4055D3C7BE64D476CBF27FE8_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_mF673145E72CEF26271036CFD660BCD4E0448C181_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_m864E1F76F7DA89477BE32314EC3CCBB0A4344FDF_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_mBB3E5FD0749BDDB6C162B67A15D73B0A533A790B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m05B789234A8EA05DB558B2A1619E1E751D25945B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_mF65260BAFC461864D5865DFC2C1F3D0C7B15B6F3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_mFF26B34C48F8B9DD82CE80DFC403A9F92CEB6B9F_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m2DE28DE6650F6104AB00371F420CA3137B3828A1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_mF4ED04EC7B85CED6A472598AF504C31CC5D080BB_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_m1AAE2EE82179200D40A4A880D33E5CEA39106D58_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_m88A5B10665C1A2CDF2F7B6830F790220C7450D76_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m656EC9D419A9F78D4171DFA1E768244F6470E893_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_mF50236F3730F539ED6572C4608E194A6D46D07BA_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m75766F30B392529DB13064E6900A86019C04D5BF_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items0);
il2cpp_hresult_t IIterable_1_First_mEEE9BF41BE6E8A37A93466953A50CDB3FEE2B629_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t1E62E2DEF0FE28A782869A9D8BFBFABC13FF40BE** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m84615D624AB936B1192752BE26AD1F49BB20570E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m3DA84BA01F84E4B7EB7072B6C86BD2C1BC69D93F_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m6D53723DC673E423207849E506E2B3EAD4B5BE5E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m5776A380043ABC53F1DC7CE89D8249FFB0DB9D64_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_m5F2247992C0779BECC7A0D7DB4C2BA654FC95EED_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_m140C56EB0E35CEE277FB2DBDEDF56EDCEE1E9ED6_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_mECB0A6BFA617F86CA7F1D5238FE0054B8897A199_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_m93E76CA4FD15D8C486AED2F0756A95CD2860C1A9_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_mF5C8F28E4981136DC3BBE917C30502611D9D29C9_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_mFD33C7E0E2C7D4E95587535210C5AA67EBE08A4A_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m8F40FBC4028BDE47B0BA939B0DE606D0D80154BB_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_mCC6FEF797185358E3451A971405AB1594054ED1C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_mE60706CFAC5A64B81B93F80A33DFB33C5150B17C_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_mB621150E7A2D410A640DF7707819F6BAAC573D4C_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_mEB7AD40B0651AD0F0CD0F8BDC5383E312D6AEF85_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m5568D0FAEAE242880BDFF5A0AA02ADAFD1910938_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items0);
il2cpp_hresult_t IIterable_1_First_m33A198A26E2F69AB15F7E09DB58544E4EC7A1F96_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_t45EAFE89B17CEF26FE791FE11C8ACC9F5FCB94F9** comReturnValue);
il2cpp_hresult_t IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tE640F040C3947F6065F4AE8D02A7C78D21838D6D** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m10D366416EDD66C0DD879B19FB5224F452326301_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_mCFA60797F45CFC2B8248EF8E6661F7D5E52EF27C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m384FC994B72BE6A9B6744B51C092A4E723788E25_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_m063A74F80E6FFFB816ABE2C519B6FFC1118B405D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetAt_m1789E9E2AB11AC78F92E9B3652E3523B176A4556_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_m90290FF201B1FF72010158DCAA058C0F74A9A7B7_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_mB21E2DCB1A2CE29F582BA4622895AD2906FD6533_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_m61348F21553FEE98D456B8E75099587EB858D4DF_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_m64FFC36ED11C505A10C72E5BB809323866100533_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_m580552E47E142F6CB6C945024B7922817E2E3A36_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m6AAE187CFBB635DCF7220FBBC7DC8CE9DA4FF94E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_mAB0A0B93A867691BA33A86789FE42AF2F9ACF073_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_m9A6CB8A750E836FC0D3FE6E73127784AA6D68C36_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m95C2489858F5E560A30C66FA9BD2808626ED549A_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_m425106B4EB4B593ECEA7DFC0EB7AC1004C53274E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_mDBE0F9128E978EB063674DAC16DE4D90A0FB1E0E_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items0);
il2cpp_hresult_t IVector_1_GetAt_mA233F9C16CCFBD83381AF694E971369407751F66_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** comReturnValue);
il2cpp_hresult_t IVector_1_get_Size_m523736EA1CAFD756D3A464103C44B95281CDC6C4_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_GetView_m9AF06ECFDE66E7CCD018432D8B0600946B5CFE31_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E** comReturnValue);
il2cpp_hresult_t IVector_1_IndexOf_m227F18F4334CF3A4FDDF5B55CF5CB05172EE379C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVector_1_SetAt_m880B990C26BB46E24CF9BEF93CF19902CD7147A3_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value1);
il2cpp_hresult_t IVector_1_InsertAt_mB3ECC8E27E6B4AEDF9B535BB3C98C729E95F6CA9_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value1);
il2cpp_hresult_t IVector_1_RemoveAt_m4B2BB7E875F6CA1A3422A7A1A71D500AAD47119D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0);
il2cpp_hresult_t IVector_1_Append_mC1AE32A36FA72DF9274C33B3008F1BE55BD3CF0C_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0);
il2cpp_hresult_t IVector_1_RemoveAtEnd_m192F80E547EC6A43640D712AC47338C9F1608BAE_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_Clear_m3C66A0AC585BDB14889631A18494806F5D358424_ComCallableWrapperProjectedMethod(RuntimeObject* __this);
il2cpp_hresult_t IVector_1_GetMany_mF221BB31F435A34F86C0B6C9F908FFBA0AEBD53D_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items1, uint32_t* comReturnValue);
il2cpp_hresult_t IVector_1_ReplaceAll_m3C4ECC99DF1975301571BD4709A0F12515FE0FB1_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___items0ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items0);
il2cpp_hresult_t IIterable_1_First_m44A14B4C6CD9C14BD291722E30B5058C9323413A_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IIterator_1_tC25A5C49191781F5B26240C13028A8D268E9344F** comReturnValue);
il2cpp_hresult_t IVectorView_1_GetAt_m72512CEF306512E4B36CA37279EE3D27D7BC986B_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** comReturnValue);
il2cpp_hresult_t IVectorView_1_get_Size_m5E80095A44374A1C657C9C4C0434853C80A2DC99_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t* comReturnValue);
il2cpp_hresult_t IVectorView_1_IndexOf_m45A3AB5D4B2F9F9CB3EE97E9B3F96E7F348837DC_ComCallableWrapperProjectedMethod(RuntimeObject* __this, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0, uint32_t* ___index1, bool* comReturnValue);
il2cpp_hresult_t IVectorView_1_GetMany_mD91FF5BE14F23E774420CA3130D06FF7A50C5F87_ComCallableWrapperProjectedMethod(RuntimeObject* __this, uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items1, uint32_t* comReturnValue);
// COM Callable Wrapper for TMPro.TMP_TextElement[]
struct TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_TextElementU5BU5D_tAD46648FBB9A536E010BFCBF73D33BC5D373EDC2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.UInt32,TMPro.TMP_Character>[]
struct KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t9BB9963340DC00D2E0AC555EF5497297F4AE1D85_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.FontWeight[]
struct FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) FontWeightU5BU5D_t7A186E8DAEB072A355A6CCC80B3FFD219E538446_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_CharacterInfo[]
struct TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_CharacterInfoU5BU5D_t415BD08A7E8A8C311B1F7BD9C3AC60BF99339604_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_SpriteCharacter[]
struct TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_SpriteCharacterU5BU5D_t2D7D0BC8ECE589AFDF3BF0181BBA7A8071742233_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TextAlignmentOptions[]
struct TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TextAlignmentOptionsU5BU5D_t4AE8FA5E3D695ED64EBBCFBAF8C780A0EB0BD33B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_PageInfo[]
struct TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_PageInfoU5BU5D_tFB7F7AD2CD9ADBE07099C1A06170B51AA8D9D847_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Int64,System.Object>[]
struct EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_tC540282F63C6783AA2292C4D513F7F3A5F97C8F3_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Int64,TMPro.TMP_GlyphPairAdjustmentRecord>[]
struct EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_tF608AA0B6D63A7FEC1EEBB20F3269FD5D0CFDAE5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_GlyphPairAdjustmentRecord[]
struct TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_GlyphPairAdjustmentRecordU5BU5D_t7E014EE6F45BEA118255ADC6EA9310E68C35D664_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Int64,TMPro.TMP_GlyphPairAdjustmentRecord>[]
struct KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t5F9EB2D3091CF53D4F0AD3CE85BE3624FB19785C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_LineInfo[]
struct TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_LineInfoU5BU5D_t3D5D11E746B537C3951927E490B7A1BAB9C23A5C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Int32,System.Char>[]
struct KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417_ComCallableWrapper>, IVector_1_t1B8539845AD92CBB57A3E29E392042FA21531095, IIterable_1_tA849C640DBE7AEFEC674C6E2D28D5B2C412F4FEA, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVector_1_t1B8539845AD92CBB57A3E29E392042FA21531095::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t1B8539845AD92CBB57A3E29E392042FA21531095*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tA849C640DBE7AEFEC674C6E2D28D5B2C412F4FEA::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tA849C640DBE7AEFEC674C6E2D28D5B2C412F4FEA*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(5);
interfaceIds[0] = IVector_1_t1B8539845AD92CBB57A3E29E392042FA21531095::IID;
interfaceIds[1] = IIterable_1_tA849C640DBE7AEFEC674C6E2D28D5B2C412F4FEA::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007::IID;
interfaceIds[4] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 5;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m7A9C441F6C1AEAD6A647D771817D1308620892DA(uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m7A9C441F6C1AEAD6A647D771817D1308620892DA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mF150FBF57131995C1FB1A7B4FF32A4CE095F0873(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_mF150FBF57131995C1FB1A7B4FF32A4CE095F0873_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m136214CB8B2C6EBFF5978ABC590B0572D4123EC5(IVectorView_1_t062CB2262B4D77E9806AFF4CF0FD83C5FFFD5007** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m136214CB8B2C6EBFF5978ABC590B0572D4123EC5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m7365E2E9A71CD5ED82B593AC0B78A404C5C10E16(IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_m7365E2E9A71CD5ED82B593AC0B78A404C5C10E16_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mE1091FDB971F5780441983F2B681A0234453D47E(uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_mE1091FDB971F5780441983F2B681A0234453D47E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_mBD0C69F769AB53528B75B77E5B1DC3B3CE55DD00(uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_mBD0C69F769AB53528B75B77E5B1DC3B3CE55DD00_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m6A0085CBD24C43212CD179B84407CE9255C64060(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m6A0085CBD24C43212CD179B84407CE9255C64060_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m3E2306A844701BA6A738CFB6C827B2A0C8B873DC(IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m3E2306A844701BA6A738CFB6C827B2A0C8B873DC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mF6F1C44F3041340CC38F809E65BE30CC21BF415A() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_mF6F1C44F3041340CC38F809E65BE30CC21BF415A_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mFE64D145A7F104F28009D2741EE7B966B1F9018B() IL2CPP_OVERRIDE
{
return IVector_1_Clear_mFE64D145A7F104F28009D2741EE7B966B1F9018B_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m03F4B42C5D0BFD65B0777102C7EDBAF0402867BD(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m03F4B42C5D0BFD65B0777102C7EDBAF0402867BD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mAE3A6915099547E5F9F598F75A68A3CD9D0DFCA4(uint32_t ___items0ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_mAE3A6915099547E5F9F598F75A68A3CD9D0DFCA4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mBC32CD4C8964F603FD9A374B58ECCEEFCAA800D7(IIterator_1_tA18FBA1CD465AAA76C95772D67FAF9CDBC95C502** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mBC32CD4C8964F603FD9A374B58ECCEEFCAA800D7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mF0449D9643B936DC2F20C0C056EF4BE608D782F8(uint32_t ___index0, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mF0449D9643B936DC2F20C0C056EF4BE608D782F8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mBC27038DCAA9396D445FF20C47112FFE5746DE91(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mBC27038DCAA9396D445FF20C47112FFE5746DE91_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m8B32E36733280AC6C725BC9CB1C49084F49FDDFE(IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m8B32E36733280AC6C725BC9CB1C49084F49FDDFE_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mE2B9B0623223455A7E2F45167AF4B87B76CBD0DB(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_tE934865E70448F4C99B4F5038D417AC41D6433CF** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mE2B9B0623223455A7E2F45167AF4B87B76CBD0DB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t2821132F356BE4A4C9DA5BA34C0A364675D53417_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Char>[]
struct EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_tBB671B141C52D97EC4A1BD11AB46210C1C7292B1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_WordInfo[]
struct TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_WordInfoU5BU5D_t2C9C805935A8C8FFD43BF92C96AC70737AA52F09_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_SubMeshUI[]
struct TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_SubMeshUIU5BU5D_tB20103A3891C74028E821AA6857CD89D59C9A87E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_Dropdown_OptionData[]
struct OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) OptionDataU5BU5D_tDBDB9DF1FA3F173F0D904D7EF0AE1BDE36BD2164_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_Dropdown_DropdownItem[]
struct DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) DropdownItemU5BU5D_t511BB62A40298AD9BA6B0292DE4276F752CCD7F7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for UnityEngine.Texture2D[]
struct Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Texture2DU5BU5D_tCAC03055C735C020BAFC218D55183CF03E74C1C9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for UnityEngine.Texture[]
struct TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TextureU5BU5D_t369245C4C7FE47127D6B8986B5F6000C3EE4554B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_FontWeightPair[]
struct TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_FontWeightPairU5BU5D_tD4C8F5F8465CC6A30370C93F43B43BE3147DA68D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_Glyph[]
struct TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_GlyphU5BU5D_tCDCDA1D8B2ADE376EEFC4E404B40B965BE4D9D56_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_TextElement_Legacy[]
struct TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_TextElement_LegacyU5BU5D_t7137DDD0F17AA48872AED6D749193F6866582238_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.KerningPair[]
struct KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KerningPairU5BU5D_t0D745FCE92600E8E92095E9685774E7F7F6136FA_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_InputField_ContentType[]
struct ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ContentTypeU5BU5D_tEA6A5619198A71A049D4FF11E2F38E1C543E0410_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`1<UnityEngine.Object>[]
struct Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_1U5BU5D_t08B2CC286C963116DF87490FDA43A37745987982_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`1<UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>>[]
struct EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t2F5B5D082E0ADFFFEABD5421A5AE0F0B96ED9001_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>[]
struct LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_tFCCE32FCDE42E5F038C6BC8F80FEB1899D132423_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`1<UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`1<UnityEngine.Object>>>[]
struct KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t10C5F3E33485CE569ECB877B66A83551F28F8A3D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_MaterialManager_MaskingMaterial[]
struct MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) MaskingMaterialU5BU5D_t87C1E14485A7CE1983D1E5D25DAFCB2896DDD733_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Int64,TMPro.TMP_MaterialManager_FallbackMaterial>[]
struct EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t515A71AEDB5447A819EC67D7985118AD81FE51E7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_MaterialManager_FallbackMaterial[]
struct FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) FallbackMaterialU5BU5D_t2326B017A9411B76726BABB5386F1CB93DD05CF8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Int64,TMPro.TMP_MaterialManager_FallbackMaterial>[]
struct KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t9ACC56CFFC20375475165802F207A3A777806CF6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Int32,System.Int64>[]
struct KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291_ComCallableWrapper>, IVector_1_t806896487A50CE6664FFD09D430E2D547D1E064C, IIterable_1_t17281DA719C7AD32FA6E2386FCC7EE497E50701B, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVector_1_t806896487A50CE6664FFD09D430E2D547D1E064C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t806896487A50CE6664FFD09D430E2D547D1E064C*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t17281DA719C7AD32FA6E2386FCC7EE497E50701B::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t17281DA719C7AD32FA6E2386FCC7EE497E50701B*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(5);
interfaceIds[0] = IVector_1_t806896487A50CE6664FFD09D430E2D547D1E064C::IID;
interfaceIds[1] = IIterable_1_t17281DA719C7AD32FA6E2386FCC7EE497E50701B::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF::IID;
interfaceIds[4] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 5;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m5A71C605D15BB27A6DD273F9C9ABBEAA56FBE410(uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m5A71C605D15BB27A6DD273F9C9ABBEAA56FBE410_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m5C16CFCF09EE73A8BD19A167C9CDC5FB52156D1E(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_m5C16CFCF09EE73A8BD19A167C9CDC5FB52156D1E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m1A29E1210D75BAA6CEFD4CD0BB3D37450ABE7746(IVectorView_1_tADBC04A8E611E75A338E96EBD98D7C5DCE6BEBEF** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m1A29E1210D75BAA6CEFD4CD0BB3D37450ABE7746_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mDF30199DAC11B43CB70585DFA9BC508CD3302085(IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_mDF30199DAC11B43CB70585DFA9BC508CD3302085_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mB5A94A3DD4A36077A3FFF3E9503A4A619FF81D64(uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_mB5A94A3DD4A36077A3FFF3E9503A4A619FF81D64_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m9DE55A2993614CF981FE72AB21AFAC7C976E77F5(uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m9DE55A2993614CF981FE72AB21AFAC7C976E77F5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mFF953B60CB93755AA28ABA8578AC887EF9D7264E(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_mFF953B60CB93755AA28ABA8578AC887EF9D7264E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m9B5C5E7142591563B7EC00BD4DB790195ED98DF0(IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m9B5C5E7142591563B7EC00BD4DB790195ED98DF0_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m025700A6EA23262E0D154632681C033BF9902377() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_m025700A6EA23262E0D154632681C033BF9902377_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m7B6B7C0544A8EC3621F5E2423CEA4E8D71A25E10() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m7B6B7C0544A8EC3621F5E2423CEA4E8D71A25E10_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m53AB2BE76719C907B0C0C5EE7D3201236C658A20(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m53AB2BE76719C907B0C0C5EE7D3201236C658A20_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m14A39E5F76678B22253AF786B843C9B31F88D37E(uint32_t ___items0ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m14A39E5F76678B22253AF786B843C9B31F88D37E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m2090DC2A52EB0E0DA160B5948057BAA08C53D059(IIterator_1_tC21C0C229C51E51366BD9C6177D6DE5E665F4528** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m2090DC2A52EB0E0DA160B5948057BAA08C53D059_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m7F9C05C45D8C567EC4099DF583F4A6E8CD86D12D(uint32_t ___index0, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m7F9C05C45D8C567EC4099DF583F4A6E8CD86D12D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6E76252ECE84F84C5F4A77179B5F4CC68DE35CCA(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6E76252ECE84F84C5F4A77179B5F4CC68DE35CCA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mB9BCA0F576465D9B9B8098C3C972A25B15524072(IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mB9BCA0F576465D9B9B8098C3C972A25B15524072_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m9B956879B736A796B0C0CAA8A0F80D0D1780DFB4(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t69B69A04A68E93792DEAD225DFB41D1EBAC119EE** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m9B956879B736A796B0C0CAA8A0F80D0D1780DFB4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t0049A6F56B79DA4AC9939EDEC6BB113B02318291_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Int64>[]
struct EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t74BE168DE5149AE671EC6B6597FF6FFAE6B1B5B5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.List`1<UnityEngine.UI.IMaterialModifier>[]
struct List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A, IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(8);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[2] = IIterable_1_tBA530A414D1520B7E2769DDA0F4ADD1881CEA550::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[4] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[5] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
interfaceIds[6] = IVectorView_1_tBE73E017D41260BDE192983618296A7C175DD39B::IID;
interfaceIds[7] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 8;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB(IIterator_1_t434D274362AD0E7DED4E226329536215034B75E0** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m551F37D94BCD6465A842A30F21A34B055D1150EB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mAB5FBF2E11782C3284709DBFA4DE5F15F3819B10(uint32_t ___index0, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mAB5FBF2E11782C3284709DBFA4DE5F15F3819B10_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mBB2E069A39C95E9B799DF56A687C3378593D6DE8(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mBB2E069A39C95E9B799DF56A687C3378593D6DE8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mE04A0DB765A4541758E866B3039F1064401BE09B(IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mE04A0DB765A4541758E866B3039F1064401BE09B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7A30B074D4DE286EDF193293E625DF60ECDBB23A(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7A30B074D4DE286EDF193293E625DF60ECDBB23A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) List_1U5BU5D_t91C784213926DB3E8840729E0F3194A239249372_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Int32,System.Boolean>[]
struct KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5_ComCallableWrapper>, IVector_1_t47AE6B699AA6E20122B9AAE94FF40A9B44BB3261, IIterable_1_t28887E2AE3529F7785103DDD258677B7B383D05E, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVector_1_t47AE6B699AA6E20122B9AAE94FF40A9B44BB3261::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t47AE6B699AA6E20122B9AAE94FF40A9B44BB3261*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t28887E2AE3529F7785103DDD258677B7B383D05E::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t28887E2AE3529F7785103DDD258677B7B383D05E*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(5);
interfaceIds[0] = IVector_1_t47AE6B699AA6E20122B9AAE94FF40A9B44BB3261::IID;
interfaceIds[1] = IIterable_1_t28887E2AE3529F7785103DDD258677B7B383D05E::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208::IID;
interfaceIds[4] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 5;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m2486A9307168F5D3CE716330582CCF5BB135BD81(uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m2486A9307168F5D3CE716330582CCF5BB135BD81_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m1BCE16F2A484956260C9584E41FA4BC0E8DC80A3(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_m1BCE16F2A484956260C9584E41FA4BC0E8DC80A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_mBB033FC008791398C6E9AB55471E7C621DC92CBC(IVectorView_1_t4B5308ABADBB7177EEE272CB8A1A7D20D3627208** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_mBB033FC008791398C6E9AB55471E7C621DC92CBC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mDF0877071FEAE6AE0EA1FA853C85B60652879BE8(IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_mDF0877071FEAE6AE0EA1FA853C85B60652879BE8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m0A5F2477DE2EB926395635E425072D0C469BD284(uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_m0A5F2477DE2EB926395635E425072D0C469BD284_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m8334ECA63ECB13E38B4CA3C37C63835F3B288846(uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m8334ECA63ECB13E38B4CA3C37C63835F3B288846_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m8F41DFDFF9B59C53E797ECAF11D11ACD6D16E854(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m8F41DFDFF9B59C53E797ECAF11D11ACD6D16E854_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m43345039A1B9425D3F65C8971F1BDF337ECCC33B(IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m43345039A1B9425D3F65C8971F1BDF337ECCC33B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mB71F299CDFFF86A7AB16714298BD90D3D5F5D92B() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_mB71F299CDFFF86A7AB16714298BD90D3D5F5D92B_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mF8D8009BE5DC9FF06330E2259DE72513906D11C5() IL2CPP_OVERRIDE
{
return IVector_1_Clear_mF8D8009BE5DC9FF06330E2259DE72513906D11C5_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m6715134E91BC5DEEAEDD7820C51798E81BFBFD9C(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m6715134E91BC5DEEAEDD7820C51798E81BFBFD9C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mCB8194A732EC9C15B2EE833A0C358D628EB5DD7D(uint32_t ___items0ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_mCB8194A732EC9C15B2EE833A0C358D628EB5DD7D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m79FA09D492F7E69B65C0D1FAD02E717367ADC3C5(IIterator_1_t0E6F22317D9596D056B240E4199E3D6355969033** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m79FA09D492F7E69B65C0D1FAD02E717367ADC3C5_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mA082E4211BB8C7F328C4677A3C15294D993A1766(uint32_t ___index0, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mA082E4211BB8C7F328C4677A3C15294D993A1766_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mE2693CC0DB1C233D7B32B4120756C7BAC5A5393B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mE2693CC0DB1C233D7B32B4120756C7BAC5A5393B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m0294393BF92FDC8F4055D3C7BE64D476CBF27FE8(IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m0294393BF92FDC8F4055D3C7BE64D476CBF27FE8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mF673145E72CEF26271036CFD660BCD4E0448C181(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t876B2E6E1F7D2240B911E8A187BDCCD0CA18CA5C** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mF673145E72CEF26271036CFD660BCD4E0448C181_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_tD604AC9B58FD64FA8C0930F86A857E0D4236F3B5_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Int32,System.Boolean>[]
struct EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t4F889A2068A34DE141DE3DD75920476D9B80E599_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.UInt32,System.Int32>[]
struct KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8_ComCallableWrapper>, IVector_1_t8C60EB5AB000F179EBAAF005C5CF77484A043E09, IIterable_1_tB613151BC8BD84A121DFD6676844856F2926A22A, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVector_1_t8C60EB5AB000F179EBAAF005C5CF77484A043E09::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t8C60EB5AB000F179EBAAF005C5CF77484A043E09*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tB613151BC8BD84A121DFD6676844856F2926A22A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tB613151BC8BD84A121DFD6676844856F2926A22A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(5);
interfaceIds[0] = IVector_1_t8C60EB5AB000F179EBAAF005C5CF77484A043E09::IID;
interfaceIds[1] = IIterable_1_tB613151BC8BD84A121DFD6676844856F2926A22A::IID;
interfaceIds[2] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[3] = IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68::IID;
interfaceIds[4] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 5;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m864E1F76F7DA89477BE32314EC3CCBB0A4344FDF(uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m864E1F76F7DA89477BE32314EC3CCBB0A4344FDF_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_mBB3E5FD0749BDDB6C162B67A15D73B0A533A790B(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_mBB3E5FD0749BDDB6C162B67A15D73B0A533A790B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m05B789234A8EA05DB558B2A1619E1E751D25945B(IVectorView_1_t1BC5057964946DF26EC0D22E5B2D120264CF5F68** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m05B789234A8EA05DB558B2A1619E1E751D25945B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_mF65260BAFC461864D5865DFC2C1F3D0C7B15B6F3(IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_mF65260BAFC461864D5865DFC2C1F3D0C7B15B6F3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mFF26B34C48F8B9DD82CE80DFC403A9F92CEB6B9F(uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_mFF26B34C48F8B9DD82CE80DFC403A9F92CEB6B9F_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m2DE28DE6650F6104AB00371F420CA3137B3828A1(uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m2DE28DE6650F6104AB00371F420CA3137B3828A1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_mF4ED04EC7B85CED6A472598AF504C31CC5D080BB(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_mF4ED04EC7B85CED6A472598AF504C31CC5D080BB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_m1AAE2EE82179200D40A4A880D33E5CEA39106D58(IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_m1AAE2EE82179200D40A4A880D33E5CEA39106D58_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m88A5B10665C1A2CDF2F7B6830F790220C7450D76() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_m88A5B10665C1A2CDF2F7B6830F790220C7450D76_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m656EC9D419A9F78D4171DFA1E768244F6470E893() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m656EC9D419A9F78D4171DFA1E768244F6470E893_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mF50236F3730F539ED6572C4608E194A6D46D07BA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_mF50236F3730F539ED6572C4608E194A6D46D07BA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m75766F30B392529DB13064E6900A86019C04D5BF(uint32_t ___items0ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m75766F30B392529DB13064E6900A86019C04D5BF_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mEEE9BF41BE6E8A37A93466953A50CDB3FEE2B629(IIterator_1_t1E62E2DEF0FE28A782869A9D8BFBFABC13FF40BE** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mEEE9BF41BE6E8A37A93466953A50CDB3FEE2B629_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m84615D624AB936B1192752BE26AD1F49BB20570E(uint32_t ___index0, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m84615D624AB936B1192752BE26AD1F49BB20570E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m3DA84BA01F84E4B7EB7072B6C86BD2C1BC69D93F(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m3DA84BA01F84E4B7EB7072B6C86BD2C1BC69D93F_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m6D53723DC673E423207849E506E2B3EAD4B5BE5E(IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m6D53723DC673E423207849E506E2B3EAD4B5BE5E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m5776A380043ABC53F1DC7CE89D8249FFB0DB9D64(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IKeyValuePair_2_t482240A103839CB39C730F64ECD18461071184A2** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m5776A380043ABC53F1DC7CE89D8249FFB0DB9D64_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t68DC2D955495C2B4B4365198D4FAF3EF23A46AA8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.UInt32,System.Int32>[]
struct EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_tC3DAAB2C4CCA593E6FE9F052FB093A35549DB65B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_SpriteGlyph[]
struct TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_SpriteGlyphU5BU5D_t5318AC06202EF3DF182B15475BFDF404D51D0DC6_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_Sprite[]
struct TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_SpriteU5BU5D_tAEB601F8747AC786372A54DB534710D8F80AA802_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_Style[]
struct TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_StyleU5BU5D_tF3AA3B78161AA2A98313AA0A9ED423D9A608351A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Int32,TMPro.TMP_Style>[]
struct EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_tE11F02597EF3553072507F3CAC799CE1DECFC395_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Int32,TMPro.TMP_Style>[]
struct KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t8E76B68FE7B458007A4209990F9989BA2A5B474C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.RichTextTagAttribute[]
struct RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) RichTextTagAttributeU5BU5D_tDDFB2F68801310D7EEE16822832E48E70B11C652_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_LinkInfo[]
struct TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_LinkInfoU5BU5D_t5965804162EB43CD70F792B74DA179B32224BB0D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.TMP_Text[]
struct TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) TMP_TextU5BU5D_t7FCD9F4CF1655812F671DCBC2A19A5328CC6214F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>[]
struct Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_2U5BU5D_t88A71FDC4A181207576C14520FCF628B17C38D11_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>>[]
struct EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t5CDE70314015410337F505BD73B5CF09C0E6214C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>[]
struct LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_t773D88F93B36A9FFF318D489FC56CD1C7D70FB38_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Object,TMPro.Compute_DT_EventArgs>>>[]
struct KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_tB9DC788205A14708A97154A5030D2C7DACF92C7C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`2<System.Boolean,System.Object>[]
struct Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_2U5BU5D_tBEAB68F1EDCF8A38C445F307F783D15AAAC17806_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,System.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>>[]
struct EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t51CA47201AD17CA263F851E36FA8A1EA08E7D882_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>[]
struct LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_t1C4124AD0F200DAEFF04BA840C13B8B479091793_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,System.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,System.Object>>>[]
struct KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_tDE81AF21FAEDEF2B0FB16FA02BFE6DCCEB7ED534_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`2<System.Boolean,UnityEngine.Material>[]
struct Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_2U5BU5D_tC2417E2A2C50BB0E5FA0B2A14152A9E8A2815E68_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>>[]
struct EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_tA3A602D148776822B334082091C06D8AB67AA2B4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>[]
struct LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_t465ACD3B6A61DCDC501D060898A88404E24A28A2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Material>>>[]
struct KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t4D7EA1CF9424DB1D53AA32A2E36806F3AD98F6FE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`2<System.Boolean,TMPro.TMP_FontAsset>[]
struct Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_2U5BU5D_tFFA2B9F324532FFB9A78AF0902FAC937EE792AE0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>>[]
struct EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t2C12B9A11E163EA8A036307CE0B5B30373969C67_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>[]
struct LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_t3D8ED01B583721784C412F2C391BCAABD5394557_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TMP_FontAsset>>>[]
struct KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t0B0652FA3C2C532FEF30A296CE43B423B9AA005D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`2<System.Boolean,UnityEngine.Object>[]
struct Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_2U5BU5D_t9BDFBBBAF87ED54FE67B85A6269C7FBCCEDA4AD0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>>[]
struct EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t7D6866B4D8C7415EC1E385FBA1783095D51ECD2D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>[]
struct LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_t1C20733F4AF24C9B72A48F6C6486A27F3B2B2E71_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,UnityEngine.Object>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,UnityEngine.Object>>>[]
struct KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_tB80C205A82DF75897A013840D6078A613BBF393D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`2<System.Boolean,TMPro.TextMeshPro>[]
struct Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_2U5BU5D_t93B78CA97E4E7CF3B871D5E4904BA0826A76F6D1_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TextMeshPro>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>>[]
struct EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t689D2C1D51E72E06444FE900D531F528535F1039_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>[]
struct LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_tCC102FABB7518A84E94D7A0E3EAE10CF87BF17F8_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TextMeshPro>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshPro>>>[]
struct KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_tC311CE83522C9002DF5CB62A576DB9ABF8213F2E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>[]
struct Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_3U5BU5D_tFF8FC47EBDD2E241B3CB9D11E9952E97B94E657B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>>[]
struct EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_tEF68355BDD1BE582A6CDB8408B4EDE3D97A4EEC2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>[]
struct LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_tB96D042DA35DCA5D8766D1D650CA7D590256D4BD_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>,System.Collections.Generic.LinkedListNode`1<System.Action`3<UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material>>>[]
struct KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_tF62C7D195477D562861E55D5C8E0CCFBC3C91286_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`1<System.Boolean>[]
struct Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_1U5BU5D_t4ACB354E63DCBB16AA6E415F8B8E587370396940_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`1<System.Boolean>,System.Collections.Generic.LinkedListNode`1<System.Action`1<System.Boolean>>>[]
struct EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t4525B448034798F37AFF98F26FCE55784EC938D0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`1<System.Boolean>>[]
struct LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_tFCAD48C8B1DF79090CB740964CA759F7BBCE659F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`1<System.Boolean>,System.Collections.Generic.LinkedListNode`1<System.Action`1<System.Boolean>>>[]
struct KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t0B8DC40AD81D0EFA4B7A35AB61EF5C22913AE94E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`1<TMPro.TMP_ColorGradient>[]
struct Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_1U5BU5D_tB00B60B5F5E725F8B53BC444AA9C6870D9EEF000_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`1<TMPro.TMP_ColorGradient>,System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>>[]
struct EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_tC3DD65FAD8A4637FD366860D58CE7C1797901975_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>[]
struct LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_t9E873AB25A64DEC9FC9334D2834F6E703E833CB9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`1<TMPro.TMP_ColorGradient>,System.Collections.Generic.LinkedListNode`1<System.Action`1<TMPro.TMP_ColorGradient>>>[]
struct KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_t74BA4BE4FC11F6092564764897C90525D2F1AF3E_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>[]
struct Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Action_2U5BU5D_tDC09B72A911AA10F56B8B2140D3DF6EC4DA5C5F2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2_Entry<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>>[]
struct EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) EntryU5BU5D_t8F9BAB91535A1D433246BAFECC824708960401F0_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>[]
struct LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) LinkedListNode_1U5BU5D_t0ADC8AC168377EF53D829B3105242791BFF75882_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.KeyValuePair`2<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>,System.Collections.Generic.LinkedListNode`1<System.Action`2<System.Boolean,TMPro.TextMeshProUGUI>>>[]
struct KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) KeyValuePair_2U5BU5D_tCC47C94DB04F815FF5CB5490F59EBB0CF487C42F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for TMPro.SpriteAssetUtilities.TexturePacker_SpriteData[]
struct SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) SpriteDataU5BU5D_t2729489A91C1279AAA0EAFA62921F18A1143BB41_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBuffer[]
struct GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfBufferU5BU5D_t404304DBC60EE982F7DFD825B1D75F8783EAFEEF_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfChildOfRootProperty[]
struct GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfChildOfRootPropertyU5BU5D_t54B44EA7A7F3B1BBECF8264E731B8D134418D962_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfProperty[]
struct GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfPropertyU5BU5D_t46A1F7978C3EC12B356FBD4AAF9C69327235937B_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfBufferView[]
struct GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfBufferViewU5BU5D_t2C739D6D1E801399E90BFCEE6991799A3CC2078A_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfTexture[]
struct GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfTextureU5BU5D_t5D3F23128F2E54D3DDC3236B984D86974A1D339C_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMaterial[]
struct GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfMaterialU5BU5D_tFD0C3B7A3641473D29A1C9AEF3DBF25B55D06FC2_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfScene[]
struct GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfSceneU5BU5D_t566300D2C7FC0B70463A548AEECDE1542F4E6366_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfImage[]
struct GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfImageU5BU5D_t54FDC4EB93E156650F44626F1859C2818C157E17_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfNode[]
struct GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfNodeU5BU5D_t1DDB47D74CACD571302BCF41C12031106FF3BC93_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMesh[]
struct GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfMeshU5BU5D_tBD09ECB4CC7F8B1C2B090603FB0790BB23CCD782_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfMeshPrimitive[]
struct GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfMeshPrimitiveU5BU5D_t2F4A253A7424A4BE129F1D929EEF6F5274472331_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAccessor[]
struct GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfAccessorU5BU5D_t06C275CF5032195C2F569EE25B9DCB505A8A2A38_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationChannel[]
struct GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfAnimationChannelU5BU5D_t4013EE47472175012FC767B174CF4C3280CCA029_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimationSampler[]
struct GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfAnimationSamplerU5BU5D_t93B56DBE8DF2BEFC5036A4256E01E7F0BF343159_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.IDictionary`2<System.String,System.Int32>[]
struct IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4_ComCallableWrapper>, IVector_1_t2FFA84DD3C4050C1CCDC6F99F6F27FDC2C5A589E, IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226, IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7, IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVector_1_t2FFA84DD3C4050C1CCDC6F99F6F27FDC2C5A589E::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_t2FFA84DD3C4050C1CCDC6F99F6F27FDC2C5A589E*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(9);
interfaceIds[0] = IVector_1_t2FFA84DD3C4050C1CCDC6F99F6F27FDC2C5A589E::IID;
interfaceIds[1] = IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226::IID;
interfaceIds[2] = IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C::IID;
interfaceIds[3] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[4] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[5] = IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7::IID;
interfaceIds[6] = IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777::IID;
interfaceIds[7] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
interfaceIds[8] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 9;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m5F2247992C0779BECC7A0D7DB4C2BA654FC95EED(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m5F2247992C0779BECC7A0D7DB4C2BA654FC95EED_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m140C56EB0E35CEE277FB2DBDEDF56EDCEE1E9ED6(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_m140C56EB0E35CEE277FB2DBDEDF56EDCEE1E9ED6_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_mECB0A6BFA617F86CA7F1D5238FE0054B8897A199(IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_mECB0A6BFA617F86CA7F1D5238FE0054B8897A199_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m93E76CA4FD15D8C486AED2F0756A95CD2860C1A9(IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_m93E76CA4FD15D8C486AED2F0756A95CD2860C1A9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_mF5C8F28E4981136DC3BBE917C30502611D9D29C9(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_mF5C8F28E4981136DC3BBE917C30502611D9D29C9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_mFD33C7E0E2C7D4E95587535210C5AA67EBE08A4A(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_mFD33C7E0E2C7D4E95587535210C5AA67EBE08A4A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m8F40FBC4028BDE47B0BA939B0DE606D0D80154BB(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m8F40FBC4028BDE47B0BA939B0DE606D0D80154BB_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mCC6FEF797185358E3451A971405AB1594054ED1C(IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_mCC6FEF797185358E3451A971405AB1594054ED1C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_mE60706CFAC5A64B81B93F80A33DFB33C5150B17C() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_mE60706CFAC5A64B81B93F80A33DFB33C5150B17C_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_mB621150E7A2D410A640DF7707819F6BAAC573D4C() IL2CPP_OVERRIDE
{
return IVector_1_Clear_mB621150E7A2D410A640DF7707819F6BAAC573D4C_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mEB7AD40B0651AD0F0CD0F8BDC5383E312D6AEF85(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_mEB7AD40B0651AD0F0CD0F8BDC5383E312D6AEF85_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m5568D0FAEAE242880BDFF5A0AA02ADAFD1910938(uint32_t ___items0ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m5568D0FAEAE242880BDFF5A0AA02ADAFD1910938_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m33A198A26E2F69AB15F7E09DB58544E4EC7A1F96(IIterator_1_t45EAFE89B17CEF26FE791FE11C8ACC9F5FCB94F9** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m33A198A26E2F69AB15F7E09DB58544E4EC7A1F96_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B(IIterator_1_tE640F040C3947F6065F4AE8D02A7C78D21838D6D** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m10D366416EDD66C0DD879B19FB5224F452326301(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m10D366416EDD66C0DD879B19FB5224F452326301_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mCFA60797F45CFC2B8248EF8E6661F7D5E52EF27C(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mCFA60797F45CFC2B8248EF8E6661F7D5E52EF27C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m384FC994B72BE6A9B6744B51C092A4E723788E25(IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m384FC994B72BE6A9B6744B51C092A4E723788E25_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m063A74F80E6FFFB816ABE2C519B6FFC1118B405D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m063A74F80E6FFFB816ABE2C519B6FFC1118B405D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IDictionary_2U5BU5D_t9EDC3BC60B771CD6EDC55E990415AF2B4B5C61A4_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.IEnumerable`1<System.Collections.Generic.KeyValuePair`2<System.String,System.Int32>>[]
struct IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00_ComCallableWrapper>, IVector_1_tD5A0C078918A0DF86CEBDBFF912DF05323A9B717, IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVector_1_tD5A0C078918A0DF86CEBDBFF912DF05323A9B717::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_tD5A0C078918A0DF86CEBDBFF912DF05323A9B717*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(7);
interfaceIds[0] = IVector_1_tD5A0C078918A0DF86CEBDBFF912DF05323A9B717::IID;
interfaceIds[1] = IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C::IID;
interfaceIds[2] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[3] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[4] = IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777::IID;
interfaceIds[5] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
interfaceIds[6] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 7;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_m1789E9E2AB11AC78F92E9B3652E3523B176A4556(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_m1789E9E2AB11AC78F92E9B3652E3523B176A4556_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m90290FF201B1FF72010158DCAA058C0F74A9A7B7(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_m90290FF201B1FF72010158DCAA058C0F74A9A7B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_mB21E2DCB1A2CE29F582BA4622895AD2906FD6533(IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_mB21E2DCB1A2CE29F582BA4622895AD2906FD6533_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m61348F21553FEE98D456B8E75099587EB858D4DF(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_m61348F21553FEE98D456B8E75099587EB858D4DF_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m64FFC36ED11C505A10C72E5BB809323866100533(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_m64FFC36ED11C505A10C72E5BB809323866100533_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_m580552E47E142F6CB6C945024B7922817E2E3A36(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_m580552E47E142F6CB6C945024B7922817E2E3A36_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m6AAE187CFBB635DCF7220FBBC7DC8CE9DA4FF94E(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m6AAE187CFBB635DCF7220FBBC7DC8CE9DA4FF94E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mAB0A0B93A867691BA33A86789FE42AF2F9ACF073(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_mAB0A0B93A867691BA33A86789FE42AF2F9ACF073_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m9A6CB8A750E836FC0D3FE6E73127784AA6D68C36() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_m9A6CB8A750E836FC0D3FE6E73127784AA6D68C36_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m95C2489858F5E560A30C66FA9BD2808626ED549A() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m95C2489858F5E560A30C66FA9BD2808626ED549A_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_m425106B4EB4B593ECEA7DFC0EB7AC1004C53274E(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_m425106B4EB4B593ECEA7DFC0EB7AC1004C53274E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_mDBE0F9128E978EB063674DAC16DE4D90A0FB1E0E(uint32_t ___items0ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_mDBE0F9128E978EB063674DAC16DE4D90A0FB1E0E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B(IIterator_1_tE640F040C3947F6065F4AE8D02A7C78D21838D6D** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IEnumerable_1U5BU5D_tFC0C6BFF1F866729BD0224C82484413FA4E0AD00_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.IReadOnlyDictionary`2<System.String,System.Int32>[]
struct IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F_ComCallableWrapper>, IVector_1_tE95A9020405F5161923ED08C2FED00B140824229, IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC, IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E, IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVector_1_tE95A9020405F5161923ED08C2FED00B140824229::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVector_1_tE95A9020405F5161923ED08C2FED00B140824229*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(9);
interfaceIds[0] = IVector_1_tE95A9020405F5161923ED08C2FED00B140824229::IID;
interfaceIds[1] = IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC::IID;
interfaceIds[2] = IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C::IID;
interfaceIds[3] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[4] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[5] = IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E::IID;
interfaceIds[6] = IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777::IID;
interfaceIds[7] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
interfaceIds[8] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 9;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetAt_mA233F9C16CCFBD83381AF694E971369407751F66(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetAt_mA233F9C16CCFBD83381AF694E971369407751F66_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_get_Size_m523736EA1CAFD756D3A464103C44B95281CDC6C4(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_get_Size_m523736EA1CAFD756D3A464103C44B95281CDC6C4_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetView_m9AF06ECFDE66E7CCD018432D8B0600946B5CFE31(IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E** comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetView_m9AF06ECFDE66E7CCD018432D8B0600946B5CFE31_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_IndexOf_m227F18F4334CF3A4FDDF5B55CF5CB05172EE379C(IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_IndexOf_m227F18F4334CF3A4FDDF5B55CF5CB05172EE379C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_SetAt_m880B990C26BB46E24CF9BEF93CF19902CD7147A3(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_SetAt_m880B990C26BB46E24CF9BEF93CF19902CD7147A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_InsertAt_mB3ECC8E27E6B4AEDF9B535BB3C98C729E95F6CA9(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value1) IL2CPP_OVERRIDE
{
return IVector_1_InsertAt_mB3ECC8E27E6B4AEDF9B535BB3C98C729E95F6CA9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAt_m4B2BB7E875F6CA1A3422A7A1A71D500AAD47119D(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IVector_1_RemoveAt_m4B2BB7E875F6CA1A3422A7A1A71D500AAD47119D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_Append_mC1AE32A36FA72DF9274C33B3008F1BE55BD3CF0C(IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0) IL2CPP_OVERRIDE
{
return IVector_1_Append_mC1AE32A36FA72DF9274C33B3008F1BE55BD3CF0C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IVector_1_RemoveAtEnd_m192F80E547EC6A43640D712AC47338C9F1608BAE() IL2CPP_OVERRIDE
{
return IVector_1_RemoveAtEnd_m192F80E547EC6A43640D712AC47338C9F1608BAE_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_Clear_m3C66A0AC585BDB14889631A18494806F5D358424() IL2CPP_OVERRIDE
{
return IVector_1_Clear_m3C66A0AC585BDB14889631A18494806F5D358424_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IVector_1_GetMany_mF221BB31F435A34F86C0B6C9F908FFBA0AEBD53D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVector_1_GetMany_mF221BB31F435A34F86C0B6C9F908FFBA0AEBD53D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVector_1_ReplaceAll_m3C4ECC99DF1975301571BD4709A0F12515FE0FB1(uint32_t ___items0ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items0) IL2CPP_OVERRIDE
{
return IVector_1_ReplaceAll_m3C4ECC99DF1975301571BD4709A0F12515FE0FB1_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___items0ArraySize, ___items0);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m44A14B4C6CD9C14BD291722E30B5058C9323413A(IIterator_1_tC25A5C49191781F5B26240C13028A8D268E9344F** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m44A14B4C6CD9C14BD291722E30B5058C9323413A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B(IIterator_1_tE640F040C3947F6065F4AE8D02A7C78D21838D6D** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m72512CEF306512E4B36CA37279EE3D27D7BC986B(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m72512CEF306512E4B36CA37279EE3D27D7BC986B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m5E80095A44374A1C657C9C4C0434853C80A2DC99(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m5E80095A44374A1C657C9C4C0434853C80A2DC99_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m45A3AB5D4B2F9F9CB3EE97E9B3F96E7F348837DC(IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m45A3AB5D4B2F9F9CB3EE97E9B3F96E7F348837DC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mD91FF5BE14F23E774420CA3130D06FF7A50C5F87(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mD91FF5BE14F23E774420CA3130D06FF7A50C5F87_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) IReadOnlyDictionary_2U5BU5D_t062455616E27B482115E8BCCB710A3A8BD57D04F_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Collections.Generic.Dictionary`2<System.String,System.Int32>[]
struct Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226, IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C, IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F, IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7, IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777, IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A, IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(12);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IIterable_1_t530A891758ADFB71114004BB5F67FD90DAF3C226::IID;
interfaceIds[2] = IIterable_1_t0664DAFED82D950AF11CCB7ED332F8614045820C::IID;
interfaceIds[3] = IIterable_1_t959BCB9D0EBECC1E00135117B6946E97DFCECC8F::IID;
interfaceIds[4] = IIterable_1_t02ADFA04B05773B1895F1A7E36B4353DB73C0CBC::IID;
interfaceIds[5] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[6] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[7] = IVectorView_1_t638E1E118A2F2A7BFC1437597739B002DAA89CC7::IID;
interfaceIds[8] = IVectorView_1_t8560D6567C9595899A5799765C25B8C3E090E777::IID;
interfaceIds[9] = IVectorView_1_t5050EF05E91BB6F2A882C85C1555DF9DAD87E39A::IID;
interfaceIds[10] = IVectorView_1_tFB4E5EC3481DCC87BBD1B86E3C0AD7F6B0AE412E::IID;
interfaceIds[11] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 12;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m33A198A26E2F69AB15F7E09DB58544E4EC7A1F96(IIterator_1_t45EAFE89B17CEF26FE791FE11C8ACC9F5FCB94F9** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m33A198A26E2F69AB15F7E09DB58544E4EC7A1F96_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B(IIterator_1_tE640F040C3947F6065F4AE8D02A7C78D21838D6D** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m0BF472017272675F4FF4FAC8A35288114B87C88B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56(IIterator_1_t62801DBDE6FD9C74727BB69771A29FE27EFE219A** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_mFFB1B49776648BCFAE14E56BCC852C171A2EED56_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m44A14B4C6CD9C14BD291722E30B5058C9323413A(IIterator_1_tC25A5C49191781F5B26240C13028A8D268E9344F** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m44A14B4C6CD9C14BD291722E30B5058C9323413A_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m10D366416EDD66C0DD879B19FB5224F452326301(uint32_t ___index0, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m10D366416EDD66C0DD879B19FB5224F452326301_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_mCFA60797F45CFC2B8248EF8E6661F7D5E52EF27C(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_mCFA60797F45CFC2B8248EF8E6661F7D5E52EF27C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m384FC994B72BE6A9B6744B51C092A4E723788E25(IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m384FC994B72BE6A9B6744B51C092A4E723788E25_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m063A74F80E6FFFB816ABE2C519B6FFC1118B405D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMap_2_t3B7B9869972140694EC8DBB77288FE4D28D469A7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m063A74F80E6FFFB816ABE2C519B6FFC1118B405D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C(uint32_t ___index0, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mB8C24FF9662AFD8FB06832DEAF3B995B8698370C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m245B407A2049B0C5897D45038732AC2785F96D50_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016(IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_mC07118EA4077C03573D24FF37A161151D2192016_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IIterable_1_t24AF42FEA5EA0C6577D5FDBE03A48AEA354B4F5E** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mF47DE28A8F25DAA9D191798CEC909CA5E29B12DA_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9(uint32_t ___index0, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mE92F40A15F7A4160BC73DC34BE2B952CCB6A6CC9_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m6C9A5EB233BDD0D6840D71594DBEC7005E572679_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19(IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m624FC07BF1FB0CE5A3988E9DC8FE4F4DEFA7BB19_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mA6B7C5129191F9FABD887800915DB7D141B7BA3D_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_m72512CEF306512E4B36CA37279EE3D27D7BC986B(uint32_t ___index0, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_m72512CEF306512E4B36CA37279EE3D27D7BC986B_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m5E80095A44374A1C657C9C4C0434853C80A2DC99(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m5E80095A44374A1C657C9C4C0434853C80A2DC99_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m45A3AB5D4B2F9F9CB3EE97E9B3F96E7F348837DC(IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m45A3AB5D4B2F9F9CB3EE97E9B3F96E7F348837DC_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_mD91FF5BE14F23E774420CA3130D06FF7A50C5F87(uint32_t ___startIndex0, uint32_t ___items1ArraySize, IMapView_2_tFB2F8AEA1C8A159E0E34115B147C9F9B2C7827B3** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_mD91FF5BE14F23E774420CA3130D06FF7A50C5F87_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) Dictionary_2U5BU5D_t19C579FB4BCD4A09E5CDFB2E707FF2CA59D32BB7_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.Extensions.GltfExtension[]
struct GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfExtensionU5BU5D_t1DCD42FB6E4199F01667A72C2B67DFD3E4FFEACE_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfAnimation[]
struct GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfAnimationU5BU5D_t921210ABF9211C3B42F47F392C22F164002F4D94_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfCamera[]
struct GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfCameraU5BU5D_t44DB63F6C96C156756CA3AEA48B3A0D0A3A8A6EC_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSampler[]
struct GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfSamplerU5BU5D_t3084FFD5C91CC1FEA2265A34181F4BF8EC6CBA8D_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Gltf.Schema.GltfSkin[]
struct GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) GltfSkinU5BU5D_t5660FA06569FE3283708619BF51571B573079778_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.ObjectCollectionNode[]
struct ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) ObjectCollectionNodeU5BU5D_t70BD35C25553BF0860F3990B5B1CDFC78403EEC9_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver[]
struct SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) SolverU5BU5D_t84FEBDC050683CBEB56E18C17678445B5BAB1D44_ComCallableWrapper(obj));
}
// COM Callable Wrapper for System.Linq.Set`1_Slot<Microsoft.MixedReality.Toolkit.Utilities.Solvers.Solver>[]
struct SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461_ComCallableWrapper>, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(2);
interfaceIds[0] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[1] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 2;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) SlotU5BU5D_tCDE2AD95A9E20D3CBE3F3336CF4E47E5B9733461_ComCallableWrapper(obj));
}
// COM Callable Wrapper for Microsoft.MixedReality.Toolkit.Utilities.BaseMixedRealityLineRenderer[]
struct BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822_ComCallableWrapper IL2CPP_FINAL : il2cpp::vm::CachedCCWBase<BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822_ComCallableWrapper>, IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397, IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7, IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356, IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39
{
inline BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822_ComCallableWrapper(RuntimeObject* obj) : il2cpp::vm::CachedCCWBase<BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822_ComCallableWrapper>(obj) {}
virtual il2cpp_hresult_t STDCALL QueryInterface(const Il2CppGuid& iid, void** object) IL2CPP_OVERRIDE
{
if (::memcmp(&iid, &Il2CppIUnknown::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIInspectable::IID, sizeof(Il2CppGuid)) == 0
|| ::memcmp(&iid, &Il2CppIAgileObject::IID, sizeof(Il2CppGuid)) == 0)
{
*object = GetIdentity();
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIManagedObjectHolder::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIManagedObjectHolder*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIMarshal::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIMarshal*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
if (::memcmp(&iid, &Il2CppIWeakReferenceSource::IID, sizeof(Il2CppGuid)) == 0)
{
*object = static_cast<Il2CppIWeakReferenceSource*>(this);
AddRefImpl();
return IL2CPP_S_OK;
}
*object = NULL;
return IL2CPP_E_NOINTERFACE;
}
virtual uint32_t STDCALL AddRef() IL2CPP_OVERRIDE
{
return AddRefImpl();
}
virtual uint32_t STDCALL Release() IL2CPP_OVERRIDE
{
return ReleaseImpl();
}
virtual il2cpp_hresult_t STDCALL GetIids(uint32_t* iidCount, Il2CppGuid** iids) IL2CPP_OVERRIDE
{
Il2CppGuid* interfaceIds = il2cpp_codegen_marshal_allocate_array<Il2CppGuid>(4);
interfaceIds[0] = IIterable_1_tCEBE09BB51EEAF144D8DFD26AEE42C0695F99397::IID;
interfaceIds[1] = IBindableIterable_t9143D67D77A22933794984D33C26495AE2C9D6D7::IID;
interfaceIds[2] = IVectorView_1_t8FBE5F15A5FFCD784D7B38F649A6315DDACD4356::IID;
interfaceIds[3] = IBindableVector_tA1A0182B1D20219B22AE55394F419A2646929D39::IID;
*iidCount = 4;
*iids = interfaceIds;
return IL2CPP_S_OK;
}
virtual il2cpp_hresult_t STDCALL GetRuntimeClassName(Il2CppHString* className) IL2CPP_OVERRIDE
{
return ComObjectBase::GetRuntimeClassName(className);
}
virtual il2cpp_hresult_t STDCALL GetTrustLevel(int32_t* trustLevel) IL2CPP_OVERRIDE
{
return ComObjectBase::GetTrustLevel(trustLevel);
}
virtual il2cpp_hresult_t STDCALL IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E(IIterator_1_t0E6849676A0AAF0EFC91B07D0CDDD1843CA1A616** comReturnValue) IL2CPP_OVERRIDE
{
return IIterable_1_First_m1B7A0980705E71FC04AE1DB4CAABD75131CD930E_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63(IBindableIterator_t4EB9DDBBBED9295CB77A2FAD2C1171407B95575B** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableIterable_First_m35A822CD2DF5C55F51539416F98640C7123A6C63_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetAt_mD3660639E080D0270BD89F5FF0E11D420C7C24A3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_get_Size_m0843BB6131B4AABC19D01E1F36A545E661F1D836_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_IndexOf_m5856F61ED284420941D9E9331FB3334F5592B4B7_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3(uint32_t ___startIndex0, uint32_t ___items1ArraySize, Il2CppIInspectable** ___items1, uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IVectorView_1_GetMany_m7D4ECA15D113EFDF96BC56FFEA31151E28191EB3_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___startIndex0, ___items1ArraySize, ___items1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD(uint32_t ___index0, Il2CppIInspectable** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetAt_m860227C0726F0C40C40300F2D114C90C040DCFBD_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771(uint32_t* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_get_Size_m1804E8861F18C40EC16058667D11382062A82771_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55(IBindableVectorView_t599103232DE439473A83B23E8CC3259B59BFC11E** comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_GetView_m4C2BFF3B150F6EB8019728B4C2C2AF5879A81B55_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489(Il2CppIInspectable* ___value0, uint32_t* ___index1, bool* comReturnValue) IL2CPP_OVERRIDE
{
return IBindableVector_IndexOf_mF971A05290A1678F48EC52978E53A9CBA688E489_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0, ___index1, comReturnValue);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_SetAt_m4658569CC8E08EF010A7EB35E66059F7D4BBFDB8_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59(uint32_t ___index0, Il2CppIInspectable* ___value1) IL2CPP_OVERRIDE
{
return IBindableVector_InsertAt_mA154571EE15503B3425185CFB55419AA4ED3BD59_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0, ___value1);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C(uint32_t ___index0) IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAt_m7B14341EBAE9C5799028FC3EF0771210595F4E3C_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___index0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214(Il2CppIInspectable* ___value0) IL2CPP_OVERRIDE
{
return IBindableVector_Append_m623B1AF95642A0AE7BE231983B60CC203FDF4214_ComCallableWrapperProjectedMethod(GetManagedObjectInline(), ___value0);
}
virtual il2cpp_hresult_t STDCALL IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC() IL2CPP_OVERRIDE
{
return IBindableVector_RemoveAtEnd_m391C9A85A1C813017D9EBB3211CA294156F654FC_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
virtual il2cpp_hresult_t STDCALL IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1() IL2CPP_OVERRIDE
{
return IBindableVector_Clear_mBEA87A79EBF207B3F5701BB09506759CBC6F5ED1_ComCallableWrapperProjectedMethod(GetManagedObjectInline());
}
};
IL2CPP_EXTERN_C Il2CppIUnknown* CreateComCallableWrapperFor_BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822(RuntimeObject* obj)
{
void* memory = il2cpp::utils::Memory::Malloc(sizeof(BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822_ComCallableWrapper));
if (memory == NULL)
{
il2cpp_codegen_raise_out_of_memory_exception();
}
return static_cast<Il2CppIManagedObjectHolder*>(new(memory) BaseMixedRealityLineRendererU5BU5D_tDA4F33848908ACBF79C9A69C3DB6BB9D6BCB5822_ComCallableWrapper(obj));
}
| [
"moritz.suemmermann@uni-koeln.de"
] | moritz.suemmermann@uni-koeln.de |
86dc5c45dc9bc80bc0a9a5bd4f480e5eeb11d1d4 | a3a942e6839b05b0e0032cc7245e64f5646751af | /re20_3_forCarson/processor7/0/U | becaac2fe8a4c6a5b71345e17f0c5c4661d42e78 | [] | no_license | carsumptive/OF-2 | 8826dc120b8a1f6b9fbd70e47cda6976f80d6ca7 | dfb46ab301dfded517b579cb59df02df14bcfd2f | refs/heads/main | 2023-04-08T18:45:15.811682 | 2021-04-08T14:51:19 | 2021-04-08T14:51:19 | 355,948,191 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,534 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField uniform (1 0 0);
boundaryField
{
inlet
{
type uniformFixedValue;
uniformValue constant (1 0 0);
value nonuniform 0();
}
outlet
{
type pressureInletOutletVelocity;
value uniform (1 0 0);
}
cylinder
{
type fixedValue;
value nonuniform 0();
}
top
{
type symmetryPlane;
}
bottom
{
type symmetryPlane;
}
defaultFaces
{
type empty;
}
procBoundary7to3
{
type processor;
value uniform (1 0 0);
}
procBoundary7to6
{
type processor;
value uniform (1 0 0);
}
}
// ************************************************************************* //
| [
"carsonlansdowne@gmail.com"
] | carsonlansdowne@gmail.com | |
2a37a4921a8d0905383eb11fd8883490a0247bdd | 40dd0b39b58e60d9a658aceba8959b3f22738b36 | /Serialize/Serialize/main.cpp | fea25d449c5c734a08b8e5c1bc380f25c537509a | [] | no_license | endaye/gam490-pa2 | 0b6678cd4d90fbcb06f2d9037fcbe01f2a4bba4b | 00f7b2b4df03df451d4dbb5a1ef779e8368efa4f | refs/heads/master | 2016-08-11T07:54:00.088609 | 2016-04-10T20:12:13 | 2016-04-10T20:12:13 | 55,856,081 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 523 | cpp |
//---------------------------------------------------------------------------
// HEADER FILES:
//---------------------------------------------------------------------------
#include "UnitTest.h"
//---------------------------------------------------------------------------
// MAIN METHOD:
//---------------------------------------------------------------------------
int main()
{
UnitTest_platform_init();
const int numFailures = UnitTest_platform_runTests();
UnitTest_platform_exit();
return( numFailures );
}
| [
"old.far.hot@gmail.com"
] | old.far.hot@gmail.com |
c05b24e77e61f9fd9082e33fd246cd954dbd2bf3 | f739df1f252d7c961ed881be3b8babaf62ff4170 | /softs/SCADAsoft/5.3.2/ACE_Wrappers/TAO/orbsvcs/orbsvcs/Event_ForwarderC.h | b8a0949b38f48d76981b29e0f0744ff1c2b9e608 | [] | no_license | billpwchan/SCADA-nsl | 739484691c95181b262041daa90669d108c54234 | 1287edcd38b2685a675f1261884f1035f7f288db | refs/heads/master | 2023-04-30T09:15:49.104944 | 2021-01-10T21:53:10 | 2021-01-10T21:53:10 | 328,486,982 | 0 | 0 | null | 2023-04-22T07:10:56 | 2021-01-10T21:53:19 | C++ | UTF-8 | C++ | false | false | 15,780 | h | // -*- C++ -*-
//
// $Id$
// **** Code generated by the The ACE ORB (TAO) IDL Compiler v1.6a_p10 ****
// TAO and the TAO IDL Compiler have been developed by:
// Center for Distributed Object Computing
// Washington University
// St. Louis, MO
// USA
// http://www.cs.wustl.edu/~schmidt/doc-center.html
// and
// Distributed Object Computing Laboratory
// University of California at Irvine
// Irvine, CA
// USA
// http://doc.ece.uci.edu/
// and
// Institute for Software Integrated Systems
// Vanderbilt University
// Nashville, TN
// USA
// http://www.isis.vanderbilt.edu/
//
// Information about TAO is available at:
// http://www.cs.wustl.edu/~schmidt/TAO.html
// TAO_IDL - Generated from
// be\be_codegen.cpp:135
#ifndef _TAO_IDL_EVENT_FORWARDERC_H_
#define _TAO_IDL_EVENT_FORWARDERC_H_
#include /**/ "ace/pre.h"
#include /**/ "ace/config-all.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include /**/ "orbsvcs/Notify/notify_export.h"
#include "tao/AnyTypeCode/AnyTypeCode_methods.h"
#include "tao/ORB.h"
#include "tao/SystemException.h"
#include "tao/Basic_Types.h"
#include "tao/ORB_Constants.h"
#include "tao/Object.h"
#include "tao/AnyTypeCode/TypeCode.h"
#include "tao/AnyTypeCode/TypeCode_Constants.h"
#include "tao/AnyTypeCode/Any.h"
#include "tao/String_Manager_T.h"
#include "tao/Objref_VarOut_T.h"
#include /**/ "tao/Versioned_Namespace.h"
#include "CosNotificationC.h"
#include "CosNotifyChannelAdminC.h"
#if defined (TAO_EXPORT_MACRO)
#undef TAO_EXPORT_MACRO
#endif
#define TAO_EXPORT_MACRO TAO_Notify_Export
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_root/root_ch.cpp:62
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
namespace TAO
{
class Collocation_Proxy_Broker;
template<typename T> class Narrow_Utils;
}
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_module/module_ch.cpp:49
namespace Event_Forwarder
{
// TAO_IDL - Generated from
// be\be_interface.cpp:644
#if !defined (_EVENT_FORWARDER_STRUCTUREDPROXYPUSHSUPPLIER__VAR_OUT_CH_)
#define _EVENT_FORWARDER_STRUCTUREDPROXYPUSHSUPPLIER__VAR_OUT_CH_
class StructuredProxyPushSupplier;
typedef StructuredProxyPushSupplier *StructuredProxyPushSupplier_ptr;
typedef
TAO_Objref_Var_T<
StructuredProxyPushSupplier
>
StructuredProxyPushSupplier_var;
typedef
TAO_Objref_Out_T<
StructuredProxyPushSupplier
>
StructuredProxyPushSupplier_out;
#endif /* end #if !defined */
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_interface/interface_ch.cpp:54
#if !defined (_EVENT_FORWARDER_STRUCTUREDPROXYPUSHSUPPLIER_CH_)
#define _EVENT_FORWARDER_STRUCTUREDPROXYPUSHSUPPLIER_CH_
class TAO_Notify_Export StructuredProxyPushSupplier
: public virtual ::CosNotifyChannelAdmin::StructuredProxyPushSupplier
{
public:
friend class TAO::Narrow_Utils<StructuredProxyPushSupplier>;
typedef StructuredProxyPushSupplier_ptr _ptr_type;
typedef StructuredProxyPushSupplier_var _var_type;
typedef StructuredProxyPushSupplier_out _out_type;
// The static operations.
static StructuredProxyPushSupplier_ptr _duplicate (StructuredProxyPushSupplier_ptr obj);
static void _tao_release (StructuredProxyPushSupplier_ptr obj);
static StructuredProxyPushSupplier_ptr _narrow (::CORBA::Object_ptr obj);
static StructuredProxyPushSupplier_ptr _unchecked_narrow (::CORBA::Object_ptr obj);
static StructuredProxyPushSupplier_ptr _nil (void)
{
return static_cast<StructuredProxyPushSupplier_ptr> (0);
}
static void _tao_any_destructor (void *);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_operation/operation_ch.cpp:46
virtual void forward_structured (
const ::CosNotification::StructuredEvent & event);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_operation/operation_ch.cpp:46
virtual void forward_structured_no_filtering (
const ::CosNotification::StructuredEvent & event);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_operation/operation_ch.cpp:46
virtual void forward_any (
const ::CORBA::Any & event);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_operation/operation_ch.cpp:46
virtual void forward_any_no_filtering (
const ::CORBA::Any & event);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_interface/interface_ch.cpp:216
virtual ::CORBA::Boolean _is_a (const char *type_id);
virtual const char* _interface_repository_id (void) const;
virtual ::CORBA::Boolean marshal (TAO_OutputCDR &cdr);
private:
TAO::Collocation_Proxy_Broker *the_TAO_StructuredProxyPushSupplier_Proxy_Broker_;
protected:
// Concrete interface only.
StructuredProxyPushSupplier (void);
// These methods travese the inheritance tree and set the
// parents piece of the given class in the right mode.
virtual void Event_Forwarder_StructuredProxyPushSupplier_setup_collocation (void);
// Concrete non-local interface only.
StructuredProxyPushSupplier (
::IOP::IOR *ior,
TAO_ORB_Core *orb_core);
// Non-local interface only.
StructuredProxyPushSupplier (
TAO_Stub *objref,
::CORBA::Boolean _tao_collocated = false,
TAO_Abstract_ServantBase *servant = 0,
TAO_ORB_Core *orb_core = 0);
virtual ~StructuredProxyPushSupplier (void);
private:
// Private and unimplemented for concrete interfaces.
StructuredProxyPushSupplier (const StructuredProxyPushSupplier &);
void operator= (const StructuredProxyPushSupplier &);
};
#endif /* end #if !defined */
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_typecode/typecode_decl.cpp:49
extern TAO_Notify_Export ::CORBA::TypeCode_ptr const _tc_StructuredProxyPushSupplier;
// TAO_IDL - Generated from
// be\be_interface.cpp:644
#if !defined (_EVENT_FORWARDER_PROXYPUSHSUPPLIER__VAR_OUT_CH_)
#define _EVENT_FORWARDER_PROXYPUSHSUPPLIER__VAR_OUT_CH_
class ProxyPushSupplier;
typedef ProxyPushSupplier *ProxyPushSupplier_ptr;
typedef
TAO_Objref_Var_T<
ProxyPushSupplier
>
ProxyPushSupplier_var;
typedef
TAO_Objref_Out_T<
ProxyPushSupplier
>
ProxyPushSupplier_out;
#endif /* end #if !defined */
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_interface/interface_ch.cpp:54
#if !defined (_EVENT_FORWARDER_PROXYPUSHSUPPLIER_CH_)
#define _EVENT_FORWARDER_PROXYPUSHSUPPLIER_CH_
class TAO_Notify_Export ProxyPushSupplier
: public virtual ::CosNotifyChannelAdmin::ProxyPushSupplier
{
public:
friend class TAO::Narrow_Utils<ProxyPushSupplier>;
typedef ProxyPushSupplier_ptr _ptr_type;
typedef ProxyPushSupplier_var _var_type;
typedef ProxyPushSupplier_out _out_type;
// The static operations.
static ProxyPushSupplier_ptr _duplicate (ProxyPushSupplier_ptr obj);
static void _tao_release (ProxyPushSupplier_ptr obj);
static ProxyPushSupplier_ptr _narrow (::CORBA::Object_ptr obj);
static ProxyPushSupplier_ptr _unchecked_narrow (::CORBA::Object_ptr obj);
static ProxyPushSupplier_ptr _nil (void)
{
return static_cast<ProxyPushSupplier_ptr> (0);
}
static void _tao_any_destructor (void *);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_operation/operation_ch.cpp:46
virtual void forward_structured (
const ::CosNotification::StructuredEvent & event);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_operation/operation_ch.cpp:46
virtual void forward_structured_no_filtering (
const ::CosNotification::StructuredEvent & event);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_operation/operation_ch.cpp:46
virtual void forward_any (
const ::CORBA::Any & event);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_operation/operation_ch.cpp:46
virtual void forward_any_no_filtering (
const ::CORBA::Any & event);
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_interface/interface_ch.cpp:216
virtual ::CORBA::Boolean _is_a (const char *type_id);
virtual const char* _interface_repository_id (void) const;
virtual ::CORBA::Boolean marshal (TAO_OutputCDR &cdr);
private:
TAO::Collocation_Proxy_Broker *the_TAO_ProxyPushSupplier_Proxy_Broker_;
protected:
// Concrete interface only.
ProxyPushSupplier (void);
// These methods travese the inheritance tree and set the
// parents piece of the given class in the right mode.
virtual void Event_Forwarder_ProxyPushSupplier_setup_collocation (void);
// Concrete non-local interface only.
ProxyPushSupplier (
::IOP::IOR *ior,
TAO_ORB_Core *orb_core);
// Non-local interface only.
ProxyPushSupplier (
TAO_Stub *objref,
::CORBA::Boolean _tao_collocated = false,
TAO_Abstract_ServantBase *servant = 0,
TAO_ORB_Core *orb_core = 0);
virtual ~ProxyPushSupplier (void);
private:
// Private and unimplemented for concrete interfaces.
ProxyPushSupplier (const ProxyPushSupplier &);
void operator= (const ProxyPushSupplier &);
};
#endif /* end #if !defined */
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_typecode/typecode_decl.cpp:49
extern TAO_Notify_Export ::CORBA::TypeCode_ptr const _tc_ProxyPushSupplier;
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_module/module_ch.cpp:78
} // module Event_Forwarder
// Proxy Broker Factory function pointer declarations.
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_root/root.cpp:139
extern TAO_Notify_Export
TAO::Collocation_Proxy_Broker *
(*Event_Forwarder__TAO_StructuredProxyPushSupplier_Proxy_Broker_Factory_function_pointer) (
::CORBA::Object_ptr obj
);
extern TAO_Notify_Export
TAO::Collocation_Proxy_Broker *
(*Event_Forwarder__TAO_ProxyPushSupplier_Proxy_Broker_Factory_function_pointer) (
::CORBA::Object_ptr obj
);
// TAO_IDL - Generated from
// be\be_visitor_traits.cpp:64
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// Traits specializations.
namespace TAO
{
#if !defined (_EVENT_FORWARDER_STRUCTUREDPROXYPUSHSUPPLIER__TRAITS_)
#define _EVENT_FORWARDER_STRUCTUREDPROXYPUSHSUPPLIER__TRAITS_
template<>
struct TAO_Notify_Export Objref_Traits< ::Event_Forwarder::StructuredProxyPushSupplier>
{
static ::Event_Forwarder::StructuredProxyPushSupplier_ptr duplicate (
::Event_Forwarder::StructuredProxyPushSupplier_ptr p
);
static void release (
::Event_Forwarder::StructuredProxyPushSupplier_ptr p
);
static ::Event_Forwarder::StructuredProxyPushSupplier_ptr nil (void);
static ::CORBA::Boolean marshal (
const ::Event_Forwarder::StructuredProxyPushSupplier_ptr p,
TAO_OutputCDR & cdr
);
};
#endif /* end #if !defined */
#if !defined (_EVENT_FORWARDER_PROXYPUSHSUPPLIER__TRAITS_)
#define _EVENT_FORWARDER_PROXYPUSHSUPPLIER__TRAITS_
template<>
struct TAO_Notify_Export Objref_Traits< ::Event_Forwarder::ProxyPushSupplier>
{
static ::Event_Forwarder::ProxyPushSupplier_ptr duplicate (
::Event_Forwarder::ProxyPushSupplier_ptr p
);
static void release (
::Event_Forwarder::ProxyPushSupplier_ptr p
);
static ::Event_Forwarder::ProxyPushSupplier_ptr nil (void);
static ::CORBA::Boolean marshal (
const ::Event_Forwarder::ProxyPushSupplier_ptr p,
TAO_OutputCDR & cdr
);
};
#endif /* end #if !defined */
}
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_interface/any_op_ch.cpp:54
#if defined (ACE_ANY_OPS_USE_NAMESPACE)
namespace Event_Forwarder
{
TAO_Notify_Export void operator<<= ( ::CORBA::Any &, StructuredProxyPushSupplier_ptr); // copying
TAO_Notify_Export void operator<<= ( ::CORBA::Any &, StructuredProxyPushSupplier_ptr *); // non-copying
TAO_Notify_Export ::CORBA::Boolean operator>>= (const ::CORBA::Any &, StructuredProxyPushSupplier_ptr &);
}
#else
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Notify_Export void operator<<= (::CORBA::Any &, Event_Forwarder::StructuredProxyPushSupplier_ptr); // copying
TAO_Notify_Export void operator<<= (::CORBA::Any &, Event_Forwarder::StructuredProxyPushSupplier_ptr *); // non-copying
TAO_Notify_Export ::CORBA::Boolean operator>>= (const ::CORBA::Any &, Event_Forwarder::StructuredProxyPushSupplier_ptr &);
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
#endif
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_interface/any_op_ch.cpp:54
#if defined (ACE_ANY_OPS_USE_NAMESPACE)
namespace Event_Forwarder
{
TAO_Notify_Export void operator<<= ( ::CORBA::Any &, ProxyPushSupplier_ptr); // copying
TAO_Notify_Export void operator<<= ( ::CORBA::Any &, ProxyPushSupplier_ptr *); // non-copying
TAO_Notify_Export ::CORBA::Boolean operator>>= (const ::CORBA::Any &, ProxyPushSupplier_ptr &);
}
#else
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Notify_Export void operator<<= (::CORBA::Any &, Event_Forwarder::ProxyPushSupplier_ptr); // copying
TAO_Notify_Export void operator<<= (::CORBA::Any &, Event_Forwarder::ProxyPushSupplier_ptr *); // non-copying
TAO_Notify_Export ::CORBA::Boolean operator>>= (const ::CORBA::Any &, Event_Forwarder::ProxyPushSupplier_ptr &);
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
#endif
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_interface/cdr_op_ch.cpp:55
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Notify_Export ::CORBA::Boolean operator<< (TAO_OutputCDR &, const Event_Forwarder::StructuredProxyPushSupplier_ptr );
TAO_Notify_Export ::CORBA::Boolean operator>> (TAO_InputCDR &, Event_Forwarder::StructuredProxyPushSupplier_ptr &);
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// TAO_IDL - Generated from
// d:\softs\ace_wrappers_vc10\tao\tao_idl\be\be_visitor_interface/cdr_op_ch.cpp:55
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
TAO_Notify_Export ::CORBA::Boolean operator<< (TAO_OutputCDR &, const Event_Forwarder::ProxyPushSupplier_ptr );
TAO_Notify_Export ::CORBA::Boolean operator>> (TAO_InputCDR &, Event_Forwarder::ProxyPushSupplier_ptr &);
TAO_END_VERSIONED_NAMESPACE_DECL
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
// TAO_IDL - Generated from
// be\be_codegen.cpp:1228
TAO_END_VERSIONED_NAMESPACE_DECL
#if defined (__ACE_INLINE__)
#include "Event_ForwarderC.inl"
#endif /* defined INLINE */
#include /**/ "ace/post.h"
#endif /* ifndef */
| [
"billpwchan@hotmail.com"
] | billpwchan@hotmail.com |
e9830208992ff0bea0e671f28aad76cc0cdfc6c3 | 87f6f18984f729ecc59ed320bfaf93790719a1f7 | /src/hardware/timer.cpp | df87c283fe9f066554165b17aae6469980e37274 | [] | no_license | k-ishigaki/motordriver2018 | ca2dddfeacf98315873ab5f7b9f43f813a635403 | 160e29f3f8c46af2afe77a9e4fb963936f26eec9 | refs/heads/master | 2020-03-27T08:08:27.617422 | 2019-11-07T12:47:41 | 2019-11-07T12:47:41 | 146,223,739 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,657 | cpp | #include "timer.hpp"
#include "../device/timer.hpp"
#include "hardware.hpp"
using namespace device::timer;
namespace ht = hardware::timer;
namespace ht2 = hardware::timer2;
template<class T> class Timer_ : public Timer {
using regs = timer_t<T::offset>;
public:
static Timer_<T>& getInstance(const ht::Config& config) {
static Timer_<T> instance;
uint8_t wfgMode = static_cast<uint8_t>(config.waveformGenerationMode);
regs::TCCRA.WGM_0 = wfgMode & 0b0001;
regs::TCCRA.WGM_1 = (wfgMode >> 1) & 0b0001;
regs::TCCRB.WGM_2 = (wfgMode >> 2) & 0b0001;
regs::TCCRB.WGM_3 = (wfgMode >> 3) & 0b0001;
regs::TCCRB.ICNC = static_cast<uint8_t>(config.inputCaptureNoiseCanceler);
regs::TCCRB.ICES = static_cast<uint8_t>(config.inputCaptureEdgeSelect);
regs::TCCRB.CS = static_cast<uint8_t>(config.clock);
return instance;
}
uint16_t getCount() override {
auto f = []() { return regs::TCNT; };
return hardware::noInterruptWithReturn(+f);
}
void setCount(uint16_t count) override {
auto f = [](uint16_t count) { regs::TCNT = count; };
hardware::noInterrupt(+f, count);
}
void start() override {
// start is not implemented
}
void stop() override {
// stop is not implemented
}
};
class Timer2 : public Timer {
using regs = timer2_t;
public:
static Timer2& getInstance(const ht2::Config& config) {
static Timer2 instance;
uint8_t wfgMode = static_cast<uint8_t>(config.waveformGenerationMode);
regs::TCCRA.WGM_0 = wfgMode & 0b0001;
regs::TCCRA.WGM_1 = (wfgMode >> 1) & 0b0001;
regs::TCCRB.WGM_2 = (wfgMode >> 2) & 0b0001;
regs::TCCRB.CS = static_cast<uint8_t>(config.clock);
return instance;
}
uint16_t getCount() override {
return regs::TCNT;
}
void setCount(uint16_t count) override {
regs::TCNT = count;
}
void start() override {
// start is not implemented
}
void stop() override {
// stop is not implemented
}
};
Timer& ht::get1(const Config& config) { return Timer_<timer1_t>::getInstance(config); }
Timer& ht::get3(const Config& config) { return Timer_<timer3_t>::getInstance(config); }
Timer& ht::get4(const Config& config) { return Timer_<timer4_t>::getInstance(config); }
Timer& ht2::get2(const Config& config) { return Timer2::getInstance(config); }
| [
"k-ishigaki@frontier.hokudai.ac.jp"
] | k-ishigaki@frontier.hokudai.ac.jp |
2cd6a1adcca9fd7caa250ecdd54b96bc927f3988 | df9d3bc42611d4e4464f9c9a68608550373be7de | /src/rpcdump.cpp | 97dec4bbbc7418209307f9d091df3c685b8c7b3d | [
"MIT"
] | permissive | peakcoin-project/Peakcoin | 5e7fd294b92f7586b4a42f566fa0d067de95b9be | 89435e9f256c92a08a550f9da26d4e3849b325be | refs/heads/master | 2016-09-11T22:42:05.892149 | 2016-05-23T10:59:49 | 2016-05-23T10:59:49 | 40,814,625 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,004 | cpp | // Copyright (c) 2009-2014 Bitcoin Developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "init.h" // for pwalletMain
#include "bitcoinrpc.h"
#include "ui_interface.h"
#include "base58.h"
#include <boost/lexical_cast.hpp>
#define printf OutputDebugStringF
using namespace json_spirit;
using namespace std;
class CTxDump
{
public:
CBlockIndex *pindex;
int64 nValue;
bool fSpent;
CWalletTx* ptx;
int nOut;
CTxDump(CWalletTx* ptx = NULL, int nOut = -1)
{
pindex = NULL;
nValue = 0;
fSpent = false;
this->ptx = ptx;
this->nOut = nOut;
}
};
Value importprivkey(const Array& params, bool fHelp)
{
if (fHelp || params.size() < 1 || params.size() > 3)
throw runtime_error(
"importprivkey <peakcoinprivkey> [label] [rescan=true]\n"
"Adds a private key (as returned by dumpprivkey) to your wallet.");
EnsureWalletIsUnlocked();
string strSecret = params[0].get_str();
string strLabel = "";
if (params.size() > 1)
strLabel = params[1].get_str();
// Whether to perform rescan after import
bool fRescan = true;
if (params.size() > 2)
fRescan = params[2].get_bool();
CBitcoinSecret vchSecret;
bool fGood = vchSecret.SetString(strSecret);
if (!fGood) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid private key encoding");
CKey key = vchSecret.GetKey();
CPubKey pubkey = key.GetPubKey();
CKeyID vchAddress = pubkey.GetID();
if (!key.IsValid()) throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Private key outside allowed range");
{
LOCK2(cs_main, pwalletMain->cs_wallet);
pwalletMain->MarkDirty();
pwalletMain->SetAddressBookName(vchAddress, strLabel);
if (!pwalletMain->AddKeyPubKey(key, pubkey))
throw JSONRPCError(RPC_WALLET_ERROR, "Error adding key to wallet");
if (fRescan) {
pwalletMain->ScanForWalletTransactions(pindexGenesisBlock, true);
pwalletMain->ReacceptWalletTransactions();
}
}
return Value::null;
}
Value dumpprivkey(const Array& params, bool fHelp)
{
if (fHelp || params.size() != 1)
throw runtime_error(
"dumpprivkey <peakcoinaddress>\n"
"Reveals the private key corresponding to <peakcoinaddress>.");
string strAddress = params[0].get_str();
CBitcoinAddress address;
if (!address.SetString(strAddress))
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Invalid Peakcoin address");
CKeyID keyID;
if (!address.GetKeyID(keyID))
throw JSONRPCError(RPC_TYPE_ERROR, "Address does not refer to a key");
CKey vchSecret;
if (!pwalletMain->GetKey(keyID, vchSecret))
throw JSONRPCError(RPC_WALLET_ERROR, "Private key for address " + strAddress + " is not known");
return CBitcoinSecret(vchSecret).ToString();
}
| [
"info@peakcoin.org"
] | info@peakcoin.org |
405ebcf0a0e748cb3e13437817f1dadda9d7a518 | 2b68fba58e493b38d80de9c4af9f9a0b40c286d9 | /Game.cpp | 39ee3ec01dc580898494a5f370a6d53a62b54ea8 | [] | no_license | motumotu/gyaruge | e5545db7fe900b4fc46c12c795f8b76798273694 | 3d403613fc333753fa8b65f2e6651f48dcd55340 | refs/heads/master | 2021-01-10T06:08:08.891463 | 2015-11-20T15:47:20 | 2015-11-20T15:47:20 | 46,569,453 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 2,253 | cpp | //-----------------------------------------------------------
// Game.cpp
// ゲーム中心部
// 制作日 2015.04.05
// 制作者 motumotu
//-----------------------------------------------------------
#include "Game.h"
//-----------------------------------------------------------
// コンストラクタ
//-----------------------------------------------------------
Game::Game()
{
game_data = new GameData();
game_state = new GameState(game_data);
game_manager = new GameManager(game_data, game_state);
init();
}
//-----------------------------------------------------------
// デストラクタ
//-----------------------------------------------------------
Game::~Game()
{
delete(game_manager);
delete(game_state);
delete(game_data);
}
//-----------------------------------------------------------
// 初期化
//-----------------------------------------------------------
void Game::init()
{
srand((unsigned)time(NULL));
}
//-----------------------------------------------------------
// 更新
//-----------------------------------------------------------
int Game::update()
{
game_manager->getFPSManager()->update(); // FPS計測
game_state->update(); // 状態更新
if (game_state->isGameEnd()) return -1; // ゲーム終了
game_manager->update(); // 更新
game_manager->getDrawManager()->draw(); // 描画
game_manager->getFPSManager()->wait(); // FPS待機
return 0;
}
//-----------------------------------------------------------
// メインループ
//-----------------------------------------------------------
int Game::mainLoop()
{
while (1) {
if (ProcessMessage() != 0) return -1; // システム処理
if (ClearDrawScreen() != 0) return -1; // 画面消去
if (update() != 0) return -1;
}
return 0;
}
//-----------------------------------------------------------
// 更新
//-----------------------------------------------------------
int Game::end()
{
return 0;
}
//===========================================================
// getter
//===========================================================
| [
"s13t270@stmail.eng.kagawa-u.ac.jp"
] | s13t270@stmail.eng.kagawa-u.ac.jp |
4624dceb313105f55bdf3729d3c2ac36834583b2 | 860ba53e293246322771ab6ad47f45ef57672c9e | /source/gui/library/QColorRampEditor/qcolorrampeditor.h | e45ac68bff82ac55370def2c69553af64723991a | [] | no_license | tHeBeStXu/QColorRampSlider | 808f60ee6529eab7ff590310e22325f08541dcea | e7d9163dfed7561d4fe389c290b37a2eea3e77eb | refs/heads/master | 2023-03-25T05:03:32.815636 | 2013-12-29T14:18:49 | 2013-12-29T14:18:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,479 | h | /****************************************************************************
**
** Copyright (c) 2012 Richard Steffen and/or its subsidiary(-ies).
** All rights reserved.
** Contact: rsteffen@messbild.de, rsteffen@uni-bonn.de
**
** QColorRampEditor is free to use unter the terms of the LGPL 2.1 License in
** Free and Commercial Products.
****************************************************************************/
#ifndef __QCOLORRAMPEDITOR_H__
#define __QCOLORRAMPEDITOR_H__
#include <QWidget>
#include <QColorDialog>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QPainter>
#include "qcolorrampeditor_global.h"
#include <iostream>
using namespace std;
// -----------------------------------------------------------
// QColorRampEditor ------------------------------------------
// -----------------------------------------------------------
class QColorRampEditorSlider;
class QRampWidget;
class QSlidersWidget;
class QSliderTextWidget;
class QColorRampEditor : public QWidget
{
Q_OBJECT
public:
/// Basic Constructor
QColorRampEditor(QWidget* parent=0, int orientation = Qt::Horizontal);
/// Destructor
virtual ~QColorRampEditor();
// define friends to access protected members
friend class QRampWidget;
friend class QSlidersWidget;
friend class QSliderTextWidget;
/// get the number of sliders
int getSliderNum();
/// set a color choose dlg
void setColorChoose(QColorDialog* coldlg);
/// set the update emitting when sliding
void setSlideUpdate(bool val);
/// return the Ramp definition
QVector<QPair<qreal, QColor> > getRamp();
/// return a 256 colortable from the ramp
QVector<QRgb> getColorTable();
/// set Ramp definition
void setRamp(QVector<QPair<qreal, QColor> > ramp);
/// set flag for visualize
void setMappingTextVisualize(bool);
/// set the text color
void setMappingTextColor(QColor);
/// set the text color
void setMappingTextAccuracy(int);
/// get the value of a slider
qreal updateValue(QColorRampEditorSlider* sl);
/// get the position
int updatePos(QColorRampEditorSlider* sl);
signals:
/// signal that hide is changed
void rampChanged();
public slots:
/// set the color of a slider to zero
void setSliderColor(int index, QColor col);
protected slots:
/// resize required
virtual void resizeEvent(QResizeEvent* e);
/// detect a mouse is pressed
virtual void mousePressEvent(QMouseEvent* e);
/// on update the ramp because sliders are changed
virtual void updateRamp();
protected:
/// sort the color ramp
static bool colorRampSort(const QPair<qreal, QColor> &a1, const QPair<qreal, QColor> &a2);
/// sort the slider list
static bool SliderSort(const QColorRampEditorSlider* a1, const QColorRampEditorSlider* a2);
/// all poses with its sliders
QList<QColorRampEditorSlider*> sliders_;
/// the orientation
int ori_;
/// bound space
int bspace_;
/// min and max value from initialization
qreal mi_, ma_;
/// the widgets drawint the ramp, the sliders, the text
QRampWidget* rampwid_;
QSlidersWidget* slidewid_;
QSliderTextWidget* textwid_;
/// the index of the active slider
int activeSlider_;
/// a color chooser dlg
QColorDialog* chooser_;
/// flag to visualize the mapping
bool visText_;
/// color of the text
QColor textColor_;
/// the text accuracy
int textAcc_;
/// continous update?
bool slideUpdate_;
};
// -----------------------------------------------------------
// QColorRampEditorSlider ------------------------------------
// -----------------------------------------------------------
class QColorRampEditorSlider : public QWidget
{
Q_OBJECT
public:
/// Constructor
QColorRampEditorSlider(int orientation = Qt::Horizontal, QColor col = Qt::black, QWidget* parent=0);
/// set the color of the slider
void setColor(QColor col);
/// get the color
QColor getColor();
/// the value
qreal val;
protected slots:
/// paint the widget
virtual void paintEvent(QPaintEvent* event);
protected:
/// the color of the slider
QColor color_;
/// the orientation
int ori_;
};
class QRampWidget : public QWidget
{
public:
QRampWidget(QWidget* parent=NULL);
QColorRampEditor* rampeditor_;
protected:
void paintEvent(QPaintEvent* e);
};
class QSlidersWidget : public QWidget
{
Q_OBJECT
public:
/// Constructor
QSlidersWidget(QWidget* parent=NULL);
QColorRampEditor* rampeditor_;
protected slots:
/// detect a mouse is pressed
virtual void mousePressEvent(QMouseEvent* e);
/// detect a mouse is moved
virtual void mouseMoveEvent(QMouseEvent* e);
/// detect a mouse is released
virtual void mouseReleaseEvent(QMouseEvent* e);
/// detect a mouse is released
virtual void mouseDoubleClickEvent(QMouseEvent* e);
protected:
/// the active slider
int activeSlider_;
};
class QSliderTextWidget : public QWidget
{
public:
QSliderTextWidget(QWidget* parent=NULL);
QColorRampEditor* rampeditor_;
protected:
void paintEvent(QPaintEvent* e);
};
#endif
| [
"jjalageas@yahoo.com"
] | jjalageas@yahoo.com |
2459bb5562099b8625fc46ab69fbe8e258d6f1d5 | eefebad53ed8573d5a0ac95d0b04e1ed91c837db | /lib/Blynk/src/BlynkSimpleEsp8266.h | a61552dc79f4f43a84374d5f7a676e742a2ec1dc | [
"Apache-2.0",
"MIT",
"LicenseRef-scancode-proprietary-license"
] | permissive | Firemanpl/ws2812b-automatic-on-lights | ce8d6abc4be0229adf691e10d75742540839df22 | 03c12826ed185d6cdb4d9e412e6a641856409451 | refs/heads/master | 2022-09-17T08:42:02.647738 | 2020-05-29T19:45:30 | 2020-05-29T19:45:30 | 258,451,299 | 5 | 2 | Apache-2.0 | 2020-05-13T15:03:16 | 2020-04-24T08:22:58 | C++ | UTF-8 | C++ | false | false | 2,782 | h | /**
* @file BlynkSimpleEsp8266.h
* @author Volodymyr Shymanskyy
* @license This project is released under the MIT License (MIT)
* @copyright Copyright (c) 2015 Volodymyr Shymanskyy
* @date Jan 2015
* @brief
*
*/
#ifndef BlynkSimpleEsp8266_h
#define BlynkSimpleEsp8266_h
#ifndef ESP8266
#error This code is intended to run on the ESP8266 platform! Please check your Tools->Board setting.
#endif
#include <version.h>
#if ESP_SDK_VERSION_NUMBER < 0x020200
#error Please update your ESP8266 Arduino Core
#endif
#include <BlynkApiArduino.h>
#include <Blynk/BlynkProtocol.h>
#include <Adapters/BlynkArduinoClient.h>
#include <ESP8266WiFi.h>
class BlynkWifi
: public BlynkProtocol<BlynkArduinoClient>
{
typedef BlynkProtocol<BlynkArduinoClient> Base;
public:
BlynkWifi(BlynkArduinoClient& transp)
: Base(transp)
{}
void connectWiFi(const char* ssid, const char* pass)
{
BLYNK_LOG2(BLYNK_F("Connecting to "), ssid);
WiFi.mode(WIFI_STA);
if (WiFi.status() != WL_CONNECTED) {
if (pass && strlen(pass)) {
WiFi.begin(ssid, pass);
} else {
WiFi.begin(ssid);
}
}
while (WiFi.status() != WL_CONNECTED) {
BlynkDelay(500);
}
BLYNK_LOG1(BLYNK_F("Connected to WiFi"));
IPAddress myip = WiFi.localIP();
BLYNK_LOG_IP("IP: ", myip);
}
void config(const char* auth,
const char* domain = BLYNK_DEFAULT_DOMAIN,
uint16_t port = BLYNK_DEFAULT_PORT)
{
Base::begin(auth);
this->conn.begin(domain, port);
}
void config(const char* auth,
IPAddress ip,
uint16_t port = BLYNK_DEFAULT_PORT)
{
Base::begin(auth);
this->conn.begin(ip, port);
}
void begin(const char* auth,
const char* ssid,
const char* pass,
const char* domain = BLYNK_DEFAULT_DOMAIN,
uint16_t port = BLYNK_DEFAULT_PORT)
{
connectWiFi(ssid, pass);
config(auth, domain, port);
while(this->connect() != true) {}
}
void begin(const char* auth,
const char* ssid,
const char* pass,
IPAddress ip,
uint16_t port = BLYNK_DEFAULT_PORT)
{
connectWiFi(ssid, pass);
config(auth, ip, port);
while(this->connect() != true) {}
}
};
static WiFiClient _blynkWifiClient;
static BlynkArduinoClient _blynkTransport(_blynkWifiClient);
BlynkWifi Blynk(_blynkTransport);
#include <BlynkWidgets.h>
#endif
| [
"kamils1234567@gmail.com"
] | kamils1234567@gmail.com |
003247fe7eb7edd3aeba53da30beacc13cd90394 | 53fc87233b98649747082449ac55169316f57ca7 | /Eigen/Matrix Sınıfı/atamaVeResize/Eigen/Eigen.cpp | 4c448ee9245252fca8e73b672c292b6fb0103d12 | [] | no_license | okaandmrl/Modern_Cpp_WebSite | 61446de43a8d4342d530d2ad1b45317e57559ed5 | 04539b096bf7d39e2c9b4dd11cacc1e0cd012400 | refs/heads/master | 2020-07-06T23:15:07.820336 | 2019-07-17T11:05:55 | 2019-07-17T11:05:55 | 203,168,738 | 0 | 0 | null | 2019-08-19T12:31:03 | 2019-08-19T12:31:02 | null | UTF-8 | C++ | false | false | 404 | cpp | // Eigen.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <Eigen>
#include <iostream>
using namespace Eigen;
using namespace std;
int main()
{
MatrixXf a(2, 2);
cout << "a matrisinin boyutu: " << a.rows() << "x" << a.cols() << endl;
MatrixXf b(3, 3);
a = b;
cout << "a matrisinin yeni boyutu: " << a.rows() << "x" << a.cols() << endl;
return 0;
}
| [
"farukcansoray@gmail.com"
] | farukcansoray@gmail.com |
2b8e1a813b31e99d967b58d1eeb987b4a8677197 | 390f357fec98ab6c886ee504f27e7127869c419b | /c++类.cpp | ef01d822098b7844743d877f22343471d3187c99 | [] | no_license | baibaixue/acm | 696f9aa948465166c75fadba28851f7028ab00e1 | 07cac352d8dc23c2e3cf0b84f65fda6afbf3707e | refs/heads/master | 2021-07-04T07:51:37.380678 | 2020-11-06T15:00:14 | 2020-11-06T15:00:14 | 195,429,206 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,345 | cpp | #include<cstdio>
#include<iostream>
using namespace std;
const int month_day[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};//常量数组
class Date{
public:
Date(){//无参数的构造函数
year=2007;
month=1;
day=1;
}
Date(int y,int m,int d){//函数重载 有参数的构造函数
year=y;
month=m;
day=d;
}
void set_time(){//读入用户数据
cout<<"请输入日期(eg:年 月 日):";
cin>>year>>month>>day;
}
void show_time(){//输出日期
cout<<"日期:"<<year<<"/"<<month<<"/"<<day<<endl;
}
int days();
void next_day(Date& p);//引用类并对类中的私有数据进行修改
void weekend();//判断这一天是星期几
bool leap_year();//判断该年是否是闰年
void integration(Date& d);//将各功能整合在一起
~Date() {//析构函数
cout<<"相应内存已被释放。"<<endl;
}
private:
int year,month,day;//私有数据
};
bool Date::leap_year(){
if((year%4==0&&year%100!=0)||(year%400==0)){
cout<<"这一年是闰年。"<<endl;
return true;
}
cout<<"这一年是平年。"<<endl;
return false;
}
int Date::days(){
int sum=0;
for(int i=0;i<month;i++){
sum+=month_day[i];
}
sum+=day;
if(leap_year()==1&&month>2){
sum++;
}
cout<<"这一天是这一年的第"<<sum<<"天。"<<endl;
return sum;
}
void Date::weekend(){
int sum=0;
int x=year%100;
sum=(x-1)+(x-1)/4-(x-1)/100+(x-1)/400+days();
sum=sum%7;
cout<<"这一天是星期";
switch(sum){
case 0:cout<<"日。"<<endl;break;
case 1:cout<<"一。"<<endl;break;
case 2:cout<<"二。"<<endl;break;
case 3:cout<<"三。"<<endl;break;
case 4:cout<<"四。"<<endl;break;
case 5:cout<<"五。"<<endl;break;
case 6:cout<<"六。"<<endl;break;
}
return ;
}
void Date::next_day(Date& d){
d.day++;
if(d.day>month_day[d.month]){
if(((d.year%4==0&&d.year%100!=0)||(d.year%400==0))&&d.month==2);
else{
d.day%=month_day[d.month];
d.month++;
if(d.month>12){
d.month%=12;
d.year++;
}
}
}
cout<<"下一天";
}
void Date::integration(Date& d){
show_time();//输出数据
weekend();//判断这一天是星期几
next_day(d);
show_time();//输出修改后的数据
cout<<"\n";
}
int main(){
cout<<"默认数据:"<<endl;
Date t0;
t0.integration(t0);
cout<<"设置数据:"<<endl;
Date t1(2005,2,28);//设置数据
t1.integration(t1);
cout<<"复制结果:";
Date t2(t1);//复制构造函数 复制修改后t1的数据
t2.integration(t2);
cout<<"读入数据:"<<endl;
Date t3;
t3.set_time();//读入用户数据
t3.integration(t3);
return 0;
}
/*输出结果:
————————————————————————————————————————————
默认数据:
日期:2007/1/1
这一年是平年。
这一天是这一年的第1天。
这一天是星期一。
下一天日期:2007/1/2
设置数据:
日期:2005/2/28
这一年是平年。
这一天是这一年的第59天。
这一天是星期一。
下一天日期:2005/3/1
复制结果:日期:2005/3/1
这一年是平年。
这一天是这一年的第60天。
这一天是星期二。
下一天日期:2005/3/2
读入数据:
请输入日期(eg:年 月 日):2018 12 31
日期:2018/12/31
这一年是平年。
这一天是这一年的第365天。
这一天是星期一。
下一天日期:2019/1/1
相应内存已被释放。
相应内存已被释放。
相应内存已被释放。
相应内存已被释放。
——————————————————————————————————————————
*/
| [
"52575446+baibaixue@users.noreply.github.com"
] | 52575446+baibaixue@users.noreply.github.com |
407fedd826b19ce15b3643520224e40dd757ff2f | 6dcc896b27c8e425f30ebaf891fdd5270647cb14 | /src/vsg/viewer/EllipsoidModel.cpp | 913dec8769a14638fc072a31b721ea237e4aa31c | [
"MIT"
] | permissive | kallr/VulkanSceneGraph | 60f8f3e3b734f019e2449d7434eb44cabf0139a7 | 1f64f315f4148210604a4282e643a260bb4127c9 | refs/heads/master | 2022-06-17T21:55:16.569172 | 2020-05-07T13:53:01 | 2020-05-07T13:53:01 | 262,469,895 | 1 | 0 | null | 2020-05-09T02:15:04 | 2020-05-09T02:15:04 | null | UTF-8 | C++ | false | false | 5,500 | cpp | /* <editor-fold desc="MIT License">
Copyright(c) 2018 Robert Osfield
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</editor-fold> */
#include <vsg/maths/transform.h>
#include <vsg/viewer/EllipsoidModel.h>
using namespace vsg;
EllipsoidModel::EllipsoidModel(double rEquator, double rPolar) :
_radiusEquator(rEquator),
_radiusPolar(rPolar)
{
_computeEccentricitySquared();
}
void EllipsoidModel::_computeEccentricitySquared()
{
double flattening = (_radiusEquator - _radiusPolar) / _radiusEquator;
_eccentricitySquared = 2 * flattening - flattening * flattening;
}
void EllipsoidModel::read(Input& input)
{
Object::read(input);
input.read("radiusEquator", _radiusEquator);
input.read("radiusPolar", _radiusPolar);
_computeEccentricitySquared();
}
void EllipsoidModel::write(Output& output) const
{
Object::write(output);
output.write("radiusEquator", _radiusEquator);
output.write("radiusPolar", _radiusPolar);
}
// latitude and longitude in radians
dvec3 EllipsoidModel::convertLatLongHeightToECEF(const dvec3& lla) const
{
const double latitude = lla[0];
const double longitude = lla[1];
const double height = lla[2];
// for details on maths see https://en.wikipedia.org/wiki/ECEF
double sin_latitude = sin(latitude);
double cos_latitude = cos(latitude);
double N = _radiusEquator / sqrt(1.0 - _eccentricitySquared * sin_latitude * sin_latitude);
return dvec3((N + height) * cos_latitude * cos(longitude),
(N + height) * cos_latitude * sin(longitude),
(N * (1 - _eccentricitySquared) + height) * sin_latitude);
}
dmat4 EllipsoidModel::computeLocalToWorldTransform(const dvec3& lla) const
{
dvec3 ecef = convertLatLongHeightToECEF(lla);
const double latitude = lla[0];
const double longitude = lla[1];
// Compute up, east and north vector
dvec3 up(cos(longitude) * cos(latitude), sin(longitude) * cos(latitude), sin(latitude));
dvec3 east(-sin(longitude), cos(longitude), 0.0);
dvec3 north = cross(up, east);
dmat4 localToWorld = vsg::translate(ecef);
// set matrix
localToWorld(0, 0) = east[0];
localToWorld(0, 1) = east[1];
localToWorld(0, 2) = east[2];
localToWorld(1, 0) = north[0];
localToWorld(1, 1) = north[1];
localToWorld(1, 2) = north[2];
localToWorld(2, 0) = up[0];
localToWorld(2, 1) = up[1];
localToWorld(2, 2) = up[2];
return localToWorld;
}
dmat4 EllipsoidModel::computeWorldToLocalTransform(const dvec3& lla) const
{
return vsg::inverse(computeLocalToWorldTransform(lla));
}
// latitude and longitude in radians
dvec3 EllipsoidModel::convertECEFToLatLongHeight(const dvec3& ecef) const
{
double latitude, longitude, height;
const double PI_2 = PI * 0.5;
// handle polar and center-of-earth cases directly.
if (ecef.x != 0.0)
longitude = atan2(ecef.y, ecef.x);
else
{
if (ecef.y > 0.0)
longitude = PI_2;
else if (ecef.y < 0.0)
longitude = -PI_2;
else
{
// at pole or at center of the earth
longitude = 0.0;
if (ecef.z > 0.0)
{ // north pole.
latitude = PI_2;
height = ecef.z - _radiusPolar;
}
else if (ecef.z < 0.0)
{ // south pole.
latitude = -PI_2;
height = -ecef.z - _radiusPolar;
}
else
{ // center of earth.
latitude = PI_2;
height = -_radiusPolar;
}
return dvec3(latitude, longitude, height);
}
}
// http://www.colorado.edu/geography/gcraft/notes/datum/gif/xyzllh.gif
double p = sqrt(ecef.x * ecef.x + ecef.y * ecef.y);
double theta = atan2(ecef.z * _radiusEquator, (p * _radiusPolar));
double eDashSquared = (_radiusEquator * _radiusEquator - _radiusPolar * _radiusPolar) /
(_radiusPolar * _radiusPolar);
double sin_theta = sin(theta);
double cos_theta = cos(theta);
latitude = atan((ecef.z + eDashSquared * _radiusPolar * sin_theta * sin_theta * sin_theta) /
(p - _eccentricitySquared * _radiusEquator * cos_theta * cos_theta * cos_theta));
double sin_latitude = sin(latitude);
double N = _radiusEquator / sqrt(1.0 - _eccentricitySquared * sin_latitude * sin_latitude);
height = p / cos(latitude) - N;
return dvec3(latitude, longitude, height);
}
| [
"robert@openscenegraph.com"
] | robert@openscenegraph.com |
a055c58a300cb0f391df287e32c788a56bbdb17d | 6a16cfe00d6eab2cd4903642637a77ccf33f149d | /MyVlc/.svn/pristine/db/db78a7c108dc01ade5916e68225ca56a2aa9c2e2.svn-base | 65e49c9e7e0db38404c65e0bdff9c0dbdc82c7b5 | [] | no_license | yzx0308/2018-9-6-_Test | f8d367ac3158df22909e7f6afca51c41fcb0d22f | 799cf74126032f0d84e3f4adbc69bec7de2f8da5 | refs/heads/master | 2020-03-28T03:27:22.065434 | 2018-09-06T10:16:38 | 2018-09-06T10:16:38 | 147,646,629 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 789 | #ifndef SHOWPIC_H
#define SHOWPIC_H
#include <QThread>
#include <QImage>
#include <QString>
#include <QDateTime>
#include <QTime>
#include <QTimer>
#include <QDir>
#include "myvlc.h"
class ShowPic : public QThread
{
Q_OBJECT
public:
explicit ShowPic(QObject *parent = 0, quint32 Hz = 0);
~ShowPic();
int init();
QString url;
MyVlc *vlc;
bool isPlay;
bool isStop;
quint32 saveHz;
int threadNum;
QString mSavePath;
protected:
void run();
void stop();
private:
bool runFlag;
QTime mStartTime;
QTime mCurTime;
QTimer *mTimer;
QTimer *mCpTimer;
bool mTimerFlag;
int snapCount;
signals:
void emtSavePic(QString );
public slots:
void onTimeout();
void onCpTimeout();
};
#endif // SHOWPIC_H
| [
"zexingy@126.com"
] | zexingy@126.com | |
dbe97659c14e5facf5f0e03001e258135bd15c5e | 80ebe41d667deb94da96585525e4b4f4638476cd | /BattleCityApp/BattleCityApp/control_tanks.cpp | f55fd89e3df9bacb1a8a070480b138a2dd755a98 | [] | no_license | HelgeID/BattleCityApp | 0a1f6a4ff4ebc00424923eaf843ecfadd291d215 | c9d74b1a6816d031ffd55c93410eb91ccc5a66e6 | refs/heads/master | 2020-06-28T22:41:40.067080 | 2019-07-31T08:00:00 | 2019-10-13T20:19:27 | 199,274,849 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,176 | cpp | //FINAL
#include "field.h"
#include "general.hpp"
#include <time.h>
int CONTROL_NUMBER_CURRENT_TANKS(GameField* gField)
{
int counter_tanks(0);
for (auto it = gField->tank.begin(); it != gField->tank.end(); ++it)
if (it->isTank())
counter_tanks = counter_tanks + 1;
return counter_tanks;
}
bool CONTROL_CollisionTanksBS(GameField* gField)
{
for (auto it = gField->tank.begin(); it != gField->tank.end(); ++it) {
if (!it->isTank())
continue;
if (it->takeObj().getGlobalBounds().intersects(gField->l_BS->takeObj().getGlobalBounds()))
return true;
if (it->takeObj().getGlobalBounds().intersects(gField->r_BS->takeObj().getGlobalBounds()))
return true;
if (it->takeObj().getGlobalBounds().intersects(gField->c_BS->takeObj().getGlobalBounds()))
return true;
}
return false;
}
bool CONTROL_CollisionTanksTank(GameField* gField, Tank& tank)
{
for (auto it = gField->tank.begin(); it != gField->tank.end(); ++it) {
if (&*it == &tank)
continue;
if (it->takeObj().getGlobalBounds().intersects(tank.takeObj().getGlobalBounds()))
return true;
}
return false;
}
bool CONTROL_CheckFinishTimeAnim(GameField* gField, const int index)
{
std::lock_guard<std::mutex> lg(mtx);
if (gField->tankAnimArr[index].tankBirth == nullptr) {
gField->tank[index].onTank();
return true;
}
if (!gField->tankAnimArr[index].tankBirth->FinishTime()) {
return false;
}
else {
gField->tank[index].onTank();
return true;
}
}
bool CONTROL_OffAllAnim(GameField* gField)
{
return (gField->tankAnimArr[0].tankBirth == nullptr &&
gField->tankAnimArr[1].tankBirth == nullptr &&
gField->tankAnimArr[2].tankBirth == nullptr &&
gField->tankAnimArr[3].tankBirth == nullptr &&
gField->tankAnimArr[4].tankBirth == nullptr &&
gField->tankAnimArr[5].tankBirth == nullptr
);
}
void LAUNCHING_TANKS(GameField* gField, const int value)
{
srand(time(NULL)); //for rand()
int indexTank(-1);
auto reload_tank = [&](sf::Vector2f pos)
{
std::lock_guard<std::mutex> lg(mtx);
gField->ReloadTank(gField->tank[++indexTank], pos);
};
auto create_anim = [&](const size_t _index, const sf::Vector2f& pos)
{
{ //searching for an empty place
for (size_t index = _index; index < 6; index++)
if (gField->tankAnimArr[index].tankBirth == nullptr) {
{ std::lock_guard<std::mutex> lg(mtx); gField->CreateAnimBirth(pos, index); gField->usesUI_tank(); }
break;
}
}
reload_tank(pos);
};
auto random1 = [&](const size_t index, const bool flag)
{
mtx.lock();
gField->c_BS->Spawn() = flag;
mtx.unlock();
//read position for animation
sf::Vector2f pos_center{ gField->c_BS->getPosObj() };
create_anim(index, pos_center);
return;
};
auto random2 = [&](const size_t index, const bool flag)
{
mtx.lock();
gField->l_BS->Spawn() = flag;
gField->r_BS->Spawn() = flag;
mtx.unlock();
//read position for animation
sf::Vector2f pos_left{ gField->l_BS->getPosObj() };
sf::Vector2f pos_right{ gField->r_BS->getPosObj() };
create_anim(index, pos_left);
create_anim(index, pos_right);
return;
};
auto random3 = [&](const size_t index, const bool flag)
{
random1(index, flag);
random2(index, flag);
return;
};
//********************************************************
// ** start **
//********************************************************
if (!no_close)
return;
gField->LAUNCHING_TANKS_ON_OFF = true;
//search variant
int variant = (rand() % 3 + 1);
///random ->> 1 *
///random ->> 2 * *
///random ->> 3 * * *
//part 1, (add 1) or (add 2) or (add 3)
sf::sleep(sf::milliseconds(2000));
if (!no_close)
return;
switch (variant)
{
case 1: random1(0, false); gField->number_loaded_tanks += 1; break;
case 2: random2(0, false); gField->number_loaded_tanks += 2; break;
case 3: random3(0, false); gField->number_loaded_tanks += 3; break;
}
if (variant == 1) {
while ((!CONTROL_CheckFinishTimeAnim(gField, 0)) && no_close)
;
}
else
if (variant == 2) {
while ((!CONTROL_CheckFinishTimeAnim(gField, 0) || !CONTROL_CheckFinishTimeAnim(gField, 1)) && no_close)
;
}
else
if (variant == 3) {
while ((!CONTROL_CheckFinishTimeAnim(gField, 0) || !CONTROL_CheckFinishTimeAnim(gField, 1) || !CONTROL_CheckFinishTimeAnim(gField, 2)) && no_close)
;
}
//part 2, (add 3) or (add 2) or (add 1)
sf::sleep(sf::milliseconds(2000));
if (!no_close)
return;
while (CONTROL_CollisionTanksBS(gField) && no_close)
sf::sleep(sf::milliseconds(300));
switch (variant)
{
case 1: random3(1, true); gField->number_loaded_tanks += 3; break; // 1 + 3 == sum 4
case 2: random2(2, true); gField->number_loaded_tanks += 2; break; // 2 + 2 == sum 4
case 3: random1(3, true); gField->number_loaded_tanks += 1; break; // 3 + 1 == sum 4
}
while (true) {
if (!no_close)
return;
if (CONTROL_OffAllAnim(gField))
{
std::lock_guard<std::mutex> lg(mtx);
gField->l_BS->Spawn() = false;
gField->r_BS->Spawn() = false;
gField->c_BS->Spawn() = false;
break;
}
sf::sleep(sf::milliseconds(300));
}
if (!no_close)
return;
{
std::lock_guard<std::mutex> lg(mtx);
std::vector<Tank>::iterator first = gField->tank.begin();
std::vector<Tank>::iterator current = gField->tank.begin() + variant;
const int distance = std::distance(first, current);
int indexTank(0);
std::for_each(gField->tank.begin(), gField->tank.end(), [&](Tank &tank)
{
if (indexTank >= distance && indexTank < 4)
tank.onTank();
indexTank = indexTank + 1;
});
}
if (p_player && p_player == 2) {
if (!no_close)
return;
LOAD_TANK(gField); //(add 5)
sf::sleep(sf::milliseconds(1500));
if (!no_close)
return;
LOAD_TANK(gField); //(add 6)
}
//std::cerr << "\a";
gField->LAUNCHING_TANKS_ON_OFF = false;
return;
}
void LAUNCHING_TANKS_NUM(GameField* gField, const int numTanks)
{
if (!no_close)
return;
gField->LAUNCHING_TANKS_ON_OFF = true;
sf::sleep(sf::milliseconds(3500));
if (!no_close)
return;
int index(numTanks);
do {
LOAD_TANK(gField);
sf::sleep(sf::milliseconds(750));
} while (--index && no_close);
//std::cerr << "\a";
gField->LAUNCHING_TANKS_ON_OFF = false;
return;
}
void LOAD_TANK(GameField* gField)
{
srand(time(NULL)); //for rand()
auto reload_tank = [&](sf::Vector2f pos, int& indexTank) {
std::lock_guard<std::mutex> lg(mtx);
int count(0);
for (auto it = gField->tank.begin(); it != gField->tank.end(); ++it) {
if (!it->isTank()) {
gField->ReloadTank(*it, pos);
indexTank = count;
break;
}
++count;
}
return;
};
auto create_anim = [&](const sf::Vector2f& pos)
{
size_t _index;
{ //searching for an empty place
research:
;
for (size_t index = 0; index < 6; index++) {
if (gField->tankAnimArr[index].tankBirth == nullptr) {
{ std::lock_guard<std::mutex> lg(mtx); gField->CreateAnimBirth(pos, index); gField->usesUI_tank(); }
_index = index;
goto exit;
}
}
sf::sleep(sf::milliseconds(300));
goto research;
}
exit:
;
return _index;
};
//********************************************************
// ** start **
//********************************************************
//some verification
gField->number_loaded_tanks = gField->number_loaded_tanks + 1;
if (gField->number_loaded_tanks > gField->number_all_tanks)
{
gField->number_loaded_tanks = gField->number_loaded_tanks - 1;
return;
}
//pass control to load the tank (wait)
if (!gField->permit_generation_tanks) {
std::lock_guard<std::mutex> lg(mtx);
gField->permit_generation_tanks = true;
}
else {
int counter(0);
while (gField->permit_generation_tanks) {
std::for_each(gField->tank.begin(), gField->tank.end(), [&](Tank &tank) { !tank.isTank() ? counter++ : NULL; });
if ((counter == 4 && p_player == 1) || (counter == 6 && p_player == 2))
gField->permit_generation_tanks = false;
else
counter = 0;
sf::sleep(sf::milliseconds(300));
}
{
std::lock_guard<std::mutex> lg(mtx);
gField->permit_generation_tanks = true;
}
}
if (!gField->tank.size())
return;
sf::sleep(sf::milliseconds(1000));
sf::Vector2f pos{ 0.f, 0.f };
int place; // "l" or "r" or "c"
while (CONTROL_CollisionTanksBS(gField))
sf::sleep(sf::milliseconds(300));
while (true)
{
place = (rand() % 3 + 1);
if (place == 1 && !gField->l_BS->Spawn()) {
gField->l_BS->Spawn() = true;
pos = gField->l_BS->getPosObj();
break;
}
if (place == 2 && !gField->r_BS->Spawn()) {
gField->r_BS->Spawn() = true;
pos = gField->r_BS->getPosObj();
break;
}
if (place == 3 && !gField->c_BS->Spawn()) {
gField->c_BS->Spawn() = true;
pos = gField->c_BS->getPosObj();
break;
}
}
//get the index of the created animation
size_t ind = create_anim(pos);
//waiting for the animation to finish
while (true) {
if (gField->tankAnimArr[ind].tankBirth == nullptr)
break;
sf::sleep(sf::milliseconds(50));
}
switch (place)
{
case 1: gField->l_BS->Spawn() = false; break;
case 2: gField->r_BS->Spawn() = false; break;
case 3: gField->c_BS->Spawn() = false; break;
}
if (!gField->tank.size())
return;
int indexTank(-1);
reload_tank(pos, indexTank);
if (indexTank != -1) {
while (CONTROL_CollisionTanksTank(gField, gField->tank[indexTank]))
sf::sleep(sf::milliseconds(300));
gField->tank[indexTank].sleepTank() = false;
gField->tank[indexTank].frontModeTank() = false;
gField->tank[indexTank].onTank();
gField->permit_generation_tanks = false;
}
return;
}
//////////////////////////////////////////////////////////////////////////
// main spawn enemies
//////////////////////////////////////////////////////////////////////////
void ControlSpawnEnemies(GameField* gField, const int value)
{
if (!no_close)
return;
int max_number_tanks{ 0 };
p_player == 1 ? max_number_tanks = 4 : 0;
p_player == 2 ? max_number_tanks = 6 : 0;
//call new thread for LAUNCHING_TANKS
std::unique_ptr<std::thread> thread_launching_tanks_start(new std::thread([&] {
gField->mThreads.callFuncInNewThread<GameField*>(&LAUNCHING_TANKS, gField);
}));
thread_launching_tanks_start->detach();
sf::sleep(sf::milliseconds(3000));
if (!no_close)
return;
while (gField->number_dead_tanks < gField->number_all_tanks && no_close)
{
while (gField->LAUNCHING_TANKS_ON_OFF && no_close)
sf::sleep(sf::milliseconds(300));
int numTanks(0); //number of tanks that have to go into the field
{
const int number_curr_tanks(CONTROL_NUMBER_CURRENT_TANKS(gField));
int var1, var2;
(var1 = max_number_tanks - number_curr_tanks) < (var2 = gField->number_all_tanks - gField->number_dead_tanks) ?
numTanks = var1 : numTanks = var2;
}
if (numTanks)
{
//call new thread for LAUNCHING_TANKS_NUM
std::unique_ptr<std::thread> thread_launching_tanks_num_start(new std::thread([&] {
gField->mThreads.callFuncInNewThread<GameField*>(&LAUNCHING_TANKS_NUM, gField, numTanks);
}));
thread_launching_tanks_num_start->detach();
}
sf::sleep(sf::milliseconds(3000));
if (!no_close)
return;
if (gField->completion_generation_tanks)
return;
}
}
| [
"helgeguley@gmail.com"
] | helgeguley@gmail.com |
4e6d5bb11b4e078c89379beff630685f763eca27 | d83ceeafd709e03577d0ed5f996719128b621223 | /Baekjoon/Baekjoon/15786_Send_me_the_money.cpp | cefd2f8d02a73fc5b640136fd897af02cea3d5a3 | [] | no_license | hyunynim/Algorithm_Study | 58b56457e48471dfc3a6de2a758534babfffe4c0 | 1112a57ef95344b66f8313464f5fde428bb5bc3d | refs/heads/master | 2021-10-18T16:20:25.524826 | 2019-01-15T08:39:32 | 2019-01-15T08:39:32 | 125,656,431 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 409 | cpp | #include<cstdio>
int main() {
int n, m;
char msg[2][1123];
scanf("%d %d", &n, &m);
scanf("%s", msg[0]);
for (int i = 0; i < m; ++i) {
scanf("%s", msg[1]);
int j = 0, k = 0;
while (msg[0][j] != '\0' && msg[1][k] != '\0') {
if (msg[0][j] == msg[1][k])
++j;
++k;
}
if ((msg[0][j] == '\0' && msg[0][k] == '\0') || msg[0][j] == '\0')
printf("true\n");
else
printf("false\n");
}
} | [
"hyunynim1@naver.com"
] | hyunynim1@naver.com |
16a3b08a76ca9b9a405bbe5fa09c53d3f93515d9 | 4028ea6384ce6805c1c97c84bbc8c61421ccf2d2 | /src/plugins/mcdl/mcdllineformat.cpp | 1a8884bbab52e822378271c9873f96f46ff337bd | [
"BSD-3-Clause"
] | permissive | armando-2011/chemkit | 4a185978e13b51b3cac9a7420468f324f2047cc2 | 909b26821c6d9d52ceb7f09f423c5c9136e5f55c | refs/heads/master | 2021-01-18T00:45:36.955340 | 2011-10-13T22:53:34 | 2011-10-13T22:53:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,700 | cpp | /******************************************************************************
**
** Copyright (C) 2009-2011 Kyle Lutz <kyle.r.lutz@gmail.com>
** All rights reserved.
**
** This file is a part of the chemkit project. For more information
** see <http://www.chemkit.org>.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
** * Neither the name of the chemkit project nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**
******************************************************************************/
#include "mcdllineformat.h"
#include "mcdlreader.h"
// === McdlLineFormat ====================================================== //
// --- Construction and Destruction ---------------------------------------- //
McdlLineFormat::McdlLineFormat()
: chemkit::LineFormat("mcdl")
{
}
McdlLineFormat::~McdlLineFormat()
{
}
// --- Input and Output ---------------------------------------------------- //
bool McdlLineFormat::read(const std::string &formula, chemkit::Molecule *molecule)
{
McdlReader reader;
bool ok = reader.read(formula, molecule);
if(!ok){
setErrorString(reader.errorString());
}
return ok;
}
std::string McdlLineFormat::write(const chemkit::Molecule *molecule)
{
CHEMKIT_UNUSED(molecule);
setErrorString("MCDL write not supported.");
return std::string();
}
| [
"kyle.r.lutz@gmail.com"
] | kyle.r.lutz@gmail.com |
5a9655798762b8f383db15c37761f4ca9ed6a7bb | 0b3f5eea6c5cf7ee1e87c5d59f1d8cf97caa6853 | /include/util/safebuf.h | ef520658dff88dca304200289f64f173deca239c | [] | no_license | jonghunDB/SciDB | fc04533c9eddd00bcf10ea83b2d0838637daa518 | 20ec3b7785e8e7b149c9b9876c240ab135eed068 | refs/heads/master | 2020-05-07T06:12:21.093476 | 2019-04-17T10:28:07 | 2019-04-17T10:28:07 | 180,303,383 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,038 | h | /*
**
* BEGIN_COPYRIGHT
*
* Copyright (C) 2017-2018 SciDB, Inc.
* All Rights Reserved.
*
* SciDB is free software: you can redistribute it and/or modify
* it under the terms of the AFFERO GNU General Public License as published by
* the Free Software Foundation.
*
* SciDB is distributed "AS-IS" AND WITHOUT ANY WARRANTY OF ANY KIND,
* INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
* NON-INFRINGEMENT, OR FITNESS FOR A PARTICULAR PURPOSE. See
* the AFFERO GNU General Public License for the complete license terms.
*
* You should have received a copy of the AFFERO GNU General Public License
* along with SciDB. If not, see <http://www.gnu.org/licenses/agpl-3.0.html>
*
* END_COPYRIGHT
*/
/**
* @file safebuf.h
* @brief Buffer class for holding sensitive information.
*
* @note This is probably a fruitless effort, because when you go to
* transmit the contents of a safebuf using protobufs, the
* protobufs runtime is going to create an std::string anyway,
* which means your sensitive information will be released into
* the heap anyway. SAD!!!
*/
#ifndef SAFEBUF_H
#define SAFEBUF_H
#include <system/Utils.h>
#include <string>
namespace scidb {
/**
* @brief Heap buffer class for holding sensitive information.
*
* @description Sensitive information (passwords, keys, crypto hashes,
* etc.) should be overwritten as soon as possible after use. This
* class can assist with that if properly used.
*
* @note Be aware that many safebuf methods do not just copy their
* input, they destroy it. This is by design.
*/
class safebuf
{
public:
/// @brief Default constructor.
safebuf();
/// @brief Create safebuf of length n and fill with 'fill'.
safebuf(size_t n, char fill);
/// @brief Create n-byte safebuf, fill with data from p, AND WIPE INPUT.
safebuf(void* p, size_t n, char fill = '\0');
/// @brief Make copy of s in safebuf AND WIPE CONTENTS OF s !!!
explicit safebuf(std::string& s);
/// @brief Copy constructor.
safebuf(safebuf const& s);
/// @brief Copy assignment.
safebuf& operator=(safebuf const& s);
/// @brief Wipe and destroy safebuf.
~safebuf();
/// @brief Fill with n bytes of data from p, AND WIPE INPUT.
void grab(void* p, size_t n, char fill = '\0');
/// @brief Fill with string data AND WIPE INPUT.
/// @note Best not to use '\0' for fill, it might confuse std::string.
void grab(std::string& s, char fill = '%');
/// @brief Fill with string data AND WIPE INPUT.
/// @note Best not to use '\0' for fill, it might confuse std::string.
/// @note Intended for use with stack temporaries such as those
/// produced when inspecting pqxx results.
void grab(std::string const& s, char fill = '%')
{
grab(const_cast<std::string&>(s), fill);
}
/// @brief Wipe contents of safebuf.
void wipe();
/// @brief Access data in the safebuf.
/// @{
void const* data() const { return _data; }
size_t size() const { return _size; }
char const* c_str() const;
bool wiped() const { return _wiped; }
bool empty() const { return _wiped || _size == 0UL; }
/// @}
private:
bool _wiped;
size_t _size;
size_t _capacity;
char *_data;
};
inline bool operator==(safebuf const& lhs, safebuf const& rhs)
{ return 0 == ::strcmp(lhs.c_str(), rhs.c_str()); }
inline bool operator!=(safebuf const& lhs, safebuf const& rhs)
{ return ::strcmp(lhs.c_str(), rhs.c_str()); }
inline bool operator==(safebuf const& lhs, std::string const& rhs)
{ return 0 == ::strcmp(lhs.c_str(), rhs.c_str()); }
inline bool operator!=(safebuf const& lhs, std::string const& rhs)
{ return ::strcmp(lhs.c_str(), rhs.c_str()); }
inline bool operator==(std::string const& lhs, safebuf const& rhs)
{ return 0 == ::strcmp(lhs.c_str(), rhs.c_str()); }
inline bool operator!=(std::string const& lhs, safebuf const& rhs)
{ return ::strcmp(lhs.c_str(), rhs.c_str()); }
} // namespace
#endif /* ! SAFEBUF_H */
| [
"jonghun2931@gmail.com"
] | jonghun2931@gmail.com |
b1452ccea4c1a95db76b74104c9e432c9ee95c5b | 00387cb8474ca01052a189b6a9370a6577384919 | /src/plugins/snails/accountthread.h | 8058fc1c1b82d75aa1c0fe01726da7e63772e598 | [
"BSL-1.0"
] | permissive | WildeGeist/leechcraft | bcfd646b407c6ae6654eb9c17d095cf070f7c943 | 719c9635a2f8e7bb7540d2a11301d61bbfeead7a | refs/heads/master | 2023-01-24T03:41:58.670559 | 2020-10-04T15:06:19 | 2020-10-04T15:06:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,391 | h | /**********************************************************************
* LeechCraft - modular cross-platform feature rich internet client.
* Copyright (C) 2006-2014 Georg Rudoy
*
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt)
**********************************************************************/
#pragma once
#include <thread>
#include <atomic>
#include <functional>
#include <QThread>
#include <QFuture>
#include <util/sll/either.h>
#include <util/sll/typelist.h>
#include <util/sll/typelevel.h>
#include <util/threads/futures.h>
#include <util/threads/workerthreadbase.h>
#include <vmime/security/cert/certificateException.hpp>
#include "accountthreadfwd.h"
#include "common.h"
namespace LC
{
namespace Snails
{
class Account;
class Storage;
class AccountThreadWorker;
class GenericExceptionWrapper
{
std::string Msg_;
public:
GenericExceptionWrapper (const std::exception_ptr&);
const char* what () const noexcept;
};
namespace detail
{
const auto MaxRecLevel = 3;
void ReconnectATW (AccountThreadWorker*);
template<typename Result, typename F>
class ExceptionsHandler
{
F&& F_;
const int MaxRetries_;
int RecLevel_ = 0;
AccountThreadWorker * const W_;
public:
ExceptionsHandler (AccountThreadWorker *w, F&& f, int maxRetries)
: F_ { std::forward<F> (f) }
, MaxRetries_ { maxRetries }
, W_ { w }
{
}
template<typename Ex = std::exception>
Result operator() (const Ex& ex = {})
{
if (RecLevel_)
{
using namespace std::chrono_literals;
const auto timeout = RecLevel_ * 3000ms + 1000ms;
qWarning () << "Snails::detail::ExceptionsHandler::operator():"
<< "sleeping for"
<< timeout.count ()
<< "and retrying for the"
<< RecLevel_
<< "time after getting an exception:"
<< ex.what ();
std::this_thread::sleep_for (timeout);
}
if (RecLevel_ == MaxRetries_)
{
qWarning () << "Snails::detail::ExceptionsHandler::operator():"
<< "giving up after"
<< RecLevel_
<< "retries:"
<< ex.what ();
if constexpr (Util::HasType<std::decay_t<Ex>> (Util::AsTypelist_t<typename Result::L_t> {}))
return Result::Left (ex);
else
return Result::Left (std::current_exception ());
}
++RecLevel_;
try
{
return F_ ();
}
catch (const vmime::exceptions::authentication_error& err)
{
const auto& respStr = QString::fromUtf8 (err.response ().c_str ());
qWarning () << "Snails::detail::ExceptionsHandler::operator():"
<< "caught auth error:"
<< respStr;
return Result::Left (err);
}
catch (const vmime::exceptions::connection_error& e)
{
return (*this) (e);
}
catch (const vmime::exceptions::command_error& e)
{
return (*this) (e);
}
catch (const vmime::exceptions::invalid_response& e)
{
return (*this) (e);
}
catch (const vmime::exceptions::operation_timed_out& e)
{
return (*this) (e);
}
catch (const vmime::exceptions::not_connected& e)
{
ReconnectATW (W_);
return (*this) (e);
}
catch (const vmime::exceptions::socket_exception& e)
{
return (*this) (e);
}
catch (const vmime::security::cert::certificateException& e)
{
return Result::Left (e);
}
catch (const std::exception&)
{
return Result::Left (std::current_exception ());
}
}
};
template<typename Result, typename F>
Result HandleExceptions (AccountThreadWorker *w, F&& f)
{
return ExceptionsHandler<Result, F> { w, std::forward<F> (f), detail::MaxRecLevel } ();
}
template<typename Right>
struct WrapFunctionTypeImpl
{
using Result_t = Util::Either<InvokeError_t<>, Right>;
template<typename F>
static auto WrapFunction (AccountThreadWorker *w, const F& f)
{
return [=] (auto... args)
{
return HandleExceptions<Result_t> (w,
[&]
{
return Result_t::Right (std::invoke (f, args...));
});
};
}
};
template<>
struct WrapFunctionTypeImpl<void>
{
using Result_t = Util::Either<InvokeError_t<>, Util::Void>;
template<typename F>
static auto WrapFunction (AccountThreadWorker *w, const F& f)
{
return [=] (auto... args)
{
return HandleExceptions<Result_t> (w,
[&]
{
std::invoke (f, args...);
return Result_t::Right ({});
});
};
}
};
template<typename... Lefts, typename Right>
struct WrapFunctionTypeImpl<Util::Either<std::variant<Lefts...>, Right>>
{
using Result_t = Util::Either<InvokeError_t<Lefts...>, Right>;
template<typename F>
static auto WrapFunction (AccountThreadWorker *w, const F& f)
{
return [=] (auto... args)
{
return HandleExceptions<Result_t> (w, [&] { return Result_t::LeftLift (std::invoke (f, args...)); });
};
}
};
template<typename... Args, typename F>
auto WrapFunction (AccountThreadWorker *w, const F& f)
{
return WrapFunctionTypeImpl<std::result_of_t<F (AccountThreadWorker*, Args...)>>::WrapFunction (w, f);
}
}
template<typename T>
using WrapReturnType_t = typename detail::WrapFunctionTypeImpl<T>::Result_t;
template<typename F, typename... Args>
using WrapFunctionType_t = WrapReturnType_t<std::result_of_t<F (AccountThreadWorker*, Args...)>>;
class AccountThread : public Util::WorkerThread<AccountThreadWorker>
{
std::atomic_bool IsRunning_;
public:
using WorkerThread::WorkerThread;
template<typename F, typename... Args>
auto Schedule (TaskPriority prio, const F& func, const Args&... args)
{
QFutureInterface<WrapFunctionType_t<F, Args...>> iface;
return Schedule (iface, prio, func, args...);
}
template<typename F, typename... Args>
auto Schedule (QFutureInterface<WrapFunctionType_t<F, Args...>> iface,
TaskPriority, const F& func, const Args&... args)
{
auto reporting = [this, func, iface, args...] (AccountThreadWorker *w) mutable
{
IsRunning_ = true;
iface.reportStarted ();
Util::ReportFutureResult (iface, detail::WrapFunction<Args...> (w, func), w, args...);
IsRunning_ = false;
};
ScheduleImpl (std::move (reporting));
return iface.future ();
}
size_t GetQueueSize () override;
};
}
}
| [
"0xd34df00d@gmail.com"
] | 0xd34df00d@gmail.com |
02f822a95725de01d14e06a2b69672c7f64ed2ae | 88ae8695987ada722184307301e221e1ba3cc2fa | /chrome/browser/ash/app_list/search/games/game_result_unittest.cc | f659e8843d6812e7acc491455833b38859f887e6 | [
"BSD-3-Clause"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 8,852 | cc | // Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/app_list/search/games/game_result.h"
#include "chrome/browser/apps/app_discovery_service/app_discovery_service.h"
#include "chrome/browser/apps/app_discovery_service/game_extras.h"
#include "chrome/browser/apps/app_discovery_service/result.h"
#include "chrome/browser/ash/app_list/search/common/icon_constants.h"
#include "chrome/browser/ash/app_list/search/common/search_result_util.h"
#include "chrome/browser/ash/app_list/test/test_app_list_controller_delegate.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/test/base/testing_profile.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gmock/include/gmock/gmock.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/image/image_skia_operations.h"
#include "ui/gfx/skia_util.h"
namespace app_list::test {
namespace {
using ::testing::_;
using ::testing::Return;
class MockAppListControllerDelegate
: public ::test::TestAppListControllerDelegate {
public:
MOCK_METHOD((std::vector<std::string>),
GetAppIdsForUrl,
(Profile * profile,
const GURL& url,
bool exclude_browsers,
bool exclude_browser_tab_apps),
(override));
MOCK_METHOD(void,
LaunchAppWithUrl,
(Profile * profile,
const std::string& app_id,
int32_t event_flags,
const GURL& url,
apps::LaunchSource launch_source),
(override));
};
// Creates a 50x50 yellow test icon.
gfx::ImageSkia GetTestIcon() {
SkBitmap bitmap;
bitmap.allocN32Pixels(50, 50);
bitmap.eraseColor(SK_ColorYELLOW);
return gfx::ImageSkia::CreateFrom1xBitmap(bitmap);
}
// Creates the resized non-maskable variant of the test icon, which is a 22x22
// yellow square inside a 32x32 circle.
gfx::ImageSkia GetExpectedNonMaskableIcon() {
SkBitmap bitmap;
bitmap.allocN32Pixels(22, 22);
bitmap.eraseColor(SK_ColorYELLOW);
return gfx::ImageSkiaOperations::CreateImageWithCircleBackground(
/*radius=*/16, SK_ColorWHITE, gfx::ImageSkia::CreateFrom1xBitmap(bitmap));
}
// A mock app discovery service that can produce fake icons.
class TestAppDiscoveryService : public apps::AppDiscoveryService {
public:
explicit TestAppDiscoveryService(Profile* profile)
: apps::AppDiscoveryService(profile) {}
~TestAppDiscoveryService() override = default;
TestAppDiscoveryService(const TestAppDiscoveryService&) = delete;
TestAppDiscoveryService& operator=(const TestAppDiscoveryService&) = delete;
void GetIcon(const std::string& app_id,
int32_t size_hint_in_dip,
apps::ResultType result_type,
apps::GetIconCallback callback) override {
if (icons_available_) {
std::move(callback).Run(GetTestIcon(), apps::DiscoveryError::kSuccess);
} else {
std::move(callback).Run(gfx::ImageSkia(),
apps::DiscoveryError::kErrorRequestFailed);
}
}
void set_icons_available(bool icons_available) {
icons_available_ = icons_available;
}
private:
bool icons_available_ = true;
};
apps::Result MakeAppsResult(bool masking_allowed) {
return apps::Result(
apps::AppSource::kGames, "12345", u"Title",
std::make_unique<apps::GameExtras>(
absl::make_optional(std::vector<std::u16string>({u"A", u"B", u"C"})),
u"SourceName", u"TestGamePublisher",
base::FilePath("/icons/test.png"), masking_allowed,
GURL("https://game.com/game")));
}
} // namespace
class GameResultTest : public testing::Test {
public:
GameResultTest() {
profile_ = std::make_unique<TestingProfile>();
app_discovery_service_ =
std::make_unique<TestAppDiscoveryService>(profile_.get());
}
~GameResultTest() override = default;
content::BrowserTaskEnvironment task_environment_;
std::unique_ptr<Profile> profile_;
::test::TestAppListControllerDelegate list_controller_;
MockAppListControllerDelegate mock_list_controller_;
std::unique_ptr<TestAppDiscoveryService> app_discovery_service_;
};
TEST_F(GameResultTest, Basic) {
apps::Result apps_result = MakeAppsResult(/*masking_allowed=*/false);
GameResult result(profile_.get(), &list_controller_,
app_discovery_service_.get(), apps_result, 0.6,
u"SomeGame");
EXPECT_EQ(result.title(), u"Title");
EXPECT_EQ(StringFromTextVector(result.details_text_vector()), u"SourceName");
EXPECT_EQ(result.accessible_name(), u"Title, SourceName");
}
TEST_F(GameResultTest, Icons) {
// The maskable icon should not be modified from its original form.
apps::Result maskable_app = MakeAppsResult(/*masking_allowed=*/true);
GameResult maskable_result(profile_.get(), &list_controller_,
app_discovery_service_.get(), maskable_app, 0.6,
u"SomeGame");
EXPECT_EQ(maskable_result.icon().dimension, kAppIconDimension);
EXPECT_EQ(maskable_result.icon().shape, ash::SearchResultIconShape::kCircle);
EXPECT_TRUE(gfx::BitmapsAreEqual(*maskable_result.icon().icon.bitmap(),
*GetTestIcon().bitmap()));
// The non-maskable icon must be resized and placed on a white circle.
apps::Result non_maskable_app = MakeAppsResult(/*masking_allowed=*/false);
GameResult non_maskable_result(profile_.get(), &list_controller_,
app_discovery_service_.get(), non_maskable_app,
0.6, u"SomeGame");
EXPECT_EQ(non_maskable_result.icon().dimension, kAppIconDimension);
EXPECT_EQ(non_maskable_result.icon().shape,
ash::SearchResultIconShape::kCircle);
EXPECT_TRUE(gfx::BitmapsAreEqual(*non_maskable_result.icon().icon.bitmap(),
*GetExpectedNonMaskableIcon().bitmap()));
// If there is no icon, then the result should be filtered out.
app_discovery_service_->set_icons_available(false);
apps::Result no_icon_app = MakeAppsResult(/*masking_allowed=*/false);
GameResult no_icon_result(profile_.get(), &list_controller_,
app_discovery_service_.get(), no_icon_app, 0.6,
u"SomeGame");
EXPECT_TRUE(no_icon_result.scoring().filtered());
}
TEST_F(GameResultTest, OpensDeepLinkURLWhenAppNotFound) {
apps::Result apps_result = MakeAppsResult(/*masking_allowed=*/false);
GameResult result(profile_.get(), &mock_list_controller_,
app_discovery_service_.get(), apps_result, 0.6,
u"SomeGame");
EXPECT_CALL(mock_list_controller_,
GetAppIdsForUrl(_, GURL("https://game.com/game"), _, _))
.WillOnce(Return(std::vector<std::string>{}));
EXPECT_CALL(mock_list_controller_, LaunchAppWithUrl(_, _, _, _, _)).Times(0);
result.Open(/*event_flags*/ 0);
EXPECT_EQ(mock_list_controller_.last_opened_url(),
GURL("https://game.com/game"));
}
TEST_F(GameResultTest, OpensDeepLinkURLWhenAppFoundButNotAllowed) {
apps::Result apps_result = MakeAppsResult(/*masking_allowed=*/false);
GameResult result(profile_.get(), &mock_list_controller_,
app_discovery_service_.get(), apps_result, 0.6,
u"SomeGame");
std::string not_allowed_app_id{"not_allowed_app"};
EXPECT_CALL(mock_list_controller_,
GetAppIdsForUrl(_, GURL("https://game.com/game"), _, _))
.WillOnce(Return(std::vector<std::string>{not_allowed_app_id}));
EXPECT_CALL(mock_list_controller_, LaunchAppWithUrl(_, _, _, _, _)).Times(0);
result.Open(/*event_flags*/ 0);
EXPECT_EQ(mock_list_controller_.last_opened_url(),
GURL("https://game.com/game"));
}
TEST_F(GameResultTest, LaunchesAppWhenAppFoundAndAllowed) {
apps::Result apps_result = MakeAppsResult(/*masking_allowed=*/false);
GameResult result(profile_.get(), &mock_list_controller_,
app_discovery_service_.get(), apps_result, 0.6,
u"SomeGame");
std::string found_app_id{"egmafekfmcnknbdlbfbhafbllplmjlhn"};
EXPECT_CALL(mock_list_controller_,
GetAppIdsForUrl(_, GURL("https://game.com/game"), _, _))
.WillOnce(Return(std::vector<std::string>{found_app_id}));
EXPECT_CALL(
mock_list_controller_,
LaunchAppWithUrl(_, found_app_id, _, GURL("https://game.com/game"),
apps::LaunchSource::kFromAppListQuery))
.Times(1);
result.Open(/*event_flags*/ 0);
EXPECT_EQ(mock_list_controller_.last_opened_url(), GURL(""));
}
} // namespace app_list::test
| [
"jengelh@inai.de"
] | jengelh@inai.de |
c5145273d8762db8141cb1100fee03e24df49fe8 | 5b9c45cf3a0a36b037a113b7dcb297bf6dee9c98 | /ui_dialog_serialsync-popup.h | b187842d8060f18486582ef3b3837f2b1777491a | [] | no_license | pplogiacco/vipex | ee9ed669a414528c5dba6ab1c48163fa4a006c3d | 16ffcdf3f88c9dd6e986c9727a950ca0d2e05c19 | refs/heads/master | 2022-11-28T12:03:33.178396 | 2020-08-08T09:49:22 | 2020-08-08T09:49:22 | 286,013,517 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,562 | h | /********************************************************************************
** Form generated from reading UI file 'dialog_serialsync-popup.ui'
**
** Created by: Qt User Interface Compiler version 5.14.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
********************************************************************************/
#ifndef UI_DIALOG_SERIALSYNC_2D_POPUP_H
#define UI_DIALOG_SERIALSYNC_2D_POPUP_H
#include <QtCore/QVariant>
#include <QtWidgets/QApplication>
#include <QtWidgets/QDialog>
#include <QtWidgets/QDialogButtonBox>
#include <QtWidgets/QGroupBox>
#include <QtWidgets/QLabel>
QT_BEGIN_NAMESPACE
class Ui_Dialog_SerialSync
{
public:
QGroupBox *groupBox_2;
QLabel *lb_modules;
QLabel *lb_rules;
QLabel *lb_memory;
QLabel *lb_hardware;
QLabel *label_11;
QLabel *label_12;
QLabel *label_13;
QLabel *label_14;
QLabel *lb_in;
QLabel *label_15;
QLabel *lb_firmware;
QLabel *label_16;
QLabel *label_18;
QLabel *lb_out;
QLabel *label_19;
QLabel *lb_eeprom;
QLabel *label_20;
QLabel *lb_serial;
QDialogButtonBox *buttonBox;
void setupUi(QDialog *Dialog_SerialSync)
{
if (Dialog_SerialSync->objectName().isEmpty())
Dialog_SerialSync->setObjectName(QString::fromUtf8("Dialog_SerialSync"));
Dialog_SerialSync->resize(182, 367);
groupBox_2 = new QGroupBox(Dialog_SerialSync);
groupBox_2->setObjectName(QString::fromUtf8("groupBox_2"));
groupBox_2->setGeometry(QRect(10, 50, 161, 211));
lb_modules = new QLabel(groupBox_2);
lb_modules->setObjectName(QString::fromUtf8("lb_modules"));
lb_modules->setGeometry(QRect(110, 120, 21, 21));
QFont font;
font.setBold(true);
font.setWeight(75);
lb_modules->setFont(font);
lb_rules = new QLabel(groupBox_2);
lb_rules->setObjectName(QString::fromUtf8("lb_rules"));
lb_rules->setGeometry(QRect(110, 180, 21, 21));
lb_rules->setFont(font);
lb_memory = new QLabel(groupBox_2);
lb_memory->setObjectName(QString::fromUtf8("lb_memory"));
lb_memory->setGeometry(QRect(90, 80, 41, 20));
lb_memory->setFont(font);
lb_hardware = new QLabel(groupBox_2);
lb_hardware->setObjectName(QString::fromUtf8("lb_hardware"));
lb_hardware->setGeometry(QRect(80, 20, 71, 20));
lb_hardware->setFont(font);
label_11 = new QLabel(groupBox_2);
label_11->setObjectName(QString::fromUtf8("label_11"));
label_11->setGeometry(QRect(10, 120, 91, 16));
label_12 = new QLabel(groupBox_2);
label_12->setObjectName(QString::fromUtf8("label_12"));
label_12->setGeometry(QRect(10, 140, 91, 16));
label_13 = new QLabel(groupBox_2);
label_13->setObjectName(QString::fromUtf8("label_13"));
label_13->setGeometry(QRect(10, 180, 91, 20));
label_14 = new QLabel(groupBox_2);
label_14->setObjectName(QString::fromUtf8("label_14"));
label_14->setGeometry(QRect(10, 80, 71, 16));
lb_in = new QLabel(groupBox_2);
lb_in->setObjectName(QString::fromUtf8("lb_in"));
lb_in->setGeometry(QRect(110, 140, 21, 21));
lb_in->setFont(font);
label_15 = new QLabel(groupBox_2);
label_15->setObjectName(QString::fromUtf8("label_15"));
label_15->setGeometry(QRect(10, 40, 61, 16));
lb_firmware = new QLabel(groupBox_2);
lb_firmware->setObjectName(QString::fromUtf8("lb_firmware"));
lb_firmware->setGeometry(QRect(80, 40, 61, 20));
lb_firmware->setFont(font);
label_16 = new QLabel(groupBox_2);
label_16->setObjectName(QString::fromUtf8("label_16"));
label_16->setGeometry(QRect(10, 20, 61, 16));
label_18 = new QLabel(groupBox_2);
label_18->setObjectName(QString::fromUtf8("label_18"));
label_18->setGeometry(QRect(10, 160, 91, 16));
lb_out = new QLabel(groupBox_2);
lb_out->setObjectName(QString::fromUtf8("lb_out"));
lb_out->setGeometry(QRect(110, 160, 21, 21));
lb_out->setFont(font);
label_19 = new QLabel(groupBox_2);
label_19->setObjectName(QString::fromUtf8("label_19"));
label_19->setGeometry(QRect(10, 100, 71, 16));
lb_eeprom = new QLabel(groupBox_2);
lb_eeprom->setObjectName(QString::fromUtf8("lb_eeprom"));
lb_eeprom->setGeometry(QRect(90, 100, 41, 20));
lb_eeprom->setFont(font);
label_20 = new QLabel(groupBox_2);
label_20->setObjectName(QString::fromUtf8("label_20"));
label_20->setGeometry(QRect(10, 60, 71, 16));
lb_serial = new QLabel(groupBox_2);
lb_serial->setObjectName(QString::fromUtf8("lb_serial"));
lb_serial->setGeometry(QRect(80, 60, 71, 20));
lb_serial->setFont(font);
buttonBox = new QDialogButtonBox(Dialog_SerialSync);
buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
buttonBox->setGeometry(QRect(10, 310, 161, 31));
buttonBox->setStandardButtons(QDialogButtonBox::No|QDialogButtonBox::Yes);
buttonBox->setCenterButtons(true);
retranslateUi(Dialog_SerialSync);
QMetaObject::connectSlotsByName(Dialog_SerialSync);
} // setupUi
void retranslateUi(QDialog *Dialog_SerialSync)
{
Dialog_SerialSync->setWindowTitle(QCoreApplication::translate("Dialog_SerialSync", "Dialog", nullptr));
groupBox_2->setTitle(QCoreApplication::translate("Dialog_SerialSync", "Dispositivo", nullptr));
lb_modules->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
lb_rules->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
lb_memory->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
lb_hardware->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
label_11->setText(QCoreApplication::translate("Dialog_SerialSync", "Moduli abilitati....:", nullptr));
label_12->setText(QCoreApplication::translate("Dialog_SerialSync", "Porte IN...........:", nullptr));
label_13->setText(QCoreApplication::translate("Dialog_SerialSync", "Regole impostate.:", nullptr));
label_14->setText(QCoreApplication::translate("Dialog_SerialSync", "SRAM (KB)...:", nullptr));
lb_in->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
label_15->setText(QCoreApplication::translate("Dialog_SerialSync", "Firmware..:", nullptr));
lb_firmware->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
label_16->setText(QCoreApplication::translate("Dialog_SerialSync", "Hardware..: ", nullptr));
label_18->setText(QCoreApplication::translate("Dialog_SerialSync", "Porte OUT........:", nullptr));
lb_out->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
label_19->setText(QCoreApplication::translate("Dialog_SerialSync", "EEprom (KB)..:", nullptr));
lb_eeprom->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
label_20->setText(QCoreApplication::translate("Dialog_SerialSync", "Serial......:", nullptr));
lb_serial->setText(QCoreApplication::translate("Dialog_SerialSync", "?", nullptr));
} // retranslateUi
};
namespace Ui {
class Dialog_SerialSync: public Ui_Dialog_SerialSync {};
} // namespace Ui
QT_END_NAMESPACE
#endif // UI_DIALOG_SERIALSYNC_2D_POPUP_H
| [
"plogiacco@smartlab.it"
] | plogiacco@smartlab.it |
08be49762d831dfd65c01caff44569c23a5c75fc | 00abce0660c98f711a4fced31d9f48131b0df91f | /ANNTrainerAE/main.cpp | 5b21c9e7ccfc45ef59956eb7577522434a81e3fc | [] | no_license | Sebarl/gaia | 623e3e228f754c3c0cbb50d86630a22e77bff0fa | 5d9006305ea7b2447f4b5930700ba5393f022cb0 | refs/heads/master | 2021-01-20T01:36:16.051041 | 2019-04-08T04:36:44 | 2019-04-08T04:36:44 | 89,306,343 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,791 | cpp | #include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <vector>
#include <fstream>
#include <iostream>
#include <exception>
#include "Parameters.h"
#include "FinalStatistics.h"
#include "EvolutionaryOperator.h"
#include "Constants.h"
#include "XorShift128.h"
#include "GenerationCount.h"
#include "GenerationObserver.h"
#include "NEATCandidateFactory.h"
#include "NEATSelectionStrategy.h"
#include "NEATEvolutionEngine.h"
#include "NEATParams.h"
#include "NEATStochasticUniversalSampling.h"
#include "FCEUXEvaluator.h"
#include "NEATObserver.h"
Parameters loadParams(char* configFilePath, int evolutiveProcessID){
Parameters p;
std::string line;
std::ifstream configFile(configFilePath);
if (configFile.is_open()){
#define MAXIMUM_COMMENT_LENGTH 100
char* buff = new char[MAXIMUM_COMMENT_LENGTH];
configFile >> p.generations;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.populationSize;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.eliteCount;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.elitismThreshold;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
/*
configFile >> p.config.numInputs;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
*/
configFile >> p.config.numOutputs;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
int outputFunctionType;
configFile >> outputFunctionType;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
switch(outputFunctionType){
case 0:
p.outputFunctionType = IDENTITY;
break;
case 1:
p.outputFunctionType = SIGMOID;
break;
case 2:
p.outputFunctionType = TANH;
break;
case 3:
p.outputFunctionType = CHEAPSIGMOID;
break;
case 4:
p.outputFunctionType = GAUSSIAN;
break;
case 5:
p.outputFunctionType = RELU;
break;
default:
p.outputFunctionType = SIGMOID;
break;
}
configFile >> p.config.crossoverProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.disabledLinkProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.addNeuronProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.numTriesToFindLink;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.addLinkProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.numTriesToAddLink;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.addLoopProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.numTriesToFindLoopNeuron;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.mutateWeightProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.replaceWeightProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.mutateActivationFunctionProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.replaceActivationFunctionProbability;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.cantCompatibilityLinks;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
/*
configFile >> p.config.cMatched;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.cDisjoint;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.cExcess;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
*/
configFile >> p.config.maxPermittedNeurons;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.allowedGenerationsWithoutImprovement;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.youngBonusThreshold;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.oldPenaltyThreshold;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.youngBonus;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.oldPenalty;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.frameCount;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.numThreads;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
configFile >> p.config.useOtherActivationFunctions;
configFile.getline(buff, MAXIMUM_COMMENT_LENGTH);
p.evolutiveProcessID = evolutiveProcessID;
configFile.close();
delete[] buff;
}
else{
std::cout << "Unable to open config file";
exit(-1);
}
return p;
}
FinalStatistics<NEATGenome>* evolveSolutions(Parameters ¶ms){
NEATEvolutionEngine* engine = new NEATEvolutionEngine(params.populationSize,
params.eliteCount,
new NEATCandidateFactory(params.config.numInputs, params.config.numOutputs, params.outputFunctionType, params.config.useOtherActivationFunctions),
new NEATStochasticUniversalSampling(),//NEATSelectionStrategy* intraspeciesSelectionStrategy,
//, NEATSelectionStrategy* interspeciesSelectionStrategy,
new FCEUXEvaluator(¶ms,0),//FitnessEvaluator<NEATGenome>* fitnessEvaluator,
params.config,
new XorShift128(),
params.numThreads);
/*
char* algo= new char[40];
sprintf(algo, "Observer canchero!");
engine->addEvolutionObserver(new NEATObserver(algo));
*/
std::vector<TerminationCondition<NEATGenome>*> tc;
tc.push_back(new GenerationCount<NEATGenome>(params.generations));
FinalStatistics<NEATGenome>* finalResult = engine->evolve(tc);
delete engine;
return finalResult;
}
inline int serializeChromosome(NEATGenome* sol, char* buff, Parameters* params){
int length = 0;
length+=sprintf(buff+length,"%s:",params->ramPath);
//length+=sprintf(buff+length,"%s:",params->weightsPath);
length+=sprintf(buff+length,"%s",params->prefix);
std::vector<NEATNeuron*>::iterator iter = sol->neurons.begin();
//serialize input neurons
length+=sprintf(buff+length,"%u:",params->config.numInputs);
for(unsigned int i=0; i<params->config.numInputs;i++){
length=(*iter)->getFunction()->serialize(buff,length);
iter++;
}
//serialize biases, currently one
length+=sprintf(buff+length,"%u:",1);
length+=sprintf(buff+length,"%f;",1.0);
length=(*iter)->getFunction()->serialize(buff,length);
iter++;
//serialize output neurons
length+=sprintf(buff+length,"%u:",params->config.numOutputs);
for(unsigned int i=0; i<params->config.numOutputs;i++){
length=(*iter)->getFunction()->serialize(buff,length);
iter++;
}
//serialize hidden neurons
unsigned int cantHidden = sol->neurons.size() - (params->config.numInputs + params->config.numOutputs + 1);
length+=sprintf(buff+length,"%u:",cantHidden);
for(unsigned int i=0; i<cantHidden;i++){
length=(*iter)->getFunction()->serialize(buff,length);
iter++;
}
//serialize links
length+=sprintf(buff+length,"%zu:",sol->links.size());
unsigned int sourceNeuronType, sourceIndex, destNeuronType, destIndex;
for(std::vector<NEATLink*>::iterator iter2 = sol->links.begin();iter2!=sol->links.end();iter2++){
sourceIndex=sol->getNeuronIndex((*iter2)->fromNeuron);
destIndex =sol->getNeuronIndex((*iter2)->toNeuron);
switch(sol->neurons[sourceIndex]->type){
case INPUT:
sourceNeuronType=0;
break;
case BIAS:
sourceIndex=0;
sourceNeuronType=1;
break;
case HIDDEN:
sourceIndex-=params->config.numInputs+params->config.numOutputs+1;
sourceNeuronType=2;
break;
case OUTPUT:
sourceIndex-=params->config.numInputs+1;
sourceNeuronType=3;
break;
default:
throw GenericException("Unrecognized neuron type in source neuron");
}
switch(sol->neurons[destIndex]->type){
case INPUT:
destNeuronType=0;
break;
case BIAS:
destIndex=0;
destNeuronType=1;
break;
case HIDDEN:
destIndex-=params->config.numInputs+params->config.numOutputs+1;
destNeuronType=2;
break;
case OUTPUT:
destIndex-=params->config.numInputs+1;
destNeuronType=3;
break;
default:
throw GenericException("Unrecognized neuron type in destination neuron");
}
length+=sprintf(buff+length,"%f;%u;%u;%u;%u;",(*iter2)->weight,sourceNeuronType,sourceIndex,destNeuronType,destIndex);
}
return length;
}
int main(int argc, char *argv[]){
char* configFilePath = argv[1];
int evolutiveProcessID = atoi(argv[2]);
try {
Parameters params = loadParams(configFilePath, evolutiveProcessID);
params.config.numInputs = atoi(argv[3]);
params.ramPath=argv[4];
FILE* file = fopen(argv[5],"r");
params.prefix = new char[10000];
fscanf(file,"%s",params.prefix);
fclose(file);
params.weightsPath=argv[6];
params.ROM=argv[7];
params.config.cMatched = 0.6;
params.config.cExcess = params.config.cDisjoint = (params.config.numInputs + 1)*8.0*3.0/(params.config.cantCompatibilityLinks);
params.config.compatibilityThreshold=3.4;
//loadRAMMap(ramMapPath,params);
//loadFitnessWeights(fitnessWeightsPath,params);
//printf("%d %s %s %s",params.RAMCount,params.ramPath,params.weightsPath,params.ROM);
FinalStatistics<NEATGenome>* finalResult = evolveSolutions(params);
//NEATGenome* result = finalResult->data->bestCandidate;
printf("Best solution: \n\n");
printf("Fitness: %lf\nSolution: ",finalResult->data->bestCandidateFitness);
char* serialChromosome = new char[1000000];
serializeChromosome(finalResult->data->bestCandidate, serialChromosome, ¶ms);
printf("%s",serialChromosome);
printf("\nElapsed time: %ld \n", finalResult->data->elapsedTime);
printf("Mean fitness: %lf \n", finalResult->data->meanFitness);
printf("Fitness standard deviation: %lf \n", finalResult->data->fitnessStandardDeviation);
printf("First generation to find best candidate: %d \n", finalResult->data->bestCandidateFirstGeneration);
char path[100];
sprintf(path, "%dsol.txt", params.evolutiveProcessID);
std::ofstream solutionFile(path, std::ofstream::out);
solutionFile << "Solution: " << serialChromosome;
delete [] serialChromosome;
//result->print(solutionFile, params.instance);
solutionFile << std::endl
<< "Fitness: " << finalResult->data->bestCandidateFitness << std::endl
<< "Elapsed time: " << finalResult->data->elapsedTime << "s" << std::endl
<< "Mean fitness: " << finalResult->data->meanFitness << std::endl
<< "Fitness standard deviation: " << finalResult->data->fitnessStandardDeviation << std::endl
<< "First generation to find best candidate: " << finalResult->data->bestCandidateFirstGeneration + 1 << std::endl;
solutionFile.close();
delete finalResult;
} catch (std::exception ex) {
std::cout << "An exception occurred. Code: " << ex.what() << std::endl;
}
return 0;
}
| [
"seba123321@hotmail.com"
] | seba123321@hotmail.com |
c966aeb62025e414b51e148d60d73da87f3e6acd | 52616d9b09f55d8eaf5944c56056f90d28f89744 | /C++/beginner/The Lead Game.cpp | 8d815dcf4b58626b2b8b5ee466bcc1352a2c9a85 | [] | no_license | razibhasan7/Codechef-beginner-solution | deccdcc1c2ca25d0e57df143283d567a35cba5d2 | 356341c5eef23ca56d6af83523f964077880a28e | refs/heads/master | 2022-04-15T18:45:25.006280 | 2020-04-12T10:30:44 | 2020-04-12T10:30:44 | 255,054,859 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 720 | cpp | /***************************
Programmer: Aanisha Mishra
For each round, the cummulative score is stored in A1 and A2. Lead points for each player is maintained in l1 and l2.
l1 and l2 are updated after each round depending on the changes made to A1 and A2.
***************************/
#include<stdio.h>
int main()
{
int n,i1=1,i2=2;
long int l1=0,l2=0,A1=0,A2=0;
scanf("%d",&n);
while(n--)
{
int a1,a2;
scanf("%d %d",&a1,&a2);
A1=A1+a1;
A2=A2+a2;
if(A1>A2 && l1<(A1-A2))
l1=A1-A2;
else if(A2>A1 && l2<(A2-A1))
l2=A2-A1;
}
if(l1>l2)
printf("%d %d",i1,l1);
else
printf("%d %d",i2,l2);
return 0;
}
| [
"rhp.rakibul7@gmail.com"
] | rhp.rakibul7@gmail.com |
d78568f3159dc6ace02287702e3b383f7378d9ac | 3c306cb14a828c22ae96ebdcb6e97f300244ca8d | /src/ofx264.h | 793464fa85d0822371529fff3994dcf1abec8dfc | [] | no_license | ouyang789987/CaptureAV | 0b2244e6796ce94fa01f66e2125a94d3c36f540a | 6acb7e288862a2bebe4bf17228862edc948328fa | refs/heads/master | 2021-01-22T21:44:58.902545 | 2011-02-15T19:07:48 | 2011-02-15T19:07:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 807 | h | /*
* x264.h
* openFrameworks
*
* Created by Marek Bereza on 03/01/2010.
* Copyright 2010 __MyCompanyName__. All rights reserved.
*
*/
#include "common.h"
#include "output.h"
class ofx264 {
public:
void setup() {
x264_param_t param;
//cli_opt_t opt;
int ret;
x264_param_default( ¶m );
param.i_width = VIDEO_WIDTH;
param.i_height = VIDEO_HEIGHT;
//param.i_deblocking_filter_alphac0 = -1;
//param.i_deblocking_filter_beta = -1;
//param.analyse.f_psy_trellis = 0.15;
param.i_frame_total = 100;
//param.i_log_level = X264_LOG_NONE;
param.i_log_level = X264_LOG_DEBUG;
x264_t *h;
x264_picture_t pic;
/*if( ( h = x264_encoder_open( ¶m ) ) == NULL )
{
fprintf( stderr, "x264 [error]: x264_encoder_open failed\n" );
return;
}*/
}
}; | [
"bereza@gmail.com"
] | bereza@gmail.com |
aaeedc786ac942a72c9f08c54b2d0177e0c28413 | 956001225df011f09fbee87a1eb97903828fc5bb | /src/Dubins/DubinsMotionValidator.h | 2953379d4effe697a6d69ae2c0f6a638f411d814 | [] | no_license | frangrothe/bt-motion-planning | 285653c4f6f7fa0e710589ab9e1f0e39b361184d | 544f95b832b071c3b8f128c030dadd3edd9d0cb1 | refs/heads/master | 2023-08-04T09:14:36.809235 | 2021-09-12T10:18:20 | 2021-09-12T10:18:20 | 368,216,768 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,247 | h | //
// Created by francesco on 21.06.21.
//
#ifndef BT_ROBOTICS_DUBINSMOTIONVALIDATOR_H
#define BT_ROBOTICS_DUBINSMOTIONVALIDATOR_H
#include <queue>
#include <ompl/base/MotionValidator.h>
#include <ompl/base/spaces/DubinsStateSpace.h>
#include <ompl/util/Exception.h>
#include <ompl/base/SpaceInformation.h>
#include "../SpaceTimePlanning/AnimationStateSpace.h"
namespace ob = ompl::base;
namespace dubins {
class DubinsMotionValidator : public ob::MotionValidator {
public:
explicit DubinsMotionValidator(ob::SpaceInformation *si, double vMax = 1.0) : MotionValidator(si), vMax_(vMax) {
defaultSettings();
}
explicit DubinsMotionValidator(const ob::SpaceInformationPtr &si, double vMax = 1.0) : MotionValidator(si), vMax_(vMax) {
defaultSettings();
}
~DubinsMotionValidator() override = default;
bool checkMotion(const ompl::base::State *s1, const ompl::base::State *s2) const override;
bool checkMotion(const ompl::base::State *s1, const ompl::base::State *s2,
std::pair<ob::State *, double> &lastValid) const override;
private:
double vMax_;
void defaultSettings();
ob::DubinsStateSpace *stateSpace_;
};
}
#endif //BT_ROBOTICS_DUBINSMOTIONVALIDATOR_H
| [
"fran.dippy@gmail.com"
] | fran.dippy@gmail.com |
b1c30148a87afd1ac1c4dc3c4598b007df3041d1 | c2dce5941201390ee01abc300f62fd4e4d3281e0 | /cetty-beanstalk/src/cetty/beanstalk/protocol/commands/Consumer.cpp | f16aa50599271744e298dd96fecee04fcc29ebc2 | [
"Apache-2.0"
] | permissive | justding/cetty2 | 1cf2b7b5808fe0ca9dd5221679ba44fcbba2b8dc | 62ac0cd1438275097e47a9ba471e72efd2746ded | refs/heads/master | 2020-12-14T09:01:47.987777 | 2015-11-08T10:38:59 | 2015-11-08T10:38:59 | 66,538,583 | 1 | 0 | null | 2016-08-25T08:11:20 | 2016-08-25T08:11:20 | null | UTF-8 | C++ | false | false | 4,823 | cpp |
/*
* Copyright (c) 2010-2012 frankee zhou (frankee.zhou at gmail dot com)
*
* Distributed under under the Apache License, version 2.0 (the "License").
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
/*
* Author: chenhl
*/
#include <cetty/beanstalk/protocol/commands/Consumer.h>
namespace cetty {
namespace beanstalk {
namespace protocol {
namespace commands {
BeanstalkCommandPtr reserve() {
BeanstalkCommandPtr command = new BeanstalkCommand("reserve");
*command << "reserve\r\n";
return command;
}
BeanstalkCommandPtr reserve(int timeout) {
BeanstalkCommandPtr command = new BeanstalkCommand("reserve-with-timeout");
*command << "reserve-with-timeout " << timeout << "\r\n";
return command;
}
BeanstalkCommandPtr del(int jobId) {
BeanstalkCommandPtr command = new BeanstalkCommand("delete");
*command << "delete " << jobId << "\r\n";
return command;
}
BeanstalkCommandPtr release(int id,
int priority,
int delay) {
BeanstalkCommandPtr command = new BeanstalkCommand("release");
*command << "release " << id << " " << priority << " " << delay << "\r\n";
return command;
}
BeanstalkCommandPtr bury(int jobId, int priority) {
BeanstalkCommandPtr command = new BeanstalkCommand("bury");
*command << "bury " << jobId << " " << priority << "\r\n";
return command;
}
BeanstalkCommandPtr kick(int bound) {
BeanstalkCommandPtr command = new BeanstalkCommand("kick");
*command << "kick " << bound << "\r\n";
return command;
}
BeanstalkCommandPtr kickJob(int id) {
BeanstalkCommandPtr command = new BeanstalkCommand("kick");
*command << "kick-job " << id << "\r\n";
return command;
}
BeanstalkCommandPtr watch(const std::string& tube) {
BeanstalkCommandPtr command = new BeanstalkCommand("watch");
*command << "watch " << tube << "\r\n";
return command;
}
BeanstalkCommandPtr listTubes() {
BeanstalkCommandPtr command = new BeanstalkCommand("list-tubes");
*command << "list-tubes\r\n";
return command;
}
BeanstalkCommandPtr touch(int id) {
BeanstalkCommandPtr command = new BeanstalkCommand("touch");
*command << "touch " << id << "\r\n";
return command;
}
BeanstalkCommandPtr ignore(const std::string& tubeName) {
BeanstalkCommandPtr command = new BeanstalkCommand("ignore");
*command << "ignore " << tubeName << "\r\n";
return command;
}
BeanstalkCommandPtr quit() {
BeanstalkCommandPtr command = new BeanstalkCommand("quit");
*command << "quit\r\n";
return command;
}
BeanstalkCommandPtr statsJob(int id) {
BeanstalkCommandPtr command = new BeanstalkCommand("stats-job");
*command << "stats-job " << id << "\r\n";
return command;
}
BeanstalkCommandPtr statsTube(const std::string& tube) {
BeanstalkCommandPtr command = new BeanstalkCommand("stats-tube");
*command << "stats-tube " << tube << "\r\n";
return command;
}
BeanstalkCommandPtr stats() {
BeanstalkCommandPtr command = new BeanstalkCommand("stats");
*command << "stats\r\n";
return command;
}
BeanstalkCommandPtr listTubeUsed() {
BeanstalkCommandPtr command = new BeanstalkCommand("list-tube-used");
*command << "list-tube-used\r\n";
return command;
}
BeanstalkCommandPtr listTubesWatched() {
BeanstalkCommandPtr command = new BeanstalkCommand("list-tubes-watched");
*command << "list-tubes-watched\r\n";
return command;
}
BeanstalkCommandPtr pauseTube(const std::string& tube, int delay) {
BeanstalkCommandPtr command = new BeanstalkCommand("pause-tube");
*command << "pause-tube " << tube << " " << delay << "\r\n";
return command;
}
BeanstalkCommandPtr peekReady() {
BeanstalkCommandPtr command = new BeanstalkCommand("peek-ready");
*command << "peek-ready\r\n";
return command;
}
BeanstalkCommandPtr peekDelayed() {
BeanstalkCommandPtr command = new BeanstalkCommand("peek-delayed");
*command << "peek-delayed\r\n";
return command;
}
BeanstalkCommandPtr peekBuried() {
BeanstalkCommandPtr command = new BeanstalkCommand("peek-buried");
*command << "peek-buried\r\n";
return command;
}
BeanstalkCommandPtr peek(int id) {
BeanstalkCommandPtr command = new BeanstalkCommand("peek");
*command << "peek " << id << "\r\n";
return command;
}
}
}
}
}
| [
"frankee.zhou@gmail.com"
] | frankee.zhou@gmail.com |
602306cfcdd86e992f5b4e56ad12d271ac6a9d29 | e24df22c17cc924b19d4c177f3b5fe57c7edb0a5 | /CanHacker/serial.cpp | b40df43df7ba3666f5909db39ef198e066f2b3b3 | [] | no_license | diolna/can | 381c50acc3e01a7f9e00ea9dd62a4912c5ae3051 | b4d0ade326763d35954f2ccd624b5140c5d0a10e | refs/heads/master | 2023-01-08T14:40:30.885479 | 2020-11-11T23:01:50 | 2020-11-11T23:01:50 | 310,637,114 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,208 | cpp | /*
* serial.c
*
* Copyright (c) 2012 - 2017 Thomas Buck <xythobuz@xythobuz.de>
* 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.
*/
#include <avr/io.h>
#include <avr/interrupt.h>
#include <stdint.h>
#include "serial.h"
#include "serial_device.h"
/** \addtogroup uart UART Library
* UART Library enabling you to control all available
* UART Modules. With XON/XOFF Flow Control and buffered
* Receiving and Transmitting.
* @{
*/
/** \file serial.c
* UART Library Implementation
*/
/** If you define this, a '\\r' (CR) will be put in front of a '\\n' (LF) when sending a byte.
* Binary Communication will then be impossible!
*/
// #define SERIALINJECTCR
#ifndef UART_XMEGA
#ifndef RX_BUFFER_SIZE
#define RX_BUFFER_SIZE 32 /**< RX Buffer Size in Bytes (Power of 2) */
#endif // RX_BUFFER_SIZE
#ifndef TX_BUFFER_SIZE
#define TX_BUFFER_SIZE 16 /**< TX Buffer Size in Bytes (Power of 2) */
#endif // TX_BUFFER_SIZE
#else // UART_XMEGA
#ifndef RX_BUFFER_SIZE
#define RX_BUFFER_SIZE 128 /**< RX Buffer Size in Bytes (Power of 2) */
#endif // RX_BUFFER_SIZE
#ifndef TX_BUFFER_SIZE
#define TX_BUFFER_SIZE 128 /**< TX Buffer Size in Bytes (Power of 2) */
#endif // TX_BUFFER_SIZE
#endif // UART_XMEGA
/** Defining this enables incoming XON XOFF (sends XOFF if rx buff is full) */
//#define FLOWCONTROL
#define FLOWMARK 5 /**< Space remaining to trigger xoff/xon */
#define XON 0x11 /**< XON Value */
#define XOFF 0x13 /**< XOFF Value */
#if (RX_BUFFER_SIZE < 2) || (TX_BUFFER_SIZE < 2)
#error SERIAL BUFFER TOO SMALL!
#endif
#ifdef FLOWCONTROL
#if (RX_BUFFER_SIZE < 8) || (TX_BUFFER_SIZE < 8)
#error SERIAL BUFFER TOO SMALL!
#endif
#endif
#if ((RX_BUFFER_SIZE + TX_BUFFER_SIZE) * UART_COUNT) >= (RAMEND - 0x60)
#error SERIAL BUFFER TOO LARGE!
#endif
#if (RX_BUFFER_SIZE > 65535) || (TX_BUFFER_SIZE > 65535)
#error SERIAL BUFFER INDEX HAS TO FIT 16BIT!
#endif
#ifndef UART_XMEGA
// serialRegisters
#define SERIALDATA 0
#define SERIALB 1
#define SERIALC 2
#define SERIALA 3
#define SERIALUBRRH 4
#define SERIALUBRRL 5
// serialBits
#define SERIALUCSZ0 0
#define SERIALUCSZ1 1
#define SERIALRXCIE 2
#define SERIALRXEN 3
#define SERIALTXEN 4
#define SERIALUDRIE 5
#define SERIALUDRE 6
#endif // UART_XMEGA
static uint8_t volatile rxBuffer[UART_COUNT][RX_BUFFER_SIZE];
static uint8_t volatile txBuffer[UART_COUNT][TX_BUFFER_SIZE];
static uint16_t volatile rxRead[UART_COUNT];
static uint16_t volatile rxWrite[UART_COUNT];
static uint16_t volatile txRead[UART_COUNT];
static uint16_t volatile txWrite[UART_COUNT];
static uint8_t volatile shouldStartTransmission[UART_COUNT];
#ifdef FLOWCONTROL
static uint8_t volatile sendThisNext[UART_COUNT];
static uint8_t volatile flow[UART_COUNT];
static uint16_t volatile rxBufferElements[UART_COUNT];
#endif
static void serialReceiveInterrupt(uint8_t uart);
static void serialTransmitInterrupt(uint8_t uart);
uint8_t serialAvailable(void) {
return UART_COUNT;
}
void serialWriteInt16(uint8_t uart, uint16_t num) {
if (uart >= UART_COUNT) {
return;
}
uint8_t buf[5] = { 0, 0, 0, 0, 0 };
uint8_t n = 0;
if (num == 0) {
n = 1;
} else {
while (num > 0) {
buf[n++] = num % 10;
num /= 10;
}
}
for (int8_t i = n - 1; i >= 0; i--) {
serialWrite(uart, buf[i] + '0');
}
}
void serialInit(uint8_t uart, uint16_t baud) {
if (uart >= UART_COUNT) {
return;
}
// Initialize state variables
rxRead[uart] = 0;
rxWrite[uart] = 0;
txRead[uart] = 0;
txWrite[uart] = 0;
shouldStartTransmission[uart] = 1;
#ifdef FLOWCONTROL
sendThisNext[uart] = 0;
flow[uart] = 1;
rxBufferElements[uart] = 0;
#endif // FLOWCONTROL
#ifndef UART_XMEGA
// Default Configuration: 8N1
*serialRegisters[uart][SERIALC] = (1 << serialBits[uart][SERIALUCSZ0])
| (1 << serialBits[uart][SERIALUCSZ1]);
// Set baudrate
#if SERIALBAUDBIT == 8
*serialRegisters[uart][SERIALUBRRH] = (baud >> 8);
*serialRegisters[uart][SERIALUBRRL] = baud;
#else // SERIALBAUDBIT == 8
*serialBaudRegisters[uart] = baud;
#endif // SERIALBAUDBIT == 8
// Enable Interrupts
*serialRegisters[uart][SERIALB] = (1 << serialBits[uart][SERIALRXCIE]);
// Enable Receiver/Transmitter
*serialRegisters[uart][SERIALB] |= (1 << serialBits[uart][SERIALRXEN])
| (1 << serialBits[uart][SERIALTXEN]);
#else // UART_XMEGA
// Default Configuration: 8N1
serialRegisters[uart]->CTRLC = 0x03;
// Set baudrate
serialRegisters[uart]->BAUDCTRLB = (baud & 0x0F00) >> 8;
serialRegisters[uart]->BAUDCTRLA = (baud & 0x00FF);
// Enable Interrupts
serialRegisters[uart]->CTRLA = UART_INTERRUPT_LEVEL_RX << 4; // RXCINTLVL
// Enable Receiver/Transmitter
serialRegisters[uart]->CTRLB = 0x18;
#endif // UART_XMEGA
}
void serialClose(uint8_t uart) {
if (uart >= UART_COUNT) {
return;
}
#ifndef UART_XMEGA
uint8_t sreg = SREG;
sei();
while (!serialTxBufferEmpty(uart));
// Wait while Transmit Interrupt is on
while (*serialRegisters[uart][SERIALB] & (1 << serialBits[uart][SERIALUDRIE]));
cli();
*serialRegisters[uart][SERIALB] = 0;
*serialRegisters[uart][SERIALC] = 0;
SREG = sreg;
#else // UART_XMEGA
// TODO enable interrupts, wait for completion
sei();
while(!serialTxBufferEmpty(uart));
// TODO Wait while Transmit Interrupt is turned on
cli();
serialRegisters[uart]->CTRLA = 0;
serialRegisters[uart]->CTRLB = 0;
serialRegisters[uart]->CTRLC = 0;
// TODO restore interrupt state
#endif // UART_XMEGA
}
#ifdef FLOWCONTROL
void setFlow(uint8_t uart, uint8_t on) {
if (uart >= UART_COUNT) {
return;
}
if (flow[uart] != on) {
if (on == 1) {
// Send XON
while (sendThisNext[uart] != 0);
sendThisNext[uart] = XON;
flow[uart] = 1;
if (shouldStartTransmission[uart]) {
shouldStartTransmission[uart] = 0;
#ifndef UART_XMEGA
// Enable Interrupt
*serialRegisters[uart][SERIALB] |= (1 << serialBits[uart][SERIALUDRIE]);
// Trigger Interrupt
*serialRegisters[uart][SERIALA] |= (1 << serialBits[uart][SERIALUDRE]);
#else // UART_XMEGA
// Enable Interrupt
serialRegisters[uart]->CTRLA |= UART_INTERRUPT_LEVEL_TX << 2; // TXCINTLVL
// Trigger Interrupt
serialTransmitInterrupt(uart);
#endif // UART_XMEGA
}
} else {
// Send XOFF
sendThisNext[uart] = XOFF;
flow[uart] = 0;
if (shouldStartTransmission[uart]) {
shouldStartTransmission[uart] = 0;
#ifndef UART_XMEGA
// Enable Interrupt
*serialRegisters[uart][SERIALB] |= (1 << serialBits[uart][SERIALUDRIE]);
// Trigger Interrupt
*serialRegisters[uart][SERIALA] |= (1 << serialBits[uart][SERIALUDRE]);
#else // UART_XMEGA
// Enable Interrupt
serialRegisters[uart]->CTRLA |= UART_INTERRUPT_LEVEL_TX << 2; // TXCINTLVL
// Trigger Interrupt
serialTransmitInterrupt(uart);
#endif // UART_XMEGA
}
}
// Wait until it's transmitted / while transmit interrupt is turned on
#ifndef UART_XMEGA
while (*serialRegisters[uart][SERIALB] & (1 << serialBits[uart][SERIALUDRIE]));
#else // UART_XMEGA
// TODO Wait while transmit interrupt is turned on
#endif
}
}
#endif // FLOWCONTROL
// ---------------------
// | Reception |
// ---------------------
uint8_t serialHasChar(uint8_t uart) {
if (uart >= UART_COUNT) {
return 0;
}
if (rxRead[uart] != rxWrite[uart]) {
// True if char available
return 1;
} else {
return 0;
}
}
uint8_t serialGetBlocking(uint8_t uart) {
if (uart >= UART_COUNT) {
return 0;
}
while(!serialHasChar(uart));
return serialGet(uart);
}
uint8_t serialGet(uint8_t uart) {
if (uart >= UART_COUNT) {
return 0;
}
uint8_t c;
if (rxRead[uart] != rxWrite[uart]) {
#ifdef FLOWCONTROL
// This should not underflow as long as the receive buffer is not empty
rxBufferElements[uart]--;
if ((flow[uart] == 0) && (rxBufferElements[uart] <= FLOWMARK)) {
while (sendThisNext[uart] != 0);
sendThisNext[uart] = XON;
flow[uart] = 1;
if (shouldStartTransmission[uart]) {
shouldStartTransmission[uart] = 0;
#ifndef UART_XMEGA
// Enable Interrupt
*serialRegisters[uart][SERIALB] |= (1 << serialBits[uart][SERIALUDRIE]);
// Trigger Interrupt
*serialRegisters[uart][SERIALA] |= (1 << serialBits[uart][SERIALUDRE]);
#else // UART_XMEGA
// Enable Interrupt
serialRegisters[uart]->CTRLA |= UART_INTERRUPT_LEVEL_TX << 2; // TXCINTLVL
// Trigger Interrupt
serialTransmitInterrupt(uart);
#endif // UART_XMEGA
}
}
#endif // FLOWCONTROL
c = rxBuffer[uart][rxRead[uart]];
rxBuffer[uart][rxRead[uart]] = 0;
if (rxRead[uart] < (RX_BUFFER_SIZE - 1)) {
rxRead[uart]++;
} else {
rxRead[uart] = 0;
}
return c;
} else {
return 0;
}
}
uint8_t serialRxBufferFull(uint8_t uart) {
if (uart >= UART_COUNT) {
return 0;
}
return (((rxWrite[uart] + 1) == rxRead[uart])
|| ((rxRead[uart] == 0) && ((rxWrite[uart] + 1) == RX_BUFFER_SIZE)));
}
uint8_t serialRxBufferEmpty(uint8_t uart) {
if (uart >= UART_COUNT) {
return 0;
}
if (rxRead[uart] != rxWrite[uart]) {
return 0;
} else {
return 1;
}
}
// ----------------------
// | Transmission |
// ----------------------
void serialWrite(uint8_t uart, uint8_t data) {
if (uart >= UART_COUNT) {
return;
}
#ifdef SERIALINJECTCR
if (data == '\n') {
serialWrite(uart, '\r');
}
#endif
while (serialTxBufferFull(uart));
txBuffer[uart][txWrite[uart]] = data;
if (txWrite[uart] < (TX_BUFFER_SIZE - 1)) {
txWrite[uart]++;
} else {
txWrite[uart] = 0;
}
if (shouldStartTransmission[uart]) {
shouldStartTransmission[uart] = 0;
#ifndef UART_XMEGA
// Enable Interrupt
*serialRegisters[uart][SERIALB] |= (1 << serialBits[uart][SERIALUDRIE]);
// Trigger Interrupt
*serialRegisters[uart][SERIALA] |= (1 << serialBits[uart][SERIALUDRE]);
#else // UART_XMEGA
// Enable Interrupt
serialRegisters[uart]->CTRLA |= UART_INTERRUPT_LEVEL_TX << 2; // TXCINTLVL
// Trigger Interrupt
serialTransmitInterrupt(uart);
#endif // UART_XMEGA
}
}
void serialWriteString(uint8_t uart, const char *data) {
if (uart >= UART_COUNT) {
return;
}
if (data == 0) {
serialWriteString(uart, "NULL");
} else {
while (*data != '\0') {
serialWrite(uart, *data++);
}
}
}
uint8_t serialTxBufferFull(uint8_t uart) {
if (uart >= UART_COUNT) {
return 0;
}
return (((txWrite[uart] + 1) == txRead[uart])
|| ((txRead[uart] == 0) && ((txWrite[uart] + 1) == TX_BUFFER_SIZE)));
}
uint8_t serialTxBufferEmpty(uint8_t uart) {
if (uart >= UART_COUNT) {
return 0;
}
if (txRead[uart] != txWrite[uart]) {
return 0;
} else {
return 1;
}
}
// ----------------------
// | Internal |
// ----------------------
static void serialReceiveInterrupt(uint8_t uart) {
#ifndef UART_XMEGA
rxBuffer[uart][rxWrite[uart]] = *serialRegisters[uart][SERIALDATA];
#else // UART_XMEGA
rxBuffer[uart][rxWrite[uart]] = serialRegisters[uart]->DATA;
#endif // UART_XMEGA
// Simply skip increasing the write pointer if the receive buffer is overflowing
if (!serialRxBufferFull(uart)) {
if (rxWrite[uart] < (RX_BUFFER_SIZE - 1)) {
rxWrite[uart]++;
} else {
rxWrite[uart] = 0;
}
}
#ifdef FLOWCONTROL
if (rxBufferElements[uart] < 0xFFFF) {
rxBufferElements[uart]++;
}
if ((flow[uart] == 1) && (rxBufferElements[uart] >= (RX_BUFFER_SIZE - FLOWMARK))) {
sendThisNext[uart] = XOFF;
flow[uart] = 0;
if (shouldStartTransmission[uart]) {
shouldStartTransmission[uart] = 0;
#ifndef UART_XMEGA
// Enable Interrupt
*serialRegisters[uart][SERIALB] |= (1 << serialBits[uart][SERIALUDRIE]);
// Trigger Interrupt
*serialRegisters[uart][SERIALA] |= (1 << serialBits[uart][SERIALUDRE]);
#else // UART_XMEGA
// Enable Interrupt
serialRegisters[uart]->CTRLA |= UART_INTERRUPT_LEVEL_TX << 2; // TXCINTLVL
// Trigger Interrupt
serialTransmitInterrupt(uart);
#endif // UART_XMEGA
}
}
#endif // FLOWCONTROL
}
static void serialTransmitInterrupt(uint8_t uart) {
#ifdef FLOWCONTROL
if (sendThisNext[uart]) {
#ifndef UART_XMEGA
*serialRegisters[uart][SERIALDATA] = sendThisNext[uart];
#else // UART_XMEGA
serialRegisters[uart]->DATA = sendThisNext[uart];
#endif // UART_XMEGA
sendThisNext[uart] = 0;
} else {
#endif // FLOWCONTROL
if (txRead[uart] != txWrite[uart]) {
#ifndef UART_XMEGA
*serialRegisters[uart][SERIALDATA] = txBuffer[uart][txRead[uart]];
#else // UART_XMEGA
serialRegisters[uart]->DATA = txBuffer[uart][txRead[uart]];
#endif // UART_XMEGA
if (txRead[uart] < (TX_BUFFER_SIZE -1)) {
txRead[uart]++;
} else {
txRead[uart] = 0;
}
} else {
shouldStartTransmission[uart] = 1;
// Disable Interrupt
#ifndef UART_XMEGA
*serialRegisters[uart][SERIALB] &= ~(1 << serialBits[uart][SERIALUDRIE]);
#else // UART_XMEGA
serialRegisters[uart]->CTRLA &= ~(UART_INTERRUPT_MASK << 2); // TXCINTLVL
#endif // UART_XMEGA
}
#ifdef FLOWCONTROL
}
#endif // FLOWCONTROL
}
// Receive complete
#define ISR_RX(n) \
ISR(SERIALRECIEVEINTERRUPT ## n) { \
serialReceiveInterrupt(n); \
}
// Data register empty
#define ISR_TX(n) \
ISR(SERIALTRANSMITINTERRUPT ## n) { \
serialTransmitInterrupt(n); \
}
ISR_RX(0)
ISR_TX(0)
#if UART_COUNT > 1
ISR_RX(1)
ISR_TX(1)
#endif
#if UART_COUNT > 2
ISR_RX(2)
ISR_TX(2)
#endif
#if UART_COUNT > 3
ISR_RX(3)
ISR_TX(3)
#endif
#if UART_COUNT > 4
ISR_RX(4)
ISR_TX(4)
#endif
#if UART_COUNT > 5
ISR_RX(5)
ISR_TX(5)
#endif
#if UART_COUNT > 6
ISR_RX(6)
ISR_TX(6)
#endif
#if UART_COUNT > 7
ISR_RX(7)
ISR_TX(7)
#endif
/** @} */
| [
"kovalenkodmitrij@gmail.com"
] | kovalenkodmitrij@gmail.com |
66a301ab4853673eaf72db3ef90f685b04b10e7a | 5f93901cebdbf46de5d6d92184bebb68a7dc2aff | /SwtchBlaydBuilds/Debug/Classes/Native/Il2CppCompilerCalculateTypeValues_3Table.cpp | 1be017d77dbce4e530a7e3829a04530f615cae8c | [] | no_license | Zilby/SpinnerRunner | 6cd0b29d81f9dbc77f9fdd6aebcb5b3c945d0c31 | 6204b5918bc666666d71927236eb25240b1ad711 | refs/heads/master | 2021-06-07T09:52:53.018234 | 2019-10-01T03:12:57 | 2019-10-01T03:12:57 | 112,148,379 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 458,377 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t5769829;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument>
struct IList_1_t243502644;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument>
struct IList_1_t2103185493;
// System.Type
struct Type_t;
// System.Void
struct Void_t1185182177;
// System.Byte[]
struct ByteU5BU5D_t4116647657;
// System.Reflection.Emit.LocalBuilder[]
struct LocalBuilderU5BU5D_t4280809526;
// System.Reflection.Emit.ILTokenInfo[]
struct ILTokenInfoU5BU5D_t973106575;
// System.Reflection.Emit.ILGenerator/LabelData[]
struct LabelDataU5BU5D_t327903686;
// System.Reflection.Emit.ILGenerator/LabelFixup[]
struct LabelFixupU5BU5D_t103660291;
// System.Reflection.Module
struct Module_t2987026101;
// System.Reflection.Emit.TokenGenerator
struct TokenGenerator_t1734832736;
// System.Reflection.Emit.ModuleBuilder
struct ModuleBuilder_t731887691;
// System.String[]
struct StringU5BU5D_t1281789340;
// System.Char[]
struct CharU5BU5D_t3528271667;
// System.IntPtr[]
struct IntPtrU5BU5D_t4013366056;
// System.String
struct String_t;
// System.Collections.IDictionary
struct IDictionary_t1363984059;
// System.Boolean[]
struct BooleanU5BU5D_t2897418192;
// System.Reflection.EventInfo/AddEventAdapter
struct AddEventAdapter_t1787725097;
// System.Text.Encoding
struct Encoding_t1523322056;
// System.IO.Stream
struct Stream_t1273022909;
// System.Text.Decoder
struct Decoder_t2204182725;
// System.Text.StringBuilder
struct StringBuilder_t;
// System.Reflection.Emit.ILGenerator
struct ILGenerator_t1388622344;
// System.Reflection.MemberInfo
struct MemberInfo_t;
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t2120639521;
// System.Security.Policy.Evidence
struct Evidence_t2008144148;
// System.Security.PermissionSet
struct PermissionSet_t223948603;
// System.Reflection.MethodInfo
struct MethodInfo_t;
// System.DelegateData
struct DelegateData_t1677132599;
// System.Reflection.Emit.TypeBuilder
struct TypeBuilder_t1073948154;
// System.Reflection.Emit.UnmanagedMarshal
struct UnmanagedMarshal_t984015687;
// System.Type[]
struct TypeU5BU5D_t3940880105;
// System.Reflection.Emit.ParameterBuilder[]
struct ParameterBuilderU5BU5D_t3054868058;
// System.Reflection.Emit.CustomAttributeBuilder[]
struct CustomAttributeBuilderU5BU5D_t2951373564;
// System.Reflection.Emit.GenericTypeParameterBuilder[]
struct GenericTypeParameterBuilderU5BU5D_t3780444109;
// System.Type[][]
struct TypeU5BU5DU5BU5D_t4042077012;
// System.Reflection.Emit.RefEmitPermissionSet[]
struct RefEmitPermissionSetU5BU5D_t567451178;
// System.Reflection.TypeFilter
struct TypeFilter_t2356120900;
// System.Reflection.Assembly
struct Assembly_t;
// System.Reflection.MemberFilter
struct MemberFilter_t426314064;
// System.Object[]
struct ObjectU5BU5D_t2843939325;
// System.Delegate
struct Delegate_t1188392813;
// System.Reflection.MonoMethod
struct MonoMethod_t;
// System.EventHandler
struct EventHandler_t1348719766;
// System.Reflection.Emit.ModuleBuilder[]
struct ModuleBuilderU5BU5D_t2441092650;
// System.Reflection.Emit.MonoResource[]
struct MonoResourceU5BU5D_t979189380;
// System.Reflection.Module[]
struct ModuleU5BU5D_t4238763736;
// System.Reflection.Emit.MonoWin32Resource[]
struct MonoWin32ResourceU5BU5D_t4084032906;
// System.Collections.ArrayList
struct ArrayList_t2718874744;
// System.Resources.Win32VersionResource
struct Win32VersionResource_t1367628464;
// Mono.Security.StrongName
struct StrongName_t4093849377;
// System.Reflection.MethodInfo[]
struct MethodInfoU5BU5D_t2572182361;
// System.Globalization.CultureInfo
struct CultureInfo_t4157843068;
// System.Reflection.StrongNameKeyPair
struct StrongNameKeyPair_t3411219591;
// System.Version
struct Version_t3456873960;
// System.Reflection.Emit.MethodBuilder
struct MethodBuilder_t2807316753;
// System.Reflection.MonoProperty/GetterAdapter
struct GetterAdapter_t2155025054;
// System.IAsyncResult
struct IAsyncResult_t767004451;
// System.AsyncCallback
struct AsyncCallback_t3962456242;
// System.Reflection.Emit.TypeBuilder[]
struct TypeBuilderU5BU5D_t786280671;
// System.Reflection.Emit.AssemblyBuilder
struct AssemblyBuilder_t359885250;
// System.Reflection.Emit.MethodBuilder[]
struct MethodBuilderU5BU5D_t3705301900;
// System.Reflection.Emit.FieldBuilder[]
struct FieldBuilderU5BU5D_t138311604;
// System.Collections.Hashtable
struct Hashtable_t1853889766;
// System.Int32[]
struct Int32U5BU5D_t385246372;
// System.Reflection.Emit.ModuleBuilderTokenGenerator
struct ModuleBuilderTokenGenerator_t944435078;
// System.Diagnostics.SymbolStore.ISymbolWriter
struct ISymbolWriter_t780458634;
// System.Reflection.Emit.ConstructorBuilder[]
struct ConstructorBuilderU5BU5D_t3223009221;
// System.Reflection.Emit.PropertyBuilder[]
struct PropertyBuilderU5BU5D_t4023329206;
// System.Reflection.Emit.EventBuilder[]
struct EventBuilderU5BU5D_t3902749141;
#ifndef RUNTIMEOBJECT_H
#define RUNTIMEOBJECT_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Object
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEOBJECT_H
#ifndef VALUETYPE_T3640485471_H
#define VALUETYPE_T3640485471_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.ValueType
struct ValueType_t3640485471 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.ValueType
struct ValueType_t3640485471_marshaled_com
{
};
#endif // VALUETYPE_T3640485471_H
#ifndef CUSTOMATTRIBUTEDATA_T1084486650_H
#define CUSTOMATTRIBUTEDATA_T1084486650_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeData
struct CustomAttributeData_t1084486650 : public RuntimeObject
{
public:
// System.Reflection.ConstructorInfo System.Reflection.CustomAttributeData::ctorInfo
ConstructorInfo_t5769829 * ___ctorInfo_0;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeTypedArgument> System.Reflection.CustomAttributeData::ctorArgs
RuntimeObject* ___ctorArgs_1;
// System.Collections.Generic.IList`1<System.Reflection.CustomAttributeNamedArgument> System.Reflection.CustomAttributeData::namedArgs
RuntimeObject* ___namedArgs_2;
public:
inline static int32_t get_offset_of_ctorInfo_0() { return static_cast<int32_t>(offsetof(CustomAttributeData_t1084486650, ___ctorInfo_0)); }
inline ConstructorInfo_t5769829 * get_ctorInfo_0() const { return ___ctorInfo_0; }
inline ConstructorInfo_t5769829 ** get_address_of_ctorInfo_0() { return &___ctorInfo_0; }
inline void set_ctorInfo_0(ConstructorInfo_t5769829 * value)
{
___ctorInfo_0 = value;
Il2CppCodeGenWriteBarrier((&___ctorInfo_0), value);
}
inline static int32_t get_offset_of_ctorArgs_1() { return static_cast<int32_t>(offsetof(CustomAttributeData_t1084486650, ___ctorArgs_1)); }
inline RuntimeObject* get_ctorArgs_1() const { return ___ctorArgs_1; }
inline RuntimeObject** get_address_of_ctorArgs_1() { return &___ctorArgs_1; }
inline void set_ctorArgs_1(RuntimeObject* value)
{
___ctorArgs_1 = value;
Il2CppCodeGenWriteBarrier((&___ctorArgs_1), value);
}
inline static int32_t get_offset_of_namedArgs_2() { return static_cast<int32_t>(offsetof(CustomAttributeData_t1084486650, ___namedArgs_2)); }
inline RuntimeObject* get_namedArgs_2() const { return ___namedArgs_2; }
inline RuntimeObject** get_address_of_namedArgs_2() { return &___namedArgs_2; }
inline void set_namedArgs_2(RuntimeObject* value)
{
___namedArgs_2 = value;
Il2CppCodeGenWriteBarrier((&___namedArgs_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CUSTOMATTRIBUTEDATA_T1084486650_H
#ifndef POINTER_T2088917139_H
#define POINTER_T2088917139_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Pointer
struct Pointer_t2088917139 : public RuntimeObject
{
public:
// System.Void* System.Reflection.Pointer::data
void* ___data_0;
// System.Type System.Reflection.Pointer::type
Type_t * ___type_1;
public:
inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(Pointer_t2088917139, ___data_0)); }
inline void* get_data_0() const { return ___data_0; }
inline void** get_address_of_data_0() { return &___data_0; }
inline void set_data_0(void* value)
{
___data_0 = value;
}
inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(Pointer_t2088917139, ___type_1)); }
inline Type_t * get_type_1() const { return ___type_1; }
inline Type_t ** get_address_of_type_1() { return &___type_1; }
inline void set_type_1(Type_t * value)
{
___type_1 = value;
Il2CppCodeGenWriteBarrier((&___type_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // POINTER_T2088917139_H
#ifndef EVENTBUILDER_T3451532220_H
#define EVENTBUILDER_T3451532220_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.EventBuilder
struct EventBuilder_t3451532220 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTBUILDER_T3451532220_H
#ifndef BINDER_T2999457153_H
#define BINDER_T2999457153_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Binder
struct Binder_t2999457153 : public RuntimeObject
{
public:
public:
};
struct Binder_t2999457153_StaticFields
{
public:
// System.Reflection.Binder System.Reflection.Binder::default_binder
Binder_t2999457153 * ___default_binder_0;
public:
inline static int32_t get_offset_of_default_binder_0() { return static_cast<int32_t>(offsetof(Binder_t2999457153_StaticFields, ___default_binder_0)); }
inline Binder_t2999457153 * get_default_binder_0() const { return ___default_binder_0; }
inline Binder_t2999457153 ** get_address_of_default_binder_0() { return &___default_binder_0; }
inline void set_default_binder_0(Binder_t2999457153 * value)
{
___default_binder_0 = value;
Il2CppCodeGenWriteBarrier((&___default_binder_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDER_T2999457153_H
#ifndef ILGENERATOR_T1388622344_H
#define ILGENERATOR_T1388622344_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILGenerator
struct ILGenerator_t1388622344 : public RuntimeObject
{
public:
// System.Byte[] System.Reflection.Emit.ILGenerator::code
ByteU5BU5D_t4116647657* ___code_1;
// System.Int32 System.Reflection.Emit.ILGenerator::code_len
int32_t ___code_len_2;
// System.Int32 System.Reflection.Emit.ILGenerator::max_stack
int32_t ___max_stack_3;
// System.Int32 System.Reflection.Emit.ILGenerator::cur_stack
int32_t ___cur_stack_4;
// System.Reflection.Emit.LocalBuilder[] System.Reflection.Emit.ILGenerator::locals
LocalBuilderU5BU5D_t4280809526* ___locals_5;
// System.Int32 System.Reflection.Emit.ILGenerator::num_token_fixups
int32_t ___num_token_fixups_6;
// System.Reflection.Emit.ILTokenInfo[] System.Reflection.Emit.ILGenerator::token_fixups
ILTokenInfoU5BU5D_t973106575* ___token_fixups_7;
// System.Reflection.Emit.ILGenerator/LabelData[] System.Reflection.Emit.ILGenerator::labels
LabelDataU5BU5D_t327903686* ___labels_8;
// System.Int32 System.Reflection.Emit.ILGenerator::num_labels
int32_t ___num_labels_9;
// System.Reflection.Emit.ILGenerator/LabelFixup[] System.Reflection.Emit.ILGenerator::fixups
LabelFixupU5BU5D_t103660291* ___fixups_10;
// System.Int32 System.Reflection.Emit.ILGenerator::num_fixups
int32_t ___num_fixups_11;
// System.Reflection.Module System.Reflection.Emit.ILGenerator::module
Module_t2987026101 * ___module_12;
// System.Reflection.Emit.TokenGenerator System.Reflection.Emit.ILGenerator::token_gen
RuntimeObject* ___token_gen_13;
public:
inline static int32_t get_offset_of_code_1() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___code_1)); }
inline ByteU5BU5D_t4116647657* get_code_1() const { return ___code_1; }
inline ByteU5BU5D_t4116647657** get_address_of_code_1() { return &___code_1; }
inline void set_code_1(ByteU5BU5D_t4116647657* value)
{
___code_1 = value;
Il2CppCodeGenWriteBarrier((&___code_1), value);
}
inline static int32_t get_offset_of_code_len_2() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___code_len_2)); }
inline int32_t get_code_len_2() const { return ___code_len_2; }
inline int32_t* get_address_of_code_len_2() { return &___code_len_2; }
inline void set_code_len_2(int32_t value)
{
___code_len_2 = value;
}
inline static int32_t get_offset_of_max_stack_3() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___max_stack_3)); }
inline int32_t get_max_stack_3() const { return ___max_stack_3; }
inline int32_t* get_address_of_max_stack_3() { return &___max_stack_3; }
inline void set_max_stack_3(int32_t value)
{
___max_stack_3 = value;
}
inline static int32_t get_offset_of_cur_stack_4() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___cur_stack_4)); }
inline int32_t get_cur_stack_4() const { return ___cur_stack_4; }
inline int32_t* get_address_of_cur_stack_4() { return &___cur_stack_4; }
inline void set_cur_stack_4(int32_t value)
{
___cur_stack_4 = value;
}
inline static int32_t get_offset_of_locals_5() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___locals_5)); }
inline LocalBuilderU5BU5D_t4280809526* get_locals_5() const { return ___locals_5; }
inline LocalBuilderU5BU5D_t4280809526** get_address_of_locals_5() { return &___locals_5; }
inline void set_locals_5(LocalBuilderU5BU5D_t4280809526* value)
{
___locals_5 = value;
Il2CppCodeGenWriteBarrier((&___locals_5), value);
}
inline static int32_t get_offset_of_num_token_fixups_6() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___num_token_fixups_6)); }
inline int32_t get_num_token_fixups_6() const { return ___num_token_fixups_6; }
inline int32_t* get_address_of_num_token_fixups_6() { return &___num_token_fixups_6; }
inline void set_num_token_fixups_6(int32_t value)
{
___num_token_fixups_6 = value;
}
inline static int32_t get_offset_of_token_fixups_7() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___token_fixups_7)); }
inline ILTokenInfoU5BU5D_t973106575* get_token_fixups_7() const { return ___token_fixups_7; }
inline ILTokenInfoU5BU5D_t973106575** get_address_of_token_fixups_7() { return &___token_fixups_7; }
inline void set_token_fixups_7(ILTokenInfoU5BU5D_t973106575* value)
{
___token_fixups_7 = value;
Il2CppCodeGenWriteBarrier((&___token_fixups_7), value);
}
inline static int32_t get_offset_of_labels_8() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___labels_8)); }
inline LabelDataU5BU5D_t327903686* get_labels_8() const { return ___labels_8; }
inline LabelDataU5BU5D_t327903686** get_address_of_labels_8() { return &___labels_8; }
inline void set_labels_8(LabelDataU5BU5D_t327903686* value)
{
___labels_8 = value;
Il2CppCodeGenWriteBarrier((&___labels_8), value);
}
inline static int32_t get_offset_of_num_labels_9() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___num_labels_9)); }
inline int32_t get_num_labels_9() const { return ___num_labels_9; }
inline int32_t* get_address_of_num_labels_9() { return &___num_labels_9; }
inline void set_num_labels_9(int32_t value)
{
___num_labels_9 = value;
}
inline static int32_t get_offset_of_fixups_10() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___fixups_10)); }
inline LabelFixupU5BU5D_t103660291* get_fixups_10() const { return ___fixups_10; }
inline LabelFixupU5BU5D_t103660291** get_address_of_fixups_10() { return &___fixups_10; }
inline void set_fixups_10(LabelFixupU5BU5D_t103660291* value)
{
___fixups_10 = value;
Il2CppCodeGenWriteBarrier((&___fixups_10), value);
}
inline static int32_t get_offset_of_num_fixups_11() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___num_fixups_11)); }
inline int32_t get_num_fixups_11() const { return ___num_fixups_11; }
inline int32_t* get_address_of_num_fixups_11() { return &___num_fixups_11; }
inline void set_num_fixups_11(int32_t value)
{
___num_fixups_11 = value;
}
inline static int32_t get_offset_of_module_12() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___module_12)); }
inline Module_t2987026101 * get_module_12() const { return ___module_12; }
inline Module_t2987026101 ** get_address_of_module_12() { return &___module_12; }
inline void set_module_12(Module_t2987026101 * value)
{
___module_12 = value;
Il2CppCodeGenWriteBarrier((&___module_12), value);
}
inline static int32_t get_offset_of_token_gen_13() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344, ___token_gen_13)); }
inline RuntimeObject* get_token_gen_13() const { return ___token_gen_13; }
inline RuntimeObject** get_address_of_token_gen_13() { return &___token_gen_13; }
inline void set_token_gen_13(RuntimeObject* value)
{
___token_gen_13 = value;
Il2CppCodeGenWriteBarrier((&___token_gen_13), value);
}
};
struct ILGenerator_t1388622344_StaticFields
{
public:
// System.Type System.Reflection.Emit.ILGenerator::void_type
Type_t * ___void_type_0;
public:
inline static int32_t get_offset_of_void_type_0() { return static_cast<int32_t>(offsetof(ILGenerator_t1388622344_StaticFields, ___void_type_0)); }
inline Type_t * get_void_type_0() const { return ___void_type_0; }
inline Type_t ** get_address_of_void_type_0() { return &___void_type_0; }
inline void set_void_type_0(Type_t * value)
{
___void_type_0 = value;
Il2CppCodeGenWriteBarrier((&___void_type_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ILGENERATOR_T1388622344_H
#ifndef MODULEBUILDERTOKENGENERATOR_T944435078_H
#define MODULEBUILDERTOKENGENERATOR_T944435078_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ModuleBuilderTokenGenerator
struct ModuleBuilderTokenGenerator_t944435078 : public RuntimeObject
{
public:
// System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.ModuleBuilderTokenGenerator::mb
ModuleBuilder_t731887691 * ___mb_0;
public:
inline static int32_t get_offset_of_mb_0() { return static_cast<int32_t>(offsetof(ModuleBuilderTokenGenerator_t944435078, ___mb_0)); }
inline ModuleBuilder_t731887691 * get_mb_0() const { return ___mb_0; }
inline ModuleBuilder_t731887691 ** get_address_of_mb_0() { return &___mb_0; }
inline void set_mb_0(ModuleBuilder_t731887691 * value)
{
___mb_0 = value;
Il2CppCodeGenWriteBarrier((&___mb_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MODULEBUILDERTOKENGENERATOR_T944435078_H
#ifndef OPCODENAMES_T3363784580_H
#define OPCODENAMES_T3363784580_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.OpCodeNames
struct OpCodeNames_t3363784580 : public RuntimeObject
{
public:
public:
};
struct OpCodeNames_t3363784580_StaticFields
{
public:
// System.String[] System.Reflection.Emit.OpCodeNames::names
StringU5BU5D_t1281789340* ___names_0;
public:
inline static int32_t get_offset_of_names_0() { return static_cast<int32_t>(offsetof(OpCodeNames_t3363784580_StaticFields, ___names_0)); }
inline StringU5BU5D_t1281789340* get_names_0() const { return ___names_0; }
inline StringU5BU5D_t1281789340** get_address_of_names_0() { return &___names_0; }
inline void set_names_0(StringU5BU5D_t1281789340* value)
{
___names_0 = value;
Il2CppCodeGenWriteBarrier((&___names_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPCODENAMES_T3363784580_H
#ifndef RESOLVEEVENTHOLDER_T2120639521_H
#define RESOLVEEVENTHOLDER_T2120639521_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Assembly/ResolveEventHolder
struct ResolveEventHolder_t2120639521 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RESOLVEEVENTHOLDER_T2120639521_H
#ifndef STREAM_T1273022909_H
#define STREAM_T1273022909_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.Stream
struct Stream_t1273022909 : public RuntimeObject
{
public:
public:
};
struct Stream_t1273022909_StaticFields
{
public:
// System.IO.Stream System.IO.Stream::Null
Stream_t1273022909 * ___Null_0;
public:
inline static int32_t get_offset_of_Null_0() { return static_cast<int32_t>(offsetof(Stream_t1273022909_StaticFields, ___Null_0)); }
inline Stream_t1273022909 * get_Null_0() const { return ___Null_0; }
inline Stream_t1273022909 ** get_address_of_Null_0() { return &___Null_0; }
inline void set_Null_0(Stream_t1273022909 * value)
{
___Null_0 = value;
Il2CppCodeGenWriteBarrier((&___Null_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAM_T1273022909_H
#ifndef ATTRIBUTE_T861562559_H
#define ATTRIBUTE_T861562559_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Attribute
struct Attribute_t861562559 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ATTRIBUTE_T861562559_H
#ifndef TEXTWRITER_T3478189236_H
#define TEXTWRITER_T3478189236_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextWriter
struct TextWriter_t3478189236 : public RuntimeObject
{
public:
// System.Char[] System.IO.TextWriter::CoreNewLine
CharU5BU5D_t3528271667* ___CoreNewLine_0;
public:
inline static int32_t get_offset_of_CoreNewLine_0() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236, ___CoreNewLine_0)); }
inline CharU5BU5D_t3528271667* get_CoreNewLine_0() const { return ___CoreNewLine_0; }
inline CharU5BU5D_t3528271667** get_address_of_CoreNewLine_0() { return &___CoreNewLine_0; }
inline void set_CoreNewLine_0(CharU5BU5D_t3528271667* value)
{
___CoreNewLine_0 = value;
Il2CppCodeGenWriteBarrier((&___CoreNewLine_0), value);
}
};
struct TextWriter_t3478189236_StaticFields
{
public:
// System.IO.TextWriter System.IO.TextWriter::Null
TextWriter_t3478189236 * ___Null_1;
public:
inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(TextWriter_t3478189236_StaticFields, ___Null_1)); }
inline TextWriter_t3478189236 * get_Null_1() const { return ___Null_1; }
inline TextWriter_t3478189236 ** get_address_of_Null_1() { return &___Null_1; }
inline void set_Null_1(TextWriter_t3478189236 * value)
{
___Null_1 = value;
Il2CppCodeGenWriteBarrier((&___Null_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTWRITER_T3478189236_H
#ifndef TEXTREADER_T283511965_H
#define TEXTREADER_T283511965_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.TextReader
struct TextReader_t283511965 : public RuntimeObject
{
public:
public:
};
struct TextReader_t283511965_StaticFields
{
public:
// System.IO.TextReader System.IO.TextReader::Null
TextReader_t283511965 * ___Null_0;
public:
inline static int32_t get_offset_of_Null_0() { return static_cast<int32_t>(offsetof(TextReader_t283511965_StaticFields, ___Null_0)); }
inline TextReader_t283511965 * get_Null_0() const { return ___Null_0; }
inline TextReader_t283511965 ** get_address_of_Null_0() { return &___Null_0; }
inline void set_Null_0(TextReader_t283511965 * value)
{
___Null_0 = value;
Il2CppCodeGenWriteBarrier((&___Null_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TEXTREADER_T283511965_H
#ifndef MISSING_T508514592_H
#define MISSING_T508514592_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Missing
struct Missing_t508514592 : public RuntimeObject
{
public:
public:
};
struct Missing_t508514592_StaticFields
{
public:
// System.Reflection.Missing System.Reflection.Missing::Value
Missing_t508514592 * ___Value_0;
public:
inline static int32_t get_offset_of_Value_0() { return static_cast<int32_t>(offsetof(Missing_t508514592_StaticFields, ___Value_0)); }
inline Missing_t508514592 * get_Value_0() const { return ___Value_0; }
inline Missing_t508514592 ** get_address_of_Value_0() { return &___Value_0; }
inline void set_Value_0(Missing_t508514592 * value)
{
___Value_0 = value;
Il2CppCodeGenWriteBarrier((&___Value_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MISSING_T508514592_H
#ifndef MEMBERINFO_T_H
#define MEMBERINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberInfo
struct MemberInfo_t : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERINFO_T_H
#ifndef LOCALVARIABLEINFO_T2426779395_H
#define LOCALVARIABLEINFO_T2426779395_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.LocalVariableInfo
struct LocalVariableInfo_t2426779395 : public RuntimeObject
{
public:
// System.Type System.Reflection.LocalVariableInfo::type
Type_t * ___type_0;
// System.Boolean System.Reflection.LocalVariableInfo::is_pinned
bool ___is_pinned_1;
// System.UInt16 System.Reflection.LocalVariableInfo::position
uint16_t ___position_2;
public:
inline static int32_t get_offset_of_type_0() { return static_cast<int32_t>(offsetof(LocalVariableInfo_t2426779395, ___type_0)); }
inline Type_t * get_type_0() const { return ___type_0; }
inline Type_t ** get_address_of_type_0() { return &___type_0; }
inline void set_type_0(Type_t * value)
{
___type_0 = value;
Il2CppCodeGenWriteBarrier((&___type_0), value);
}
inline static int32_t get_offset_of_is_pinned_1() { return static_cast<int32_t>(offsetof(LocalVariableInfo_t2426779395, ___is_pinned_1)); }
inline bool get_is_pinned_1() const { return ___is_pinned_1; }
inline bool* get_address_of_is_pinned_1() { return &___is_pinned_1; }
inline void set_is_pinned_1(bool value)
{
___is_pinned_1 = value;
}
inline static int32_t get_offset_of_position_2() { return static_cast<int32_t>(offsetof(LocalVariableInfo_t2426779395, ___position_2)); }
inline uint16_t get_position_2() const { return ___position_2; }
inline uint16_t* get_address_of_position_2() { return &___position_2; }
inline void set_position_2(uint16_t value)
{
___position_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALVARIABLEINFO_T2426779395_H
#ifndef CUSTOMATTRIBUTEBUILDER_T2781637217_H
#define CUSTOMATTRIBUTEBUILDER_T2781637217_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.CustomAttributeBuilder
struct CustomAttributeBuilder_t2781637217 : public RuntimeObject
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CUSTOMATTRIBUTEBUILDER_T2781637217_H
#ifndef EXCEPTION_T_H
#define EXCEPTION_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Exception
struct Exception_t : public RuntimeObject
{
public:
// System.IntPtr[] System.Exception::trace_ips
IntPtrU5BU5D_t4013366056* ___trace_ips_0;
// System.Exception System.Exception::inner_exception
Exception_t * ___inner_exception_1;
// System.String System.Exception::message
String_t* ___message_2;
// System.String System.Exception::help_link
String_t* ___help_link_3;
// System.String System.Exception::class_name
String_t* ___class_name_4;
// System.String System.Exception::stack_trace
String_t* ___stack_trace_5;
// System.String System.Exception::_remoteStackTraceString
String_t* ____remoteStackTraceString_6;
// System.Int32 System.Exception::remote_stack_index
int32_t ___remote_stack_index_7;
// System.Int32 System.Exception::hresult
int32_t ___hresult_8;
// System.String System.Exception::source
String_t* ___source_9;
// System.Collections.IDictionary System.Exception::_data
RuntimeObject* ____data_10;
public:
inline static int32_t get_offset_of_trace_ips_0() { return static_cast<int32_t>(offsetof(Exception_t, ___trace_ips_0)); }
inline IntPtrU5BU5D_t4013366056* get_trace_ips_0() const { return ___trace_ips_0; }
inline IntPtrU5BU5D_t4013366056** get_address_of_trace_ips_0() { return &___trace_ips_0; }
inline void set_trace_ips_0(IntPtrU5BU5D_t4013366056* value)
{
___trace_ips_0 = value;
Il2CppCodeGenWriteBarrier((&___trace_ips_0), value);
}
inline static int32_t get_offset_of_inner_exception_1() { return static_cast<int32_t>(offsetof(Exception_t, ___inner_exception_1)); }
inline Exception_t * get_inner_exception_1() const { return ___inner_exception_1; }
inline Exception_t ** get_address_of_inner_exception_1() { return &___inner_exception_1; }
inline void set_inner_exception_1(Exception_t * value)
{
___inner_exception_1 = value;
Il2CppCodeGenWriteBarrier((&___inner_exception_1), value);
}
inline static int32_t get_offset_of_message_2() { return static_cast<int32_t>(offsetof(Exception_t, ___message_2)); }
inline String_t* get_message_2() const { return ___message_2; }
inline String_t** get_address_of_message_2() { return &___message_2; }
inline void set_message_2(String_t* value)
{
___message_2 = value;
Il2CppCodeGenWriteBarrier((&___message_2), value);
}
inline static int32_t get_offset_of_help_link_3() { return static_cast<int32_t>(offsetof(Exception_t, ___help_link_3)); }
inline String_t* get_help_link_3() const { return ___help_link_3; }
inline String_t** get_address_of_help_link_3() { return &___help_link_3; }
inline void set_help_link_3(String_t* value)
{
___help_link_3 = value;
Il2CppCodeGenWriteBarrier((&___help_link_3), value);
}
inline static int32_t get_offset_of_class_name_4() { return static_cast<int32_t>(offsetof(Exception_t, ___class_name_4)); }
inline String_t* get_class_name_4() const { return ___class_name_4; }
inline String_t** get_address_of_class_name_4() { return &___class_name_4; }
inline void set_class_name_4(String_t* value)
{
___class_name_4 = value;
Il2CppCodeGenWriteBarrier((&___class_name_4), value);
}
inline static int32_t get_offset_of_stack_trace_5() { return static_cast<int32_t>(offsetof(Exception_t, ___stack_trace_5)); }
inline String_t* get_stack_trace_5() const { return ___stack_trace_5; }
inline String_t** get_address_of_stack_trace_5() { return &___stack_trace_5; }
inline void set_stack_trace_5(String_t* value)
{
___stack_trace_5 = value;
Il2CppCodeGenWriteBarrier((&___stack_trace_5), value);
}
inline static int32_t get_offset_of__remoteStackTraceString_6() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_6)); }
inline String_t* get__remoteStackTraceString_6() const { return ____remoteStackTraceString_6; }
inline String_t** get_address_of__remoteStackTraceString_6() { return &____remoteStackTraceString_6; }
inline void set__remoteStackTraceString_6(String_t* value)
{
____remoteStackTraceString_6 = value;
Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_6), value);
}
inline static int32_t get_offset_of_remote_stack_index_7() { return static_cast<int32_t>(offsetof(Exception_t, ___remote_stack_index_7)); }
inline int32_t get_remote_stack_index_7() const { return ___remote_stack_index_7; }
inline int32_t* get_address_of_remote_stack_index_7() { return &___remote_stack_index_7; }
inline void set_remote_stack_index_7(int32_t value)
{
___remote_stack_index_7 = value;
}
inline static int32_t get_offset_of_hresult_8() { return static_cast<int32_t>(offsetof(Exception_t, ___hresult_8)); }
inline int32_t get_hresult_8() const { return ___hresult_8; }
inline int32_t* get_address_of_hresult_8() { return &___hresult_8; }
inline void set_hresult_8(int32_t value)
{
___hresult_8 = value;
}
inline static int32_t get_offset_of_source_9() { return static_cast<int32_t>(offsetof(Exception_t, ___source_9)); }
inline String_t* get_source_9() const { return ___source_9; }
inline String_t** get_address_of_source_9() { return &___source_9; }
inline void set_source_9(String_t* value)
{
___source_9 = value;
Il2CppCodeGenWriteBarrier((&___source_9), value);
}
inline static int32_t get_offset_of__data_10() { return static_cast<int32_t>(offsetof(Exception_t, ____data_10)); }
inline RuntimeObject* get__data_10() const { return ____data_10; }
inline RuntimeObject** get_address_of__data_10() { return &____data_10; }
inline void set__data_10(RuntimeObject* value)
{
____data_10 = value;
Il2CppCodeGenWriteBarrier((&____data_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EXCEPTION_T_H
#ifndef ASSEMBLYDESCRIPTIONATTRIBUTE_T1046996844_H
#define ASSEMBLYDESCRIPTIONATTRIBUTE_T1046996844_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyDescriptionAttribute
struct AssemblyDescriptionAttribute_t1046996844 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyDescriptionAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyDescriptionAttribute_t1046996844, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYDESCRIPTIONATTRIBUTE_T1046996844_H
#ifndef ASSEMBLYDELAYSIGNATTRIBUTE_T176441654_H
#define ASSEMBLYDELAYSIGNATTRIBUTE_T176441654_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyDelaySignAttribute
struct AssemblyDelaySignAttribute_t176441654 : public Attribute_t861562559
{
public:
// System.Boolean System.Reflection.AssemblyDelaySignAttribute::delay
bool ___delay_0;
public:
inline static int32_t get_offset_of_delay_0() { return static_cast<int32_t>(offsetof(AssemblyDelaySignAttribute_t176441654, ___delay_0)); }
inline bool get_delay_0() const { return ___delay_0; }
inline bool* get_address_of_delay_0() { return &___delay_0; }
inline void set_delay_0(bool value)
{
___delay_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYDELAYSIGNATTRIBUTE_T176441654_H
#ifndef ASSEMBLYDEFAULTALIASATTRIBUTE_T2176720766_H
#define ASSEMBLYDEFAULTALIASATTRIBUTE_T2176720766_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyDefaultAliasAttribute
struct AssemblyDefaultAliasAttribute_t2176720766 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyDefaultAliasAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyDefaultAliasAttribute_t2176720766, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYDEFAULTALIASATTRIBUTE_T2176720766_H
#ifndef ASSEMBLYCOPYRIGHTATTRIBUTE_T836190902_H
#define ASSEMBLYCOPYRIGHTATTRIBUTE_T836190902_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyCopyrightAttribute
struct AssemblyCopyrightAttribute_t836190902 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyCopyrightAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyCopyrightAttribute_t836190902, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYCOPYRIGHTATTRIBUTE_T836190902_H
#ifndef ASSEMBLYCONFIGURATIONATTRIBUTE_T2167450097_H
#define ASSEMBLYCONFIGURATIONATTRIBUTE_T2167450097_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyConfigurationAttribute
struct AssemblyConfigurationAttribute_t2167450097 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyConfigurationAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyConfigurationAttribute_t2167450097, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYCONFIGURATIONATTRIBUTE_T2167450097_H
#ifndef ASSEMBLYCOMPANYATTRIBUTE_T909257512_H
#define ASSEMBLYCOMPANYATTRIBUTE_T909257512_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyCompanyAttribute
struct AssemblyCompanyAttribute_t909257512 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyCompanyAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyCompanyAttribute_t909257512, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYCOMPANYATTRIBUTE_T909257512_H
#ifndef ASSEMBLYFILEVERSIONATTRIBUTE_T14927972_H
#define ASSEMBLYFILEVERSIONATTRIBUTE_T14927972_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyFileVersionAttribute
struct AssemblyFileVersionAttribute_t14927972 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyFileVersionAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyFileVersionAttribute_t14927972, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYFILEVERSIONATTRIBUTE_T14927972_H
#ifndef PARAMETERMODIFIER_T1461694466_H
#define PARAMETERMODIFIER_T1461694466_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466
{
public:
// System.Boolean[] System.Reflection.ParameterModifier::_byref
BooleanU5BU5D_t2897418192* ____byref_0;
public:
inline static int32_t get_offset_of__byref_0() { return static_cast<int32_t>(offsetof(ParameterModifier_t1461694466, ____byref_0)); }
inline BooleanU5BU5D_t2897418192* get__byref_0() const { return ____byref_0; }
inline BooleanU5BU5D_t2897418192** get_address_of__byref_0() { return &____byref_0; }
inline void set__byref_0(BooleanU5BU5D_t2897418192* value)
{
____byref_0 = value;
Il2CppCodeGenWriteBarrier((&____byref_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466_marshaled_pinvoke
{
int32_t* ____byref_0;
};
// Native definition for COM marshalling of System.Reflection.ParameterModifier
struct ParameterModifier_t1461694466_marshaled_com
{
int32_t* ____byref_0;
};
#endif // PARAMETERMODIFIER_T1461694466_H
#ifndef CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H
#define CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t2723150157
{
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_t2723150157, ___argumentType_0)); }
inline Type_t * get_argumentType_0() const { return ___argumentType_0; }
inline Type_t ** get_address_of_argumentType_0() { return &___argumentType_0; }
inline void set_argumentType_0(Type_t * value)
{
___argumentType_0 = value;
Il2CppCodeGenWriteBarrier((&___argumentType_0), value);
}
inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(CustomAttributeTypedArgument_t2723150157, ___value_1)); }
inline RuntimeObject * get_value_1() const { return ___value_1; }
inline RuntimeObject ** get_address_of_value_1() { return &___value_1; }
inline void set_value_1(RuntimeObject * value)
{
___value_1 = value;
Il2CppCodeGenWriteBarrier((&___value_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t2723150157_marshaled_pinvoke
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeTypedArgument
struct CustomAttributeTypedArgument_t2723150157_marshaled_com
{
Type_t * ___argumentType_0;
Il2CppIUnknown* ___value_1;
};
#endif // CUSTOMATTRIBUTETYPEDARGUMENT_T2723150157_H
#ifndef DEFAULT_T2456596213_H
#define DEFAULT_T2456596213_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Binder/Default
struct Default_t2456596213 : public Binder_t2999457153
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DEFAULT_T2456596213_H
#ifndef EVENTINFO_T_H
#define EVENTINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.EventInfo
struct EventInfo_t : public MemberInfo_t
{
public:
// System.Reflection.EventInfo/AddEventAdapter System.Reflection.EventInfo::cached_add_event
AddEventAdapter_t1787725097 * ___cached_add_event_0;
public:
inline static int32_t get_offset_of_cached_add_event_0() { return static_cast<int32_t>(offsetof(EventInfo_t, ___cached_add_event_0)); }
inline AddEventAdapter_t1787725097 * get_cached_add_event_0() const { return ___cached_add_event_0; }
inline AddEventAdapter_t1787725097 ** get_address_of_cached_add_event_0() { return &___cached_add_event_0; }
inline void set_cached_add_event_0(AddEventAdapter_t1787725097 * value)
{
___cached_add_event_0 = value;
Il2CppCodeGenWriteBarrier((&___cached_add_event_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTINFO_T_H
#ifndef ASSEMBLYTRADEMARKATTRIBUTE_T3598190473_H
#define ASSEMBLYTRADEMARKATTRIBUTE_T3598190473_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyTrademarkAttribute
struct AssemblyTrademarkAttribute_t3598190473 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyTrademarkAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyTrademarkAttribute_t3598190473, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYTRADEMARKATTRIBUTE_T3598190473_H
#ifndef FIELDINFO_T_H
#define FIELDINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.FieldInfo
struct FieldInfo_t : public MemberInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FIELDINFO_T_H
#ifndef ASSEMBLYINFORMATIONALVERSIONATTRIBUTE_T3037764991_H
#define ASSEMBLYINFORMATIONALVERSIONATTRIBUTE_T3037764991_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyInformationalVersionAttribute
struct AssemblyInformationalVersionAttribute_t3037764991 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyInformationalVersionAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyInformationalVersionAttribute_t3037764991, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYINFORMATIONALVERSIONATTRIBUTE_T3037764991_H
#ifndef ASSEMBLYKEYFILEATTRIBUTE_T2825689142_H
#define ASSEMBLYKEYFILEATTRIBUTE_T2825689142_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyKeyFileAttribute
struct AssemblyKeyFileAttribute_t2825689142 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyKeyFileAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyKeyFileAttribute_t2825689142, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYKEYFILEATTRIBUTE_T2825689142_H
#ifndef STREAMWRITER_T1266378904_H
#define STREAMWRITER_T1266378904_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StreamWriter
struct StreamWriter_t1266378904 : public TextWriter_t3478189236
{
public:
// System.Text.Encoding System.IO.StreamWriter::internalEncoding
Encoding_t1523322056 * ___internalEncoding_2;
// System.IO.Stream System.IO.StreamWriter::internalStream
Stream_t1273022909 * ___internalStream_3;
// System.Boolean System.IO.StreamWriter::iflush
bool ___iflush_4;
// System.Byte[] System.IO.StreamWriter::byte_buf
ByteU5BU5D_t4116647657* ___byte_buf_5;
// System.Int32 System.IO.StreamWriter::byte_pos
int32_t ___byte_pos_6;
// System.Char[] System.IO.StreamWriter::decode_buf
CharU5BU5D_t3528271667* ___decode_buf_7;
// System.Int32 System.IO.StreamWriter::decode_pos
int32_t ___decode_pos_8;
// System.Boolean System.IO.StreamWriter::DisposedAlready
bool ___DisposedAlready_9;
// System.Boolean System.IO.StreamWriter::preamble_done
bool ___preamble_done_10;
public:
inline static int32_t get_offset_of_internalEncoding_2() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___internalEncoding_2)); }
inline Encoding_t1523322056 * get_internalEncoding_2() const { return ___internalEncoding_2; }
inline Encoding_t1523322056 ** get_address_of_internalEncoding_2() { return &___internalEncoding_2; }
inline void set_internalEncoding_2(Encoding_t1523322056 * value)
{
___internalEncoding_2 = value;
Il2CppCodeGenWriteBarrier((&___internalEncoding_2), value);
}
inline static int32_t get_offset_of_internalStream_3() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___internalStream_3)); }
inline Stream_t1273022909 * get_internalStream_3() const { return ___internalStream_3; }
inline Stream_t1273022909 ** get_address_of_internalStream_3() { return &___internalStream_3; }
inline void set_internalStream_3(Stream_t1273022909 * value)
{
___internalStream_3 = value;
Il2CppCodeGenWriteBarrier((&___internalStream_3), value);
}
inline static int32_t get_offset_of_iflush_4() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___iflush_4)); }
inline bool get_iflush_4() const { return ___iflush_4; }
inline bool* get_address_of_iflush_4() { return &___iflush_4; }
inline void set_iflush_4(bool value)
{
___iflush_4 = value;
}
inline static int32_t get_offset_of_byte_buf_5() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___byte_buf_5)); }
inline ByteU5BU5D_t4116647657* get_byte_buf_5() const { return ___byte_buf_5; }
inline ByteU5BU5D_t4116647657** get_address_of_byte_buf_5() { return &___byte_buf_5; }
inline void set_byte_buf_5(ByteU5BU5D_t4116647657* value)
{
___byte_buf_5 = value;
Il2CppCodeGenWriteBarrier((&___byte_buf_5), value);
}
inline static int32_t get_offset_of_byte_pos_6() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___byte_pos_6)); }
inline int32_t get_byte_pos_6() const { return ___byte_pos_6; }
inline int32_t* get_address_of_byte_pos_6() { return &___byte_pos_6; }
inline void set_byte_pos_6(int32_t value)
{
___byte_pos_6 = value;
}
inline static int32_t get_offset_of_decode_buf_7() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___decode_buf_7)); }
inline CharU5BU5D_t3528271667* get_decode_buf_7() const { return ___decode_buf_7; }
inline CharU5BU5D_t3528271667** get_address_of_decode_buf_7() { return &___decode_buf_7; }
inline void set_decode_buf_7(CharU5BU5D_t3528271667* value)
{
___decode_buf_7 = value;
Il2CppCodeGenWriteBarrier((&___decode_buf_7), value);
}
inline static int32_t get_offset_of_decode_pos_8() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___decode_pos_8)); }
inline int32_t get_decode_pos_8() const { return ___decode_pos_8; }
inline int32_t* get_address_of_decode_pos_8() { return &___decode_pos_8; }
inline void set_decode_pos_8(int32_t value)
{
___decode_pos_8 = value;
}
inline static int32_t get_offset_of_DisposedAlready_9() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___DisposedAlready_9)); }
inline bool get_DisposedAlready_9() const { return ___DisposedAlready_9; }
inline bool* get_address_of_DisposedAlready_9() { return &___DisposedAlready_9; }
inline void set_DisposedAlready_9(bool value)
{
___DisposedAlready_9 = value;
}
inline static int32_t get_offset_of_preamble_done_10() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904, ___preamble_done_10)); }
inline bool get_preamble_done_10() const { return ___preamble_done_10; }
inline bool* get_address_of_preamble_done_10() { return &___preamble_done_10; }
inline void set_preamble_done_10(bool value)
{
___preamble_done_10 = value;
}
};
struct StreamWriter_t1266378904_StaticFields
{
public:
// System.IO.StreamWriter System.IO.StreamWriter::Null
StreamWriter_t1266378904 * ___Null_11;
public:
inline static int32_t get_offset_of_Null_11() { return static_cast<int32_t>(offsetof(StreamWriter_t1266378904_StaticFields, ___Null_11)); }
inline StreamWriter_t1266378904 * get_Null_11() const { return ___Null_11; }
inline StreamWriter_t1266378904 ** get_address_of_Null_11() { return &___Null_11; }
inline void set_Null_11(StreamWriter_t1266378904 * value)
{
___Null_11 = value;
Il2CppCodeGenWriteBarrier((&___Null_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMWRITER_T1266378904_H
#ifndef STREAMREADER_T4009935899_H
#define STREAMREADER_T4009935899_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.StreamReader
struct StreamReader_t4009935899 : public TextReader_t283511965
{
public:
// System.Byte[] System.IO.StreamReader::input_buffer
ByteU5BU5D_t4116647657* ___input_buffer_1;
// System.Char[] System.IO.StreamReader::decoded_buffer
CharU5BU5D_t3528271667* ___decoded_buffer_2;
// System.Int32 System.IO.StreamReader::decoded_count
int32_t ___decoded_count_3;
// System.Int32 System.IO.StreamReader::pos
int32_t ___pos_4;
// System.Int32 System.IO.StreamReader::buffer_size
int32_t ___buffer_size_5;
// System.Int32 System.IO.StreamReader::do_checks
int32_t ___do_checks_6;
// System.Text.Encoding System.IO.StreamReader::encoding
Encoding_t1523322056 * ___encoding_7;
// System.Text.Decoder System.IO.StreamReader::decoder
Decoder_t2204182725 * ___decoder_8;
// System.IO.Stream System.IO.StreamReader::base_stream
Stream_t1273022909 * ___base_stream_9;
// System.Boolean System.IO.StreamReader::mayBlock
bool ___mayBlock_10;
// System.Text.StringBuilder System.IO.StreamReader::line_builder
StringBuilder_t * ___line_builder_11;
// System.Boolean System.IO.StreamReader::foundCR
bool ___foundCR_13;
public:
inline static int32_t get_offset_of_input_buffer_1() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___input_buffer_1)); }
inline ByteU5BU5D_t4116647657* get_input_buffer_1() const { return ___input_buffer_1; }
inline ByteU5BU5D_t4116647657** get_address_of_input_buffer_1() { return &___input_buffer_1; }
inline void set_input_buffer_1(ByteU5BU5D_t4116647657* value)
{
___input_buffer_1 = value;
Il2CppCodeGenWriteBarrier((&___input_buffer_1), value);
}
inline static int32_t get_offset_of_decoded_buffer_2() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___decoded_buffer_2)); }
inline CharU5BU5D_t3528271667* get_decoded_buffer_2() const { return ___decoded_buffer_2; }
inline CharU5BU5D_t3528271667** get_address_of_decoded_buffer_2() { return &___decoded_buffer_2; }
inline void set_decoded_buffer_2(CharU5BU5D_t3528271667* value)
{
___decoded_buffer_2 = value;
Il2CppCodeGenWriteBarrier((&___decoded_buffer_2), value);
}
inline static int32_t get_offset_of_decoded_count_3() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___decoded_count_3)); }
inline int32_t get_decoded_count_3() const { return ___decoded_count_3; }
inline int32_t* get_address_of_decoded_count_3() { return &___decoded_count_3; }
inline void set_decoded_count_3(int32_t value)
{
___decoded_count_3 = value;
}
inline static int32_t get_offset_of_pos_4() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___pos_4)); }
inline int32_t get_pos_4() const { return ___pos_4; }
inline int32_t* get_address_of_pos_4() { return &___pos_4; }
inline void set_pos_4(int32_t value)
{
___pos_4 = value;
}
inline static int32_t get_offset_of_buffer_size_5() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___buffer_size_5)); }
inline int32_t get_buffer_size_5() const { return ___buffer_size_5; }
inline int32_t* get_address_of_buffer_size_5() { return &___buffer_size_5; }
inline void set_buffer_size_5(int32_t value)
{
___buffer_size_5 = value;
}
inline static int32_t get_offset_of_do_checks_6() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___do_checks_6)); }
inline int32_t get_do_checks_6() const { return ___do_checks_6; }
inline int32_t* get_address_of_do_checks_6() { return &___do_checks_6; }
inline void set_do_checks_6(int32_t value)
{
___do_checks_6 = value;
}
inline static int32_t get_offset_of_encoding_7() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___encoding_7)); }
inline Encoding_t1523322056 * get_encoding_7() const { return ___encoding_7; }
inline Encoding_t1523322056 ** get_address_of_encoding_7() { return &___encoding_7; }
inline void set_encoding_7(Encoding_t1523322056 * value)
{
___encoding_7 = value;
Il2CppCodeGenWriteBarrier((&___encoding_7), value);
}
inline static int32_t get_offset_of_decoder_8() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___decoder_8)); }
inline Decoder_t2204182725 * get_decoder_8() const { return ___decoder_8; }
inline Decoder_t2204182725 ** get_address_of_decoder_8() { return &___decoder_8; }
inline void set_decoder_8(Decoder_t2204182725 * value)
{
___decoder_8 = value;
Il2CppCodeGenWriteBarrier((&___decoder_8), value);
}
inline static int32_t get_offset_of_base_stream_9() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___base_stream_9)); }
inline Stream_t1273022909 * get_base_stream_9() const { return ___base_stream_9; }
inline Stream_t1273022909 ** get_address_of_base_stream_9() { return &___base_stream_9; }
inline void set_base_stream_9(Stream_t1273022909 * value)
{
___base_stream_9 = value;
Il2CppCodeGenWriteBarrier((&___base_stream_9), value);
}
inline static int32_t get_offset_of_mayBlock_10() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___mayBlock_10)); }
inline bool get_mayBlock_10() const { return ___mayBlock_10; }
inline bool* get_address_of_mayBlock_10() { return &___mayBlock_10; }
inline void set_mayBlock_10(bool value)
{
___mayBlock_10 = value;
}
inline static int32_t get_offset_of_line_builder_11() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___line_builder_11)); }
inline StringBuilder_t * get_line_builder_11() const { return ___line_builder_11; }
inline StringBuilder_t ** get_address_of_line_builder_11() { return &___line_builder_11; }
inline void set_line_builder_11(StringBuilder_t * value)
{
___line_builder_11 = value;
Il2CppCodeGenWriteBarrier((&___line_builder_11), value);
}
inline static int32_t get_offset_of_foundCR_13() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899, ___foundCR_13)); }
inline bool get_foundCR_13() const { return ___foundCR_13; }
inline bool* get_address_of_foundCR_13() { return &___foundCR_13; }
inline void set_foundCR_13(bool value)
{
___foundCR_13 = value;
}
};
struct StreamReader_t4009935899_StaticFields
{
public:
// System.IO.StreamReader System.IO.StreamReader::Null
StreamReader_t4009935899 * ___Null_12;
public:
inline static int32_t get_offset_of_Null_12() { return static_cast<int32_t>(offsetof(StreamReader_t4009935899_StaticFields, ___Null_12)); }
inline StreamReader_t4009935899 * get_Null_12() const { return ___Null_12; }
inline StreamReader_t4009935899 ** get_address_of_Null_12() { return &___Null_12; }
inline void set_Null_12(StreamReader_t4009935899 * value)
{
___Null_12 = value;
Il2CppCodeGenWriteBarrier((&___Null_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STREAMREADER_T4009935899_H
#ifndef ASSEMBLYPRODUCTATTRIBUTE_T1000945320_H
#define ASSEMBLYPRODUCTATTRIBUTE_T1000945320_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyProductAttribute
struct AssemblyProductAttribute_t1000945320 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyProductAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyProductAttribute_t1000945320, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYPRODUCTATTRIBUTE_T1000945320_H
#ifndef ASSEMBLYTITLEATTRIBUTE_T1901133402_H
#define ASSEMBLYTITLEATTRIBUTE_T1901133402_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyTitleAttribute
struct AssemblyTitleAttribute_t1901133402 : public Attribute_t861562559
{
public:
// System.String System.Reflection.AssemblyTitleAttribute::name
String_t* ___name_0;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyTitleAttribute_t1901133402, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYTITLEATTRIBUTE_T1901133402_H
#ifndef INTPTR_T_H
#define INTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IntPtr
struct IntPtr_t
{
public:
// System.Void* System.IntPtr::m_value
void* ___m_value_0;
public:
inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); }
inline void* get_m_value_0() const { return ___m_value_0; }
inline void** get_address_of_m_value_0() { return &___m_value_0; }
inline void set_m_value_0(void* value)
{
___m_value_0 = value;
}
};
struct IntPtr_t_StaticFields
{
public:
// System.IntPtr System.IntPtr::Zero
intptr_t ___Zero_1;
public:
inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); }
inline intptr_t get_Zero_1() const { return ___Zero_1; }
inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; }
inline void set_Zero_1(intptr_t value)
{
___Zero_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // INTPTR_T_H
#ifndef PROPERTYINFO_T_H
#define PROPERTYINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.PropertyInfo
struct PropertyInfo_t : public MemberInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROPERTYINFO_T_H
#ifndef LOCALBUILDER_T3562264111_H
#define LOCALBUILDER_T3562264111_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.LocalBuilder
struct LocalBuilder_t3562264111 : public LocalVariableInfo_t2426779395
{
public:
// System.Reflection.Emit.ILGenerator System.Reflection.Emit.LocalBuilder::ilgen
ILGenerator_t1388622344 * ___ilgen_3;
public:
inline static int32_t get_offset_of_ilgen_3() { return static_cast<int32_t>(offsetof(LocalBuilder_t3562264111, ___ilgen_3)); }
inline ILGenerator_t1388622344 * get_ilgen_3() const { return ___ilgen_3; }
inline ILGenerator_t1388622344 ** get_address_of_ilgen_3() { return &___ilgen_3; }
inline void set_ilgen_3(ILGenerator_t1388622344 * value)
{
___ilgen_3 = value;
Il2CppCodeGenWriteBarrier((&___ilgen_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LOCALBUILDER_T3562264111_H
#ifndef LABEL_T2281661643_H
#define LABEL_T2281661643_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.Label
struct Label_t2281661643
{
public:
// System.Int32 System.Reflection.Emit.Label::label
int32_t ___label_0;
public:
inline static int32_t get_offset_of_label_0() { return static_cast<int32_t>(offsetof(Label_t2281661643, ___label_0)); }
inline int32_t get_label_0() const { return ___label_0; }
inline int32_t* get_address_of_label_0() { return &___label_0; }
inline void set_label_0(int32_t value)
{
___label_0 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LABEL_T2281661643_H
#ifndef LABELDATA_T360167391_H
#define LABELDATA_T360167391_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILGenerator/LabelData
struct LabelData_t360167391
{
public:
// System.Int32 System.Reflection.Emit.ILGenerator/LabelData::addr
int32_t ___addr_0;
// System.Int32 System.Reflection.Emit.ILGenerator/LabelData::maxStack
int32_t ___maxStack_1;
public:
inline static int32_t get_offset_of_addr_0() { return static_cast<int32_t>(offsetof(LabelData_t360167391, ___addr_0)); }
inline int32_t get_addr_0() const { return ___addr_0; }
inline int32_t* get_address_of_addr_0() { return &___addr_0; }
inline void set_addr_0(int32_t value)
{
___addr_0 = value;
}
inline static int32_t get_offset_of_maxStack_1() { return static_cast<int32_t>(offsetof(LabelData_t360167391, ___maxStack_1)); }
inline int32_t get_maxStack_1() const { return ___maxStack_1; }
inline int32_t* get_address_of_maxStack_1() { return &___maxStack_1; }
inline void set_maxStack_1(int32_t value)
{
___maxStack_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LABELDATA_T360167391_H
#ifndef LABELFIXUP_T858502054_H
#define LABELFIXUP_T858502054_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILGenerator/LabelFixup
struct LabelFixup_t858502054
{
public:
// System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::offset
int32_t ___offset_0;
// System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::pos
int32_t ___pos_1;
// System.Int32 System.Reflection.Emit.ILGenerator/LabelFixup::label_idx
int32_t ___label_idx_2;
public:
inline static int32_t get_offset_of_offset_0() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___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_pos_1() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___pos_1)); }
inline int32_t get_pos_1() const { return ___pos_1; }
inline int32_t* get_address_of_pos_1() { return &___pos_1; }
inline void set_pos_1(int32_t value)
{
___pos_1 = value;
}
inline static int32_t get_offset_of_label_idx_2() { return static_cast<int32_t>(offsetof(LabelFixup_t858502054, ___label_idx_2)); }
inline int32_t get_label_idx_2() const { return ___label_idx_2; }
inline int32_t* get_address_of_label_idx_2() { return &___label_idx_2; }
inline void set_label_idx_2(int32_t value)
{
___label_idx_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // LABELFIXUP_T858502054_H
#ifndef ILTOKENINFO_T2325775114_H
#define ILTOKENINFO_T2325775114_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ILTokenInfo
struct ILTokenInfo_t2325775114
{
public:
// System.Reflection.MemberInfo System.Reflection.Emit.ILTokenInfo::member
MemberInfo_t * ___member_0;
// System.Int32 System.Reflection.Emit.ILTokenInfo::code_pos
int32_t ___code_pos_1;
public:
inline static int32_t get_offset_of_member_0() { return static_cast<int32_t>(offsetof(ILTokenInfo_t2325775114, ___member_0)); }
inline MemberInfo_t * get_member_0() const { return ___member_0; }
inline MemberInfo_t ** get_address_of_member_0() { return &___member_0; }
inline void set_member_0(MemberInfo_t * value)
{
___member_0 = value;
Il2CppCodeGenWriteBarrier((&___member_0), value);
}
inline static int32_t get_offset_of_code_pos_1() { return static_cast<int32_t>(offsetof(ILTokenInfo_t2325775114, ___code_pos_1)); }
inline int32_t get_code_pos_1() const { return ___code_pos_1; }
inline int32_t* get_address_of_code_pos_1() { return &___code_pos_1; }
inline void set_code_pos_1(int32_t value)
{
___code_pos_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.ILTokenInfo
struct ILTokenInfo_t2325775114_marshaled_pinvoke
{
MemberInfo_t * ___member_0;
int32_t ___code_pos_1;
};
// Native definition for COM marshalling of System.Reflection.Emit.ILTokenInfo
struct ILTokenInfo_t2325775114_marshaled_com
{
MemberInfo_t * ___member_0;
int32_t ___code_pos_1;
};
#endif // ILTOKENINFO_T2325775114_H
#ifndef SYSTEMEXCEPTION_T176217640_H
#define SYSTEMEXCEPTION_T176217640_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.SystemException
struct SystemException_t176217640 : public Exception_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SYSTEMEXCEPTION_T176217640_H
#ifndef VOID_T1185182177_H
#define VOID_T1185182177_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Void
struct Void_t1185182177
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // VOID_T1185182177_H
#ifndef MONOWIN32RESOURCE_T1904229483_H
#define MONOWIN32RESOURCE_T1904229483_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.MonoWin32Resource
struct MonoWin32Resource_t1904229483
{
public:
// System.Int32 System.Reflection.Emit.MonoWin32Resource::res_type
int32_t ___res_type_0;
// System.Int32 System.Reflection.Emit.MonoWin32Resource::res_id
int32_t ___res_id_1;
// System.Int32 System.Reflection.Emit.MonoWin32Resource::lang_id
int32_t ___lang_id_2;
// System.Byte[] System.Reflection.Emit.MonoWin32Resource::data
ByteU5BU5D_t4116647657* ___data_3;
public:
inline static int32_t get_offset_of_res_type_0() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___res_type_0)); }
inline int32_t get_res_type_0() const { return ___res_type_0; }
inline int32_t* get_address_of_res_type_0() { return &___res_type_0; }
inline void set_res_type_0(int32_t value)
{
___res_type_0 = value;
}
inline static int32_t get_offset_of_res_id_1() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___res_id_1)); }
inline int32_t get_res_id_1() const { return ___res_id_1; }
inline int32_t* get_address_of_res_id_1() { return &___res_id_1; }
inline void set_res_id_1(int32_t value)
{
___res_id_1 = value;
}
inline static int32_t get_offset_of_lang_id_2() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___lang_id_2)); }
inline int32_t get_lang_id_2() const { return ___lang_id_2; }
inline int32_t* get_address_of_lang_id_2() { return &___lang_id_2; }
inline void set_lang_id_2(int32_t value)
{
___lang_id_2 = value;
}
inline static int32_t get_offset_of_data_3() { return static_cast<int32_t>(offsetof(MonoWin32Resource_t1904229483, ___data_3)); }
inline ByteU5BU5D_t4116647657* get_data_3() const { return ___data_3; }
inline ByteU5BU5D_t4116647657** get_address_of_data_3() { return &___data_3; }
inline void set_data_3(ByteU5BU5D_t4116647657* value)
{
___data_3 = value;
Il2CppCodeGenWriteBarrier((&___data_3), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.MonoWin32Resource
struct MonoWin32Resource_t1904229483_marshaled_pinvoke
{
int32_t ___res_type_0;
int32_t ___res_id_1;
int32_t ___lang_id_2;
uint8_t* ___data_3;
};
// Native definition for COM marshalling of System.Reflection.Emit.MonoWin32Resource
struct MonoWin32Resource_t1904229483_marshaled_com
{
int32_t ___res_type_0;
int32_t ___res_id_1;
int32_t ___lang_id_2;
uint8_t* ___data_3;
};
#endif // MONOWIN32RESOURCE_T1904229483_H
#ifndef METHODTOKEN_T4055728386_H
#define METHODTOKEN_T4055728386_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.MethodToken
struct MethodToken_t4055728386
{
public:
// System.Int32 System.Reflection.Emit.MethodToken::tokValue
int32_t ___tokValue_0;
public:
inline static int32_t get_offset_of_tokValue_0() { return static_cast<int32_t>(offsetof(MethodToken_t4055728386, ___tokValue_0)); }
inline int32_t get_tokValue_0() const { return ___tokValue_0; }
inline int32_t* get_address_of_tokValue_0() { return &___tokValue_0; }
inline void set_tokValue_0(int32_t value)
{
___tokValue_0 = value;
}
};
struct MethodToken_t4055728386_StaticFields
{
public:
// System.Reflection.Emit.MethodToken System.Reflection.Emit.MethodToken::Empty
MethodToken_t4055728386 ___Empty_1;
public:
inline static int32_t get_offset_of_Empty_1() { return static_cast<int32_t>(offsetof(MethodToken_t4055728386_StaticFields, ___Empty_1)); }
inline MethodToken_t4055728386 get_Empty_1() const { return ___Empty_1; }
inline MethodToken_t4055728386 * get_address_of_Empty_1() { return &___Empty_1; }
inline void set_Empty_1(MethodToken_t4055728386 value)
{
___Empty_1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODTOKEN_T4055728386_H
#ifndef METHODBASE_T_H
#define METHODBASE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodBase
struct MethodBase_t : public MemberInfo_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODBASE_T_H
#ifndef OPCODE_T123070264_H
#define OPCODE_T123070264_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.OpCode
struct OpCode_t123070264
{
public:
// System.Byte System.Reflection.Emit.OpCode::op1
uint8_t ___op1_0;
// System.Byte System.Reflection.Emit.OpCode::op2
uint8_t ___op2_1;
// System.Byte System.Reflection.Emit.OpCode::push
uint8_t ___push_2;
// System.Byte System.Reflection.Emit.OpCode::pop
uint8_t ___pop_3;
// System.Byte System.Reflection.Emit.OpCode::size
uint8_t ___size_4;
// System.Byte System.Reflection.Emit.OpCode::type
uint8_t ___type_5;
// System.Byte System.Reflection.Emit.OpCode::args
uint8_t ___args_6;
// System.Byte System.Reflection.Emit.OpCode::flow
uint8_t ___flow_7;
public:
inline static int32_t get_offset_of_op1_0() { return static_cast<int32_t>(offsetof(OpCode_t123070264, ___op1_0)); }
inline uint8_t get_op1_0() const { return ___op1_0; }
inline uint8_t* get_address_of_op1_0() { return &___op1_0; }
inline void set_op1_0(uint8_t value)
{
___op1_0 = value;
}
inline static int32_t get_offset_of_op2_1() { return static_cast<int32_t>(offsetof(OpCode_t123070264, ___op2_1)); }
inline uint8_t get_op2_1() const { return ___op2_1; }
inline uint8_t* get_address_of_op2_1() { return &___op2_1; }
inline void set_op2_1(uint8_t value)
{
___op2_1 = value;
}
inline static int32_t get_offset_of_push_2() { return static_cast<int32_t>(offsetof(OpCode_t123070264, ___push_2)); }
inline uint8_t get_push_2() const { return ___push_2; }
inline uint8_t* get_address_of_push_2() { return &___push_2; }
inline void set_push_2(uint8_t value)
{
___push_2 = value;
}
inline static int32_t get_offset_of_pop_3() { return static_cast<int32_t>(offsetof(OpCode_t123070264, ___pop_3)); }
inline uint8_t get_pop_3() const { return ___pop_3; }
inline uint8_t* get_address_of_pop_3() { return &___pop_3; }
inline void set_pop_3(uint8_t value)
{
___pop_3 = value;
}
inline static int32_t get_offset_of_size_4() { return static_cast<int32_t>(offsetof(OpCode_t123070264, ___size_4)); }
inline uint8_t get_size_4() const { return ___size_4; }
inline uint8_t* get_address_of_size_4() { return &___size_4; }
inline void set_size_4(uint8_t value)
{
___size_4 = value;
}
inline static int32_t get_offset_of_type_5() { return static_cast<int32_t>(offsetof(OpCode_t123070264, ___type_5)); }
inline uint8_t get_type_5() const { return ___type_5; }
inline uint8_t* get_address_of_type_5() { return &___type_5; }
inline void set_type_5(uint8_t value)
{
___type_5 = value;
}
inline static int32_t get_offset_of_args_6() { return static_cast<int32_t>(offsetof(OpCode_t123070264, ___args_6)); }
inline uint8_t get_args_6() const { return ___args_6; }
inline uint8_t* get_address_of_args_6() { return &___args_6; }
inline void set_args_6(uint8_t value)
{
___args_6 = value;
}
inline static int32_t get_offset_of_flow_7() { return static_cast<int32_t>(offsetof(OpCode_t123070264, ___flow_7)); }
inline uint8_t get_flow_7() const { return ___flow_7; }
inline uint8_t* get_address_of_flow_7() { return &___flow_7; }
inline void set_flow_7(uint8_t value)
{
___flow_7 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPCODE_T123070264_H
#ifndef ENUM_T4135868527_H
#define ENUM_T4135868527_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Enum
struct Enum_t4135868527 : public ValueType_t3640485471
{
public:
public:
};
struct Enum_t4135868527_StaticFields
{
public:
// System.Char[] System.Enum::split_char
CharU5BU5D_t3528271667* ___split_char_0;
public:
inline static int32_t get_offset_of_split_char_0() { return static_cast<int32_t>(offsetof(Enum_t4135868527_StaticFields, ___split_char_0)); }
inline CharU5BU5D_t3528271667* get_split_char_0() const { return ___split_char_0; }
inline CharU5BU5D_t3528271667** get_address_of_split_char_0() { return &___split_char_0; }
inline void set_split_char_0(CharU5BU5D_t3528271667* value)
{
___split_char_0 = value;
Il2CppCodeGenWriteBarrier((&___split_char_0), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Enum
struct Enum_t4135868527_marshaled_pinvoke
{
};
// Native definition for COM marshalling of System.Enum
struct Enum_t4135868527_marshaled_com
{
};
#endif // ENUM_T4135868527_H
#ifndef UINTPTR_T_H
#define UINTPTR_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// 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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UINTPTR_T_H
#ifndef PINFO_T446749821_H
#define PINFO_T446749821_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.PInfo
struct PInfo_t446749821
{
public:
// System.Int32 System.Reflection.PInfo::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(PInfo_t446749821, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PINFO_T446749821_H
#ifndef PARAMETERATTRIBUTES_T1826424051_H
#define PARAMETERATTRIBUTES_T1826424051_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ParameterAttributes
struct ParameterAttributes_t1826424051
{
public:
// System.Int32 System.Reflection.ParameterAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ParameterAttributes_t1826424051, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PARAMETERATTRIBUTES_T1826424051_H
#ifndef ASSEMBLYVERSIONCOMPATIBILITY_T766556580_H
#define ASSEMBLYVERSIONCOMPATIBILITY_T766556580_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Configuration.Assemblies.AssemblyVersionCompatibility
struct AssemblyVersionCompatibility_t766556580
{
public:
// System.Int32 System.Configuration.Assemblies.AssemblyVersionCompatibility::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AssemblyVersionCompatibility_t766556580, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYVERSIONCOMPATIBILITY_T766556580_H
#ifndef MONOEVENT_T_H
#define MONOEVENT_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoEvent
struct MonoEvent_t : public EventInfo_t
{
public:
// System.IntPtr System.Reflection.MonoEvent::klass
intptr_t ___klass_1;
// System.IntPtr System.Reflection.MonoEvent::handle
intptr_t ___handle_2;
public:
inline static int32_t get_offset_of_klass_1() { return static_cast<int32_t>(offsetof(MonoEvent_t, ___klass_1)); }
inline intptr_t get_klass_1() const { return ___klass_1; }
inline intptr_t* get_address_of_klass_1() { return &___klass_1; }
inline void set_klass_1(intptr_t value)
{
___klass_1 = value;
}
inline static int32_t get_offset_of_handle_2() { return static_cast<int32_t>(offsetof(MonoEvent_t, ___handle_2)); }
inline intptr_t get_handle_2() const { return ___handle_2; }
inline intptr_t* get_address_of_handle_2() { return &___handle_2; }
inline void set_handle_2(intptr_t value)
{
___handle_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOEVENT_T_H
#ifndef FILEACCESS_T1659085276_H
#define FILEACCESS_T1659085276_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.FileAccess
struct FileAccess_t1659085276
{
public:
// System.Int32 System.IO.FileAccess::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(FileAccess_t1659085276, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FILEACCESS_T1659085276_H
#ifndef RUNTIMEFIELDHANDLE_T1871169219_H
#define RUNTIMEFIELDHANDLE_T1871169219_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeFieldHandle
struct RuntimeFieldHandle_t1871169219
{
public:
// System.IntPtr System.RuntimeFieldHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeFieldHandle_t1871169219, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEFIELDHANDLE_T1871169219_H
#ifndef RUNTIMETYPEHANDLE_T3027515415_H
#define RUNTIMETYPEHANDLE_T3027515415_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeTypeHandle
struct RuntimeTypeHandle_t3027515415
{
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_t3027515415, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMETYPEHANDLE_T3027515415_H
#ifndef METHODINFO_T_H
#define METHODINFO_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodInfo
struct MethodInfo_t : public MethodBase_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODINFO_T_H
#ifndef METHODIMPLATTRIBUTES_T3646023817_H
#define METHODIMPLATTRIBUTES_T3646023817_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodImplAttributes
struct MethodImplAttributes_t3646023817
{
public:
// System.Int32 System.Reflection.MethodImplAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(MethodImplAttributes_t3646023817, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODIMPLATTRIBUTES_T3646023817_H
#ifndef ASSEMBLYHASHALGORITHM_T1216504064_H
#define ASSEMBLYHASHALGORITHM_T1216504064_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Configuration.Assemblies.AssemblyHashAlgorithm
struct AssemblyHashAlgorithm_t1216504064
{
public:
// System.Int32 System.Configuration.Assemblies.AssemblyHashAlgorithm::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AssemblyHashAlgorithm_t1216504064, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYHASHALGORITHM_T1216504064_H
#ifndef CALLINGCONVENTION_T1027624783_H
#define CALLINGCONVENTION_T1027624783_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.CallingConvention
struct CallingConvention_t1027624783
{
public:
// System.Int32 System.Runtime.InteropServices.CallingConvention::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CallingConvention_t1027624783, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CALLINGCONVENTION_T1027624783_H
#ifndef CHARSET_T3391187264_H
#define CHARSET_T3391187264_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.CharSet
struct CharSet_t3391187264
{
public:
// System.Int32 System.Runtime.InteropServices.CharSet::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CharSet_t3391187264, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CHARSET_T3391187264_H
#ifndef RUNTIMEMETHODHANDLE_T1133924984_H
#define RUNTIMEMETHODHANDLE_T1133924984_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.RuntimeMethodHandle
struct RuntimeMethodHandle_t1133924984
{
public:
// System.IntPtr System.RuntimeMethodHandle::value
intptr_t ___value_0;
public:
inline static int32_t get_offset_of_value_0() { return static_cast<int32_t>(offsetof(RuntimeMethodHandle_t1133924984, ___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;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RUNTIMEMETHODHANDLE_T1133924984_H
#ifndef RESOURCEATTRIBUTES_T3997964906_H
#define RESOURCEATTRIBUTES_T3997964906_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ResourceAttributes
struct ResourceAttributes_t3997964906
{
public:
// System.Int32 System.Reflection.ResourceAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ResourceAttributes_t3997964906, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // RESOURCEATTRIBUTES_T3997964906_H
#ifndef SECURITYACTION_T569814076_H
#define SECURITYACTION_T569814076_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Security.Permissions.SecurityAction
struct SecurityAction_t569814076
{
public:
// System.Int32 System.Security.Permissions.SecurityAction::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(SecurityAction_t569814076, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // SECURITYACTION_T569814076_H
#ifndef PROPERTYATTRIBUTES_T3388002996_H
#define PROPERTYATTRIBUTES_T3388002996_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.PropertyAttributes
struct PropertyAttributes_t3388002996
{
public:
// System.Int32 System.Reflection.PropertyAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(PropertyAttributes_t3388002996, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROPERTYATTRIBUTES_T3388002996_H
#ifndef TYPEATTRIBUTES_T113483779_H
#define TYPEATTRIBUTES_T113483779_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.TypeAttributes
struct TypeAttributes_t113483779
{
public:
// System.Int32 System.Reflection.TypeAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(TypeAttributes_t113483779, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPEATTRIBUTES_T113483779_H
#ifndef PROCESSORARCHITECTURE_T305929193_H
#define PROCESSORARCHITECTURE_T305929193_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ProcessorArchitecture
struct ProcessorArchitecture_t305929193
{
public:
// System.Int32 System.Reflection.ProcessorArchitecture::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ProcessorArchitecture_t305929193, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROCESSORARCHITECTURE_T305929193_H
#ifndef PORTABLEEXECUTABLEKINDS_T1191923110_H
#define PORTABLEEXECUTABLEKINDS_T1191923110_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.PortableExecutableKinds
struct PortableExecutableKinds_t1191923110
{
public:
// System.Int32 System.Reflection.PortableExecutableKinds::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(PortableExecutableKinds_t1191923110, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PORTABLEEXECUTABLEKINDS_T1191923110_H
#ifndef UNMANAGEDTYPE_T523127242_H
#define UNMANAGEDTYPE_T523127242_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Runtime.InteropServices.UnmanagedType
struct UnmanagedType_t523127242
{
public:
// System.Int32 System.Runtime.InteropServices.UnmanagedType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(UnmanagedType_t523127242, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNMANAGEDTYPE_T523127242_H
#ifndef UNEXCEPTIONALSTREAMREADER_T2154476246_H
#define UNEXCEPTIONALSTREAMREADER_T2154476246_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.UnexceptionalStreamReader
struct UnexceptionalStreamReader_t2154476246 : public StreamReader_t4009935899
{
public:
public:
};
struct UnexceptionalStreamReader_t2154476246_StaticFields
{
public:
// System.Boolean[] System.IO.UnexceptionalStreamReader::newline
BooleanU5BU5D_t2897418192* ___newline_14;
// System.Char System.IO.UnexceptionalStreamReader::newlineChar
Il2CppChar ___newlineChar_15;
public:
inline static int32_t get_offset_of_newline_14() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t2154476246_StaticFields, ___newline_14)); }
inline BooleanU5BU5D_t2897418192* get_newline_14() const { return ___newline_14; }
inline BooleanU5BU5D_t2897418192** get_address_of_newline_14() { return &___newline_14; }
inline void set_newline_14(BooleanU5BU5D_t2897418192* value)
{
___newline_14 = value;
Il2CppCodeGenWriteBarrier((&___newline_14), value);
}
inline static int32_t get_offset_of_newlineChar_15() { return static_cast<int32_t>(offsetof(UnexceptionalStreamReader_t2154476246_StaticFields, ___newlineChar_15)); }
inline Il2CppChar get_newlineChar_15() const { return ___newlineChar_15; }
inline Il2CppChar* get_address_of_newlineChar_15() { return &___newlineChar_15; }
inline void set_newlineChar_15(Il2CppChar value)
{
___newlineChar_15 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNEXCEPTIONALSTREAMREADER_T2154476246_H
#ifndef ASSEMBLY_T_H
#define ASSEMBLY_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Assembly
struct Assembly_t : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Assembly::_mono_assembly
intptr_t ____mono_assembly_0;
// System.Reflection.Assembly/ResolveEventHolder System.Reflection.Assembly::resolve_event_holder
ResolveEventHolder_t2120639521 * ___resolve_event_holder_1;
// System.Security.Policy.Evidence System.Reflection.Assembly::_evidence
Evidence_t2008144148 * ____evidence_2;
// System.Security.PermissionSet System.Reflection.Assembly::_minimum
PermissionSet_t223948603 * ____minimum_3;
// System.Security.PermissionSet System.Reflection.Assembly::_optional
PermissionSet_t223948603 * ____optional_4;
// System.Security.PermissionSet System.Reflection.Assembly::_refuse
PermissionSet_t223948603 * ____refuse_5;
// System.Security.PermissionSet System.Reflection.Assembly::_granted
PermissionSet_t223948603 * ____granted_6;
// System.Security.PermissionSet System.Reflection.Assembly::_denied
PermissionSet_t223948603 * ____denied_7;
// System.Boolean System.Reflection.Assembly::fromByteArray
bool ___fromByteArray_8;
// System.String System.Reflection.Assembly::assemblyName
String_t* ___assemblyName_9;
public:
inline static int32_t get_offset_of__mono_assembly_0() { return static_cast<int32_t>(offsetof(Assembly_t, ____mono_assembly_0)); }
inline intptr_t get__mono_assembly_0() const { return ____mono_assembly_0; }
inline intptr_t* get_address_of__mono_assembly_0() { return &____mono_assembly_0; }
inline void set__mono_assembly_0(intptr_t value)
{
____mono_assembly_0 = value;
}
inline static int32_t get_offset_of_resolve_event_holder_1() { return static_cast<int32_t>(offsetof(Assembly_t, ___resolve_event_holder_1)); }
inline ResolveEventHolder_t2120639521 * get_resolve_event_holder_1() const { return ___resolve_event_holder_1; }
inline ResolveEventHolder_t2120639521 ** get_address_of_resolve_event_holder_1() { return &___resolve_event_holder_1; }
inline void set_resolve_event_holder_1(ResolveEventHolder_t2120639521 * value)
{
___resolve_event_holder_1 = value;
Il2CppCodeGenWriteBarrier((&___resolve_event_holder_1), value);
}
inline static int32_t get_offset_of__evidence_2() { return static_cast<int32_t>(offsetof(Assembly_t, ____evidence_2)); }
inline Evidence_t2008144148 * get__evidence_2() const { return ____evidence_2; }
inline Evidence_t2008144148 ** get_address_of__evidence_2() { return &____evidence_2; }
inline void set__evidence_2(Evidence_t2008144148 * value)
{
____evidence_2 = value;
Il2CppCodeGenWriteBarrier((&____evidence_2), value);
}
inline static int32_t get_offset_of__minimum_3() { return static_cast<int32_t>(offsetof(Assembly_t, ____minimum_3)); }
inline PermissionSet_t223948603 * get__minimum_3() const { return ____minimum_3; }
inline PermissionSet_t223948603 ** get_address_of__minimum_3() { return &____minimum_3; }
inline void set__minimum_3(PermissionSet_t223948603 * value)
{
____minimum_3 = value;
Il2CppCodeGenWriteBarrier((&____minimum_3), value);
}
inline static int32_t get_offset_of__optional_4() { return static_cast<int32_t>(offsetof(Assembly_t, ____optional_4)); }
inline PermissionSet_t223948603 * get__optional_4() const { return ____optional_4; }
inline PermissionSet_t223948603 ** get_address_of__optional_4() { return &____optional_4; }
inline void set__optional_4(PermissionSet_t223948603 * value)
{
____optional_4 = value;
Il2CppCodeGenWriteBarrier((&____optional_4), value);
}
inline static int32_t get_offset_of__refuse_5() { return static_cast<int32_t>(offsetof(Assembly_t, ____refuse_5)); }
inline PermissionSet_t223948603 * get__refuse_5() const { return ____refuse_5; }
inline PermissionSet_t223948603 ** get_address_of__refuse_5() { return &____refuse_5; }
inline void set__refuse_5(PermissionSet_t223948603 * value)
{
____refuse_5 = value;
Il2CppCodeGenWriteBarrier((&____refuse_5), value);
}
inline static int32_t get_offset_of__granted_6() { return static_cast<int32_t>(offsetof(Assembly_t, ____granted_6)); }
inline PermissionSet_t223948603 * get__granted_6() const { return ____granted_6; }
inline PermissionSet_t223948603 ** get_address_of__granted_6() { return &____granted_6; }
inline void set__granted_6(PermissionSet_t223948603 * value)
{
____granted_6 = value;
Il2CppCodeGenWriteBarrier((&____granted_6), value);
}
inline static int32_t get_offset_of__denied_7() { return static_cast<int32_t>(offsetof(Assembly_t, ____denied_7)); }
inline PermissionSet_t223948603 * get__denied_7() const { return ____denied_7; }
inline PermissionSet_t223948603 ** get_address_of__denied_7() { return &____denied_7; }
inline void set__denied_7(PermissionSet_t223948603 * value)
{
____denied_7 = value;
Il2CppCodeGenWriteBarrier((&____denied_7), value);
}
inline static int32_t get_offset_of_fromByteArray_8() { return static_cast<int32_t>(offsetof(Assembly_t, ___fromByteArray_8)); }
inline bool get_fromByteArray_8() const { return ___fromByteArray_8; }
inline bool* get_address_of_fromByteArray_8() { return &___fromByteArray_8; }
inline void set_fromByteArray_8(bool value)
{
___fromByteArray_8 = value;
}
inline static int32_t get_offset_of_assemblyName_9() { return static_cast<int32_t>(offsetof(Assembly_t, ___assemblyName_9)); }
inline String_t* get_assemblyName_9() const { return ___assemblyName_9; }
inline String_t** get_address_of_assemblyName_9() { return &___assemblyName_9; }
inline void set_assemblyName_9(String_t* value)
{
___assemblyName_9 = value;
Il2CppCodeGenWriteBarrier((&___assemblyName_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLY_T_H
#ifndef ASSEMBLYNAMEFLAGS_T3675421470_H
#define ASSEMBLYNAMEFLAGS_T3675421470_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyNameFlags
struct AssemblyNameFlags_t3675421470
{
public:
// System.Int32 System.Reflection.AssemblyNameFlags::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AssemblyNameFlags_t3675421470, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYNAMEFLAGS_T3675421470_H
#ifndef BINDINGFLAGS_T2721792723_H
#define BINDINGFLAGS_T2721792723_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.BindingFlags
struct BindingFlags_t2721792723
{
public:
// System.Int32 System.Reflection.BindingFlags::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(BindingFlags_t2721792723, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BINDINGFLAGS_T2721792723_H
#ifndef CALLINGCONVENTIONS_T2253234531_H
#define CALLINGCONVENTIONS_T2253234531_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CallingConventions
struct CallingConventions_t2253234531
{
public:
// System.Int32 System.Reflection.CallingConventions::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(CallingConventions_t2253234531, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CALLINGCONVENTIONS_T2253234531_H
#ifndef CONSTRUCTORINFO_T5769829_H
#define CONSTRUCTORINFO_T5769829_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ConstructorInfo
struct ConstructorInfo_t5769829 : public MethodBase_t
{
public:
public:
};
struct ConstructorInfo_t5769829_StaticFields
{
public:
// System.String System.Reflection.ConstructorInfo::ConstructorName
String_t* ___ConstructorName_0;
// System.String System.Reflection.ConstructorInfo::TypeConstructorName
String_t* ___TypeConstructorName_1;
public:
inline static int32_t get_offset_of_ConstructorName_0() { return static_cast<int32_t>(offsetof(ConstructorInfo_t5769829_StaticFields, ___ConstructorName_0)); }
inline String_t* get_ConstructorName_0() const { return ___ConstructorName_0; }
inline String_t** get_address_of_ConstructorName_0() { return &___ConstructorName_0; }
inline void set_ConstructorName_0(String_t* value)
{
___ConstructorName_0 = value;
Il2CppCodeGenWriteBarrier((&___ConstructorName_0), value);
}
inline static int32_t get_offset_of_TypeConstructorName_1() { return static_cast<int32_t>(offsetof(ConstructorInfo_t5769829_StaticFields, ___TypeConstructorName_1)); }
inline String_t* get_TypeConstructorName_1() const { return ___TypeConstructorName_1; }
inline String_t** get_address_of_TypeConstructorName_1() { return &___TypeConstructorName_1; }
inline void set_TypeConstructorName_1(String_t* value)
{
___TypeConstructorName_1 = value;
Il2CppCodeGenWriteBarrier((&___TypeConstructorName_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONSTRUCTORINFO_T5769829_H
#ifndef CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H
#define CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t287865710
{
public:
// System.Reflection.CustomAttributeTypedArgument System.Reflection.CustomAttributeNamedArgument::typedArgument
CustomAttributeTypedArgument_t2723150157 ___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_t287865710, ___typedArgument_0)); }
inline CustomAttributeTypedArgument_t2723150157 get_typedArgument_0() const { return ___typedArgument_0; }
inline CustomAttributeTypedArgument_t2723150157 * get_address_of_typedArgument_0() { return &___typedArgument_0; }
inline void set_typedArgument_0(CustomAttributeTypedArgument_t2723150157 value)
{
___typedArgument_0 = value;
}
inline static int32_t get_offset_of_memberInfo_1() { return static_cast<int32_t>(offsetof(CustomAttributeNamedArgument_t287865710, ___memberInfo_1)); }
inline MemberInfo_t * get_memberInfo_1() const { return ___memberInfo_1; }
inline MemberInfo_t ** get_address_of_memberInfo_1() { return &___memberInfo_1; }
inline void set_memberInfo_1(MemberInfo_t * value)
{
___memberInfo_1 = value;
Il2CppCodeGenWriteBarrier((&___memberInfo_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t287865710_marshaled_pinvoke
{
CustomAttributeTypedArgument_t2723150157_marshaled_pinvoke ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
// Native definition for COM marshalling of System.Reflection.CustomAttributeNamedArgument
struct CustomAttributeNamedArgument_t287865710_marshaled_com
{
CustomAttributeTypedArgument_t2723150157_marshaled_com ___typedArgument_0;
MemberInfo_t * ___memberInfo_1;
};
#endif // CUSTOMATTRIBUTENAMEDARGUMENT_T287865710_H
#ifndef EVENTATTRIBUTES_T1153671773_H
#define EVENTATTRIBUTES_T1153671773_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.EventAttributes
struct EventAttributes_t1153671773
{
public:
// System.Int32 System.Reflection.EventAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(EventAttributes_t1153671773, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // EVENTATTRIBUTES_T1153671773_H
#ifndef AMBIGUOUSMATCHEXCEPTION_T566690781_H
#define AMBIGUOUSMATCHEXCEPTION_T566690781_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AmbiguousMatchException
struct AmbiguousMatchException_t566690781 : public SystemException_t176217640
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // AMBIGUOUSMATCHEXCEPTION_T566690781_H
#ifndef UNEXCEPTIONALSTREAMWRITER_T2539306459_H
#define UNEXCEPTIONALSTREAMWRITER_T2539306459_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.UnexceptionalStreamWriter
struct UnexceptionalStreamWriter_t2539306459 : public StreamWriter_t1266378904
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNEXCEPTIONALSTREAMWRITER_T2539306459_H
#ifndef NATIVERESOURCETYPE_T2573963468_H
#define NATIVERESOURCETYPE_T2573963468_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.NativeResourceType
struct NativeResourceType_t2573963468
{
public:
// System.Int32 System.Reflection.Emit.NativeResourceType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(NativeResourceType_t2573963468, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // NATIVERESOURCETYPE_T2573963468_H
#ifndef ASSEMBLYBUILDERACCESS_T2806254258_H
#define ASSEMBLYBUILDERACCESS_T2806254258_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.AssemblyBuilderAccess
struct AssemblyBuilderAccess_t2806254258
{
public:
// System.Int32 System.Reflection.Emit.AssemblyBuilderAccess::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(AssemblyBuilderAccess_t2806254258, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYBUILDERACCESS_T2806254258_H
#ifndef OPCODES_T126150456_H
#define OPCODES_T126150456_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.OpCodes
struct OpCodes_t126150456 : public RuntimeObject
{
public:
public:
};
struct OpCodes_t126150456_StaticFields
{
public:
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Nop
OpCode_t123070264 ___Nop_0;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Break
OpCode_t123070264 ___Break_1;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_0
OpCode_t123070264 ___Ldarg_0_2;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_1
OpCode_t123070264 ___Ldarg_1_3;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_2
OpCode_t123070264 ___Ldarg_2_4;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_3
OpCode_t123070264 ___Ldarg_3_5;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_0
OpCode_t123070264 ___Ldloc_0_6;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_1
OpCode_t123070264 ___Ldloc_1_7;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_2
OpCode_t123070264 ___Ldloc_2_8;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_3
OpCode_t123070264 ___Ldloc_3_9;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_0
OpCode_t123070264 ___Stloc_0_10;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_1
OpCode_t123070264 ___Stloc_1_11;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_2
OpCode_t123070264 ___Stloc_2_12;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_3
OpCode_t123070264 ___Stloc_3_13;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg_S
OpCode_t123070264 ___Ldarg_S_14;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga_S
OpCode_t123070264 ___Ldarga_S_15;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg_S
OpCode_t123070264 ___Starg_S_16;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc_S
OpCode_t123070264 ___Ldloc_S_17;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca_S
OpCode_t123070264 ___Ldloca_S_18;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc_S
OpCode_t123070264 ___Stloc_S_19;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldnull
OpCode_t123070264 ___Ldnull_20;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_M1
OpCode_t123070264 ___Ldc_I4_M1_21;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_0
OpCode_t123070264 ___Ldc_I4_0_22;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_1
OpCode_t123070264 ___Ldc_I4_1_23;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_2
OpCode_t123070264 ___Ldc_I4_2_24;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_3
OpCode_t123070264 ___Ldc_I4_3_25;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_4
OpCode_t123070264 ___Ldc_I4_4_26;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_5
OpCode_t123070264 ___Ldc_I4_5_27;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_6
OpCode_t123070264 ___Ldc_I4_6_28;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_7
OpCode_t123070264 ___Ldc_I4_7_29;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_8
OpCode_t123070264 ___Ldc_I4_8_30;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4_S
OpCode_t123070264 ___Ldc_I4_S_31;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I4
OpCode_t123070264 ___Ldc_I4_32;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_I8
OpCode_t123070264 ___Ldc_I8_33;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R4
OpCode_t123070264 ___Ldc_R4_34;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldc_R8
OpCode_t123070264 ___Ldc_R8_35;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Dup
OpCode_t123070264 ___Dup_36;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Pop
OpCode_t123070264 ___Pop_37;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Jmp
OpCode_t123070264 ___Jmp_38;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Call
OpCode_t123070264 ___Call_39;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Calli
OpCode_t123070264 ___Calli_40;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ret
OpCode_t123070264 ___Ret_41;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br_S
OpCode_t123070264 ___Br_S_42;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse_S
OpCode_t123070264 ___Brfalse_S_43;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue_S
OpCode_t123070264 ___Brtrue_S_44;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq_S
OpCode_t123070264 ___Beq_S_45;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_S
OpCode_t123070264 ___Bge_S_46;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_S
OpCode_t123070264 ___Bgt_S_47;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_S
OpCode_t123070264 ___Ble_S_48;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_S
OpCode_t123070264 ___Blt_S_49;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un_S
OpCode_t123070264 ___Bne_Un_S_50;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un_S
OpCode_t123070264 ___Bge_Un_S_51;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un_S
OpCode_t123070264 ___Bgt_Un_S_52;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un_S
OpCode_t123070264 ___Ble_Un_S_53;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un_S
OpCode_t123070264 ___Blt_Un_S_54;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Br
OpCode_t123070264 ___Br_55;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brfalse
OpCode_t123070264 ___Brfalse_56;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Brtrue
OpCode_t123070264 ___Brtrue_57;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Beq
OpCode_t123070264 ___Beq_58;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge
OpCode_t123070264 ___Bge_59;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt
OpCode_t123070264 ___Bgt_60;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble
OpCode_t123070264 ___Ble_61;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt
OpCode_t123070264 ___Blt_62;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bne_Un
OpCode_t123070264 ___Bne_Un_63;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bge_Un
OpCode_t123070264 ___Bge_Un_64;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Bgt_Un
OpCode_t123070264 ___Bgt_Un_65;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ble_Un
OpCode_t123070264 ___Ble_Un_66;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Blt_Un
OpCode_t123070264 ___Blt_Un_67;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Switch
OpCode_t123070264 ___Switch_68;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I1
OpCode_t123070264 ___Ldind_I1_69;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U1
OpCode_t123070264 ___Ldind_U1_70;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I2
OpCode_t123070264 ___Ldind_I2_71;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U2
OpCode_t123070264 ___Ldind_U2_72;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I4
OpCode_t123070264 ___Ldind_I4_73;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_U4
OpCode_t123070264 ___Ldind_U4_74;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I8
OpCode_t123070264 ___Ldind_I8_75;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_I
OpCode_t123070264 ___Ldind_I_76;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R4
OpCode_t123070264 ___Ldind_R4_77;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_R8
OpCode_t123070264 ___Ldind_R8_78;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldind_Ref
OpCode_t123070264 ___Ldind_Ref_79;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_Ref
OpCode_t123070264 ___Stind_Ref_80;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I1
OpCode_t123070264 ___Stind_I1_81;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I2
OpCode_t123070264 ___Stind_I2_82;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I4
OpCode_t123070264 ___Stind_I4_83;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I8
OpCode_t123070264 ___Stind_I8_84;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R4
OpCode_t123070264 ___Stind_R4_85;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_R8
OpCode_t123070264 ___Stind_R8_86;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add
OpCode_t123070264 ___Add_87;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub
OpCode_t123070264 ___Sub_88;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul
OpCode_t123070264 ___Mul_89;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div
OpCode_t123070264 ___Div_90;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Div_Un
OpCode_t123070264 ___Div_Un_91;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem
OpCode_t123070264 ___Rem_92;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rem_Un
OpCode_t123070264 ___Rem_Un_93;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::And
OpCode_t123070264 ___And_94;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Or
OpCode_t123070264 ___Or_95;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Xor
OpCode_t123070264 ___Xor_96;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shl
OpCode_t123070264 ___Shl_97;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr
OpCode_t123070264 ___Shr_98;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Shr_Un
OpCode_t123070264 ___Shr_Un_99;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Neg
OpCode_t123070264 ___Neg_100;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Not
OpCode_t123070264 ___Not_101;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I1
OpCode_t123070264 ___Conv_I1_102;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I2
OpCode_t123070264 ___Conv_I2_103;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I4
OpCode_t123070264 ___Conv_I4_104;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I8
OpCode_t123070264 ___Conv_I8_105;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R4
OpCode_t123070264 ___Conv_R4_106;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R8
OpCode_t123070264 ___Conv_R8_107;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U4
OpCode_t123070264 ___Conv_U4_108;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U8
OpCode_t123070264 ___Conv_U8_109;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Callvirt
OpCode_t123070264 ___Callvirt_110;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpobj
OpCode_t123070264 ___Cpobj_111;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldobj
OpCode_t123070264 ___Ldobj_112;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldstr
OpCode_t123070264 ___Ldstr_113;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newobj
OpCode_t123070264 ___Newobj_114;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Castclass
OpCode_t123070264 ___Castclass_115;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Isinst
OpCode_t123070264 ___Isinst_116;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_R_Un
OpCode_t123070264 ___Conv_R_Un_117;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox
OpCode_t123070264 ___Unbox_118;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Throw
OpCode_t123070264 ___Throw_119;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldfld
OpCode_t123070264 ___Ldfld_120;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldflda
OpCode_t123070264 ___Ldflda_121;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stfld
OpCode_t123070264 ___Stfld_122;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsfld
OpCode_t123070264 ___Ldsfld_123;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldsflda
OpCode_t123070264 ___Ldsflda_124;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stsfld
OpCode_t123070264 ___Stsfld_125;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stobj
OpCode_t123070264 ___Stobj_126;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1_Un
OpCode_t123070264 ___Conv_Ovf_I1_Un_127;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2_Un
OpCode_t123070264 ___Conv_Ovf_I2_Un_128;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4_Un
OpCode_t123070264 ___Conv_Ovf_I4_Un_129;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8_Un
OpCode_t123070264 ___Conv_Ovf_I8_Un_130;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1_Un
OpCode_t123070264 ___Conv_Ovf_U1_Un_131;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2_Un
OpCode_t123070264 ___Conv_Ovf_U2_Un_132;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4_Un
OpCode_t123070264 ___Conv_Ovf_U4_Un_133;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8_Un
OpCode_t123070264 ___Conv_Ovf_U8_Un_134;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I_Un
OpCode_t123070264 ___Conv_Ovf_I_Un_135;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U_Un
OpCode_t123070264 ___Conv_Ovf_U_Un_136;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Box
OpCode_t123070264 ___Box_137;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Newarr
OpCode_t123070264 ___Newarr_138;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldlen
OpCode_t123070264 ___Ldlen_139;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelema
OpCode_t123070264 ___Ldelema_140;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I1
OpCode_t123070264 ___Ldelem_I1_141;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U1
OpCode_t123070264 ___Ldelem_U1_142;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I2
OpCode_t123070264 ___Ldelem_I2_143;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U2
OpCode_t123070264 ___Ldelem_U2_144;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I4
OpCode_t123070264 ___Ldelem_I4_145;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_U4
OpCode_t123070264 ___Ldelem_U4_146;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I8
OpCode_t123070264 ___Ldelem_I8_147;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_I
OpCode_t123070264 ___Ldelem_I_148;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R4
OpCode_t123070264 ___Ldelem_R4_149;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_R8
OpCode_t123070264 ___Ldelem_R8_150;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem_Ref
OpCode_t123070264 ___Ldelem_Ref_151;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I
OpCode_t123070264 ___Stelem_I_152;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I1
OpCode_t123070264 ___Stelem_I1_153;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I2
OpCode_t123070264 ___Stelem_I2_154;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I4
OpCode_t123070264 ___Stelem_I4_155;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_I8
OpCode_t123070264 ___Stelem_I8_156;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R4
OpCode_t123070264 ___Stelem_R4_157;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_R8
OpCode_t123070264 ___Stelem_R8_158;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem_Ref
OpCode_t123070264 ___Stelem_Ref_159;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldelem
OpCode_t123070264 ___Ldelem_160;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stelem
OpCode_t123070264 ___Stelem_161;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unbox_Any
OpCode_t123070264 ___Unbox_Any_162;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I1
OpCode_t123070264 ___Conv_Ovf_I1_163;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U1
OpCode_t123070264 ___Conv_Ovf_U1_164;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I2
OpCode_t123070264 ___Conv_Ovf_I2_165;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U2
OpCode_t123070264 ___Conv_Ovf_U2_166;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I4
OpCode_t123070264 ___Conv_Ovf_I4_167;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U4
OpCode_t123070264 ___Conv_Ovf_U4_168;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I8
OpCode_t123070264 ___Conv_Ovf_I8_169;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U8
OpCode_t123070264 ___Conv_Ovf_U8_170;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanyval
OpCode_t123070264 ___Refanyval_171;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ckfinite
OpCode_t123070264 ___Ckfinite_172;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mkrefany
OpCode_t123070264 ___Mkrefany_173;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldtoken
OpCode_t123070264 ___Ldtoken_174;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U2
OpCode_t123070264 ___Conv_U2_175;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U1
OpCode_t123070264 ___Conv_U1_176;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_I
OpCode_t123070264 ___Conv_I_177;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_I
OpCode_t123070264 ___Conv_Ovf_I_178;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_Ovf_U
OpCode_t123070264 ___Conv_Ovf_U_179;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf
OpCode_t123070264 ___Add_Ovf_180;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Add_Ovf_Un
OpCode_t123070264 ___Add_Ovf_Un_181;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf
OpCode_t123070264 ___Mul_Ovf_182;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Mul_Ovf_Un
OpCode_t123070264 ___Mul_Ovf_Un_183;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf
OpCode_t123070264 ___Sub_Ovf_184;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sub_Ovf_Un
OpCode_t123070264 ___Sub_Ovf_Un_185;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfinally
OpCode_t123070264 ___Endfinally_186;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave
OpCode_t123070264 ___Leave_187;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Leave_S
OpCode_t123070264 ___Leave_S_188;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stind_I
OpCode_t123070264 ___Stind_I_189;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Conv_U
OpCode_t123070264 ___Conv_U_190;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix7
OpCode_t123070264 ___Prefix7_191;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix6
OpCode_t123070264 ___Prefix6_192;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix5
OpCode_t123070264 ___Prefix5_193;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix4
OpCode_t123070264 ___Prefix4_194;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix3
OpCode_t123070264 ___Prefix3_195;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix2
OpCode_t123070264 ___Prefix2_196;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefix1
OpCode_t123070264 ___Prefix1_197;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Prefixref
OpCode_t123070264 ___Prefixref_198;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Arglist
OpCode_t123070264 ___Arglist_199;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ceq
OpCode_t123070264 ___Ceq_200;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt
OpCode_t123070264 ___Cgt_201;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cgt_Un
OpCode_t123070264 ___Cgt_Un_202;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt
OpCode_t123070264 ___Clt_203;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Clt_Un
OpCode_t123070264 ___Clt_Un_204;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldftn
OpCode_t123070264 ___Ldftn_205;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldvirtftn
OpCode_t123070264 ___Ldvirtftn_206;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarg
OpCode_t123070264 ___Ldarg_207;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldarga
OpCode_t123070264 ___Ldarga_208;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Starg
OpCode_t123070264 ___Starg_209;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloc
OpCode_t123070264 ___Ldloc_210;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Ldloca
OpCode_t123070264 ___Ldloca_211;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Stloc
OpCode_t123070264 ___Stloc_212;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Localloc
OpCode_t123070264 ___Localloc_213;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Endfilter
OpCode_t123070264 ___Endfilter_214;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Unaligned
OpCode_t123070264 ___Unaligned_215;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Volatile
OpCode_t123070264 ___Volatile_216;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Tailcall
OpCode_t123070264 ___Tailcall_217;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initobj
OpCode_t123070264 ___Initobj_218;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Constrained
OpCode_t123070264 ___Constrained_219;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Cpblk
OpCode_t123070264 ___Cpblk_220;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Initblk
OpCode_t123070264 ___Initblk_221;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Rethrow
OpCode_t123070264 ___Rethrow_222;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Sizeof
OpCode_t123070264 ___Sizeof_223;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Refanytype
OpCode_t123070264 ___Refanytype_224;
// System.Reflection.Emit.OpCode System.Reflection.Emit.OpCodes::Readonly
OpCode_t123070264 ___Readonly_225;
public:
inline static int32_t get_offset_of_Nop_0() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Nop_0)); }
inline OpCode_t123070264 get_Nop_0() const { return ___Nop_0; }
inline OpCode_t123070264 * get_address_of_Nop_0() { return &___Nop_0; }
inline void set_Nop_0(OpCode_t123070264 value)
{
___Nop_0 = value;
}
inline static int32_t get_offset_of_Break_1() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Break_1)); }
inline OpCode_t123070264 get_Break_1() const { return ___Break_1; }
inline OpCode_t123070264 * get_address_of_Break_1() { return &___Break_1; }
inline void set_Break_1(OpCode_t123070264 value)
{
___Break_1 = value;
}
inline static int32_t get_offset_of_Ldarg_0_2() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldarg_0_2)); }
inline OpCode_t123070264 get_Ldarg_0_2() const { return ___Ldarg_0_2; }
inline OpCode_t123070264 * get_address_of_Ldarg_0_2() { return &___Ldarg_0_2; }
inline void set_Ldarg_0_2(OpCode_t123070264 value)
{
___Ldarg_0_2 = value;
}
inline static int32_t get_offset_of_Ldarg_1_3() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldarg_1_3)); }
inline OpCode_t123070264 get_Ldarg_1_3() const { return ___Ldarg_1_3; }
inline OpCode_t123070264 * get_address_of_Ldarg_1_3() { return &___Ldarg_1_3; }
inline void set_Ldarg_1_3(OpCode_t123070264 value)
{
___Ldarg_1_3 = value;
}
inline static int32_t get_offset_of_Ldarg_2_4() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldarg_2_4)); }
inline OpCode_t123070264 get_Ldarg_2_4() const { return ___Ldarg_2_4; }
inline OpCode_t123070264 * get_address_of_Ldarg_2_4() { return &___Ldarg_2_4; }
inline void set_Ldarg_2_4(OpCode_t123070264 value)
{
___Ldarg_2_4 = value;
}
inline static int32_t get_offset_of_Ldarg_3_5() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldarg_3_5)); }
inline OpCode_t123070264 get_Ldarg_3_5() const { return ___Ldarg_3_5; }
inline OpCode_t123070264 * get_address_of_Ldarg_3_5() { return &___Ldarg_3_5; }
inline void set_Ldarg_3_5(OpCode_t123070264 value)
{
___Ldarg_3_5 = value;
}
inline static int32_t get_offset_of_Ldloc_0_6() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldloc_0_6)); }
inline OpCode_t123070264 get_Ldloc_0_6() const { return ___Ldloc_0_6; }
inline OpCode_t123070264 * get_address_of_Ldloc_0_6() { return &___Ldloc_0_6; }
inline void set_Ldloc_0_6(OpCode_t123070264 value)
{
___Ldloc_0_6 = value;
}
inline static int32_t get_offset_of_Ldloc_1_7() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldloc_1_7)); }
inline OpCode_t123070264 get_Ldloc_1_7() const { return ___Ldloc_1_7; }
inline OpCode_t123070264 * get_address_of_Ldloc_1_7() { return &___Ldloc_1_7; }
inline void set_Ldloc_1_7(OpCode_t123070264 value)
{
___Ldloc_1_7 = value;
}
inline static int32_t get_offset_of_Ldloc_2_8() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldloc_2_8)); }
inline OpCode_t123070264 get_Ldloc_2_8() const { return ___Ldloc_2_8; }
inline OpCode_t123070264 * get_address_of_Ldloc_2_8() { return &___Ldloc_2_8; }
inline void set_Ldloc_2_8(OpCode_t123070264 value)
{
___Ldloc_2_8 = value;
}
inline static int32_t get_offset_of_Ldloc_3_9() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldloc_3_9)); }
inline OpCode_t123070264 get_Ldloc_3_9() const { return ___Ldloc_3_9; }
inline OpCode_t123070264 * get_address_of_Ldloc_3_9() { return &___Ldloc_3_9; }
inline void set_Ldloc_3_9(OpCode_t123070264 value)
{
___Ldloc_3_9 = value;
}
inline static int32_t get_offset_of_Stloc_0_10() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stloc_0_10)); }
inline OpCode_t123070264 get_Stloc_0_10() const { return ___Stloc_0_10; }
inline OpCode_t123070264 * get_address_of_Stloc_0_10() { return &___Stloc_0_10; }
inline void set_Stloc_0_10(OpCode_t123070264 value)
{
___Stloc_0_10 = value;
}
inline static int32_t get_offset_of_Stloc_1_11() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stloc_1_11)); }
inline OpCode_t123070264 get_Stloc_1_11() const { return ___Stloc_1_11; }
inline OpCode_t123070264 * get_address_of_Stloc_1_11() { return &___Stloc_1_11; }
inline void set_Stloc_1_11(OpCode_t123070264 value)
{
___Stloc_1_11 = value;
}
inline static int32_t get_offset_of_Stloc_2_12() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stloc_2_12)); }
inline OpCode_t123070264 get_Stloc_2_12() const { return ___Stloc_2_12; }
inline OpCode_t123070264 * get_address_of_Stloc_2_12() { return &___Stloc_2_12; }
inline void set_Stloc_2_12(OpCode_t123070264 value)
{
___Stloc_2_12 = value;
}
inline static int32_t get_offset_of_Stloc_3_13() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stloc_3_13)); }
inline OpCode_t123070264 get_Stloc_3_13() const { return ___Stloc_3_13; }
inline OpCode_t123070264 * get_address_of_Stloc_3_13() { return &___Stloc_3_13; }
inline void set_Stloc_3_13(OpCode_t123070264 value)
{
___Stloc_3_13 = value;
}
inline static int32_t get_offset_of_Ldarg_S_14() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldarg_S_14)); }
inline OpCode_t123070264 get_Ldarg_S_14() const { return ___Ldarg_S_14; }
inline OpCode_t123070264 * get_address_of_Ldarg_S_14() { return &___Ldarg_S_14; }
inline void set_Ldarg_S_14(OpCode_t123070264 value)
{
___Ldarg_S_14 = value;
}
inline static int32_t get_offset_of_Ldarga_S_15() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldarga_S_15)); }
inline OpCode_t123070264 get_Ldarga_S_15() const { return ___Ldarga_S_15; }
inline OpCode_t123070264 * get_address_of_Ldarga_S_15() { return &___Ldarga_S_15; }
inline void set_Ldarga_S_15(OpCode_t123070264 value)
{
___Ldarga_S_15 = value;
}
inline static int32_t get_offset_of_Starg_S_16() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Starg_S_16)); }
inline OpCode_t123070264 get_Starg_S_16() const { return ___Starg_S_16; }
inline OpCode_t123070264 * get_address_of_Starg_S_16() { return &___Starg_S_16; }
inline void set_Starg_S_16(OpCode_t123070264 value)
{
___Starg_S_16 = value;
}
inline static int32_t get_offset_of_Ldloc_S_17() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldloc_S_17)); }
inline OpCode_t123070264 get_Ldloc_S_17() const { return ___Ldloc_S_17; }
inline OpCode_t123070264 * get_address_of_Ldloc_S_17() { return &___Ldloc_S_17; }
inline void set_Ldloc_S_17(OpCode_t123070264 value)
{
___Ldloc_S_17 = value;
}
inline static int32_t get_offset_of_Ldloca_S_18() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldloca_S_18)); }
inline OpCode_t123070264 get_Ldloca_S_18() const { return ___Ldloca_S_18; }
inline OpCode_t123070264 * get_address_of_Ldloca_S_18() { return &___Ldloca_S_18; }
inline void set_Ldloca_S_18(OpCode_t123070264 value)
{
___Ldloca_S_18 = value;
}
inline static int32_t get_offset_of_Stloc_S_19() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stloc_S_19)); }
inline OpCode_t123070264 get_Stloc_S_19() const { return ___Stloc_S_19; }
inline OpCode_t123070264 * get_address_of_Stloc_S_19() { return &___Stloc_S_19; }
inline void set_Stloc_S_19(OpCode_t123070264 value)
{
___Stloc_S_19 = value;
}
inline static int32_t get_offset_of_Ldnull_20() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldnull_20)); }
inline OpCode_t123070264 get_Ldnull_20() const { return ___Ldnull_20; }
inline OpCode_t123070264 * get_address_of_Ldnull_20() { return &___Ldnull_20; }
inline void set_Ldnull_20(OpCode_t123070264 value)
{
___Ldnull_20 = value;
}
inline static int32_t get_offset_of_Ldc_I4_M1_21() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_M1_21)); }
inline OpCode_t123070264 get_Ldc_I4_M1_21() const { return ___Ldc_I4_M1_21; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_M1_21() { return &___Ldc_I4_M1_21; }
inline void set_Ldc_I4_M1_21(OpCode_t123070264 value)
{
___Ldc_I4_M1_21 = value;
}
inline static int32_t get_offset_of_Ldc_I4_0_22() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_0_22)); }
inline OpCode_t123070264 get_Ldc_I4_0_22() const { return ___Ldc_I4_0_22; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_0_22() { return &___Ldc_I4_0_22; }
inline void set_Ldc_I4_0_22(OpCode_t123070264 value)
{
___Ldc_I4_0_22 = value;
}
inline static int32_t get_offset_of_Ldc_I4_1_23() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_1_23)); }
inline OpCode_t123070264 get_Ldc_I4_1_23() const { return ___Ldc_I4_1_23; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_1_23() { return &___Ldc_I4_1_23; }
inline void set_Ldc_I4_1_23(OpCode_t123070264 value)
{
___Ldc_I4_1_23 = value;
}
inline static int32_t get_offset_of_Ldc_I4_2_24() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_2_24)); }
inline OpCode_t123070264 get_Ldc_I4_2_24() const { return ___Ldc_I4_2_24; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_2_24() { return &___Ldc_I4_2_24; }
inline void set_Ldc_I4_2_24(OpCode_t123070264 value)
{
___Ldc_I4_2_24 = value;
}
inline static int32_t get_offset_of_Ldc_I4_3_25() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_3_25)); }
inline OpCode_t123070264 get_Ldc_I4_3_25() const { return ___Ldc_I4_3_25; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_3_25() { return &___Ldc_I4_3_25; }
inline void set_Ldc_I4_3_25(OpCode_t123070264 value)
{
___Ldc_I4_3_25 = value;
}
inline static int32_t get_offset_of_Ldc_I4_4_26() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_4_26)); }
inline OpCode_t123070264 get_Ldc_I4_4_26() const { return ___Ldc_I4_4_26; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_4_26() { return &___Ldc_I4_4_26; }
inline void set_Ldc_I4_4_26(OpCode_t123070264 value)
{
___Ldc_I4_4_26 = value;
}
inline static int32_t get_offset_of_Ldc_I4_5_27() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_5_27)); }
inline OpCode_t123070264 get_Ldc_I4_5_27() const { return ___Ldc_I4_5_27; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_5_27() { return &___Ldc_I4_5_27; }
inline void set_Ldc_I4_5_27(OpCode_t123070264 value)
{
___Ldc_I4_5_27 = value;
}
inline static int32_t get_offset_of_Ldc_I4_6_28() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_6_28)); }
inline OpCode_t123070264 get_Ldc_I4_6_28() const { return ___Ldc_I4_6_28; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_6_28() { return &___Ldc_I4_6_28; }
inline void set_Ldc_I4_6_28(OpCode_t123070264 value)
{
___Ldc_I4_6_28 = value;
}
inline static int32_t get_offset_of_Ldc_I4_7_29() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_7_29)); }
inline OpCode_t123070264 get_Ldc_I4_7_29() const { return ___Ldc_I4_7_29; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_7_29() { return &___Ldc_I4_7_29; }
inline void set_Ldc_I4_7_29(OpCode_t123070264 value)
{
___Ldc_I4_7_29 = value;
}
inline static int32_t get_offset_of_Ldc_I4_8_30() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_8_30)); }
inline OpCode_t123070264 get_Ldc_I4_8_30() const { return ___Ldc_I4_8_30; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_8_30() { return &___Ldc_I4_8_30; }
inline void set_Ldc_I4_8_30(OpCode_t123070264 value)
{
___Ldc_I4_8_30 = value;
}
inline static int32_t get_offset_of_Ldc_I4_S_31() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_S_31)); }
inline OpCode_t123070264 get_Ldc_I4_S_31() const { return ___Ldc_I4_S_31; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_S_31() { return &___Ldc_I4_S_31; }
inline void set_Ldc_I4_S_31(OpCode_t123070264 value)
{
___Ldc_I4_S_31 = value;
}
inline static int32_t get_offset_of_Ldc_I4_32() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I4_32)); }
inline OpCode_t123070264 get_Ldc_I4_32() const { return ___Ldc_I4_32; }
inline OpCode_t123070264 * get_address_of_Ldc_I4_32() { return &___Ldc_I4_32; }
inline void set_Ldc_I4_32(OpCode_t123070264 value)
{
___Ldc_I4_32 = value;
}
inline static int32_t get_offset_of_Ldc_I8_33() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_I8_33)); }
inline OpCode_t123070264 get_Ldc_I8_33() const { return ___Ldc_I8_33; }
inline OpCode_t123070264 * get_address_of_Ldc_I8_33() { return &___Ldc_I8_33; }
inline void set_Ldc_I8_33(OpCode_t123070264 value)
{
___Ldc_I8_33 = value;
}
inline static int32_t get_offset_of_Ldc_R4_34() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_R4_34)); }
inline OpCode_t123070264 get_Ldc_R4_34() const { return ___Ldc_R4_34; }
inline OpCode_t123070264 * get_address_of_Ldc_R4_34() { return &___Ldc_R4_34; }
inline void set_Ldc_R4_34(OpCode_t123070264 value)
{
___Ldc_R4_34 = value;
}
inline static int32_t get_offset_of_Ldc_R8_35() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldc_R8_35)); }
inline OpCode_t123070264 get_Ldc_R8_35() const { return ___Ldc_R8_35; }
inline OpCode_t123070264 * get_address_of_Ldc_R8_35() { return &___Ldc_R8_35; }
inline void set_Ldc_R8_35(OpCode_t123070264 value)
{
___Ldc_R8_35 = value;
}
inline static int32_t get_offset_of_Dup_36() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Dup_36)); }
inline OpCode_t123070264 get_Dup_36() const { return ___Dup_36; }
inline OpCode_t123070264 * get_address_of_Dup_36() { return &___Dup_36; }
inline void set_Dup_36(OpCode_t123070264 value)
{
___Dup_36 = value;
}
inline static int32_t get_offset_of_Pop_37() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Pop_37)); }
inline OpCode_t123070264 get_Pop_37() const { return ___Pop_37; }
inline OpCode_t123070264 * get_address_of_Pop_37() { return &___Pop_37; }
inline void set_Pop_37(OpCode_t123070264 value)
{
___Pop_37 = value;
}
inline static int32_t get_offset_of_Jmp_38() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Jmp_38)); }
inline OpCode_t123070264 get_Jmp_38() const { return ___Jmp_38; }
inline OpCode_t123070264 * get_address_of_Jmp_38() { return &___Jmp_38; }
inline void set_Jmp_38(OpCode_t123070264 value)
{
___Jmp_38 = value;
}
inline static int32_t get_offset_of_Call_39() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Call_39)); }
inline OpCode_t123070264 get_Call_39() const { return ___Call_39; }
inline OpCode_t123070264 * get_address_of_Call_39() { return &___Call_39; }
inline void set_Call_39(OpCode_t123070264 value)
{
___Call_39 = value;
}
inline static int32_t get_offset_of_Calli_40() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Calli_40)); }
inline OpCode_t123070264 get_Calli_40() const { return ___Calli_40; }
inline OpCode_t123070264 * get_address_of_Calli_40() { return &___Calli_40; }
inline void set_Calli_40(OpCode_t123070264 value)
{
___Calli_40 = value;
}
inline static int32_t get_offset_of_Ret_41() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ret_41)); }
inline OpCode_t123070264 get_Ret_41() const { return ___Ret_41; }
inline OpCode_t123070264 * get_address_of_Ret_41() { return &___Ret_41; }
inline void set_Ret_41(OpCode_t123070264 value)
{
___Ret_41 = value;
}
inline static int32_t get_offset_of_Br_S_42() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Br_S_42)); }
inline OpCode_t123070264 get_Br_S_42() const { return ___Br_S_42; }
inline OpCode_t123070264 * get_address_of_Br_S_42() { return &___Br_S_42; }
inline void set_Br_S_42(OpCode_t123070264 value)
{
___Br_S_42 = value;
}
inline static int32_t get_offset_of_Brfalse_S_43() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Brfalse_S_43)); }
inline OpCode_t123070264 get_Brfalse_S_43() const { return ___Brfalse_S_43; }
inline OpCode_t123070264 * get_address_of_Brfalse_S_43() { return &___Brfalse_S_43; }
inline void set_Brfalse_S_43(OpCode_t123070264 value)
{
___Brfalse_S_43 = value;
}
inline static int32_t get_offset_of_Brtrue_S_44() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Brtrue_S_44)); }
inline OpCode_t123070264 get_Brtrue_S_44() const { return ___Brtrue_S_44; }
inline OpCode_t123070264 * get_address_of_Brtrue_S_44() { return &___Brtrue_S_44; }
inline void set_Brtrue_S_44(OpCode_t123070264 value)
{
___Brtrue_S_44 = value;
}
inline static int32_t get_offset_of_Beq_S_45() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Beq_S_45)); }
inline OpCode_t123070264 get_Beq_S_45() const { return ___Beq_S_45; }
inline OpCode_t123070264 * get_address_of_Beq_S_45() { return &___Beq_S_45; }
inline void set_Beq_S_45(OpCode_t123070264 value)
{
___Beq_S_45 = value;
}
inline static int32_t get_offset_of_Bge_S_46() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bge_S_46)); }
inline OpCode_t123070264 get_Bge_S_46() const { return ___Bge_S_46; }
inline OpCode_t123070264 * get_address_of_Bge_S_46() { return &___Bge_S_46; }
inline void set_Bge_S_46(OpCode_t123070264 value)
{
___Bge_S_46 = value;
}
inline static int32_t get_offset_of_Bgt_S_47() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bgt_S_47)); }
inline OpCode_t123070264 get_Bgt_S_47() const { return ___Bgt_S_47; }
inline OpCode_t123070264 * get_address_of_Bgt_S_47() { return &___Bgt_S_47; }
inline void set_Bgt_S_47(OpCode_t123070264 value)
{
___Bgt_S_47 = value;
}
inline static int32_t get_offset_of_Ble_S_48() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ble_S_48)); }
inline OpCode_t123070264 get_Ble_S_48() const { return ___Ble_S_48; }
inline OpCode_t123070264 * get_address_of_Ble_S_48() { return &___Ble_S_48; }
inline void set_Ble_S_48(OpCode_t123070264 value)
{
___Ble_S_48 = value;
}
inline static int32_t get_offset_of_Blt_S_49() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Blt_S_49)); }
inline OpCode_t123070264 get_Blt_S_49() const { return ___Blt_S_49; }
inline OpCode_t123070264 * get_address_of_Blt_S_49() { return &___Blt_S_49; }
inline void set_Blt_S_49(OpCode_t123070264 value)
{
___Blt_S_49 = value;
}
inline static int32_t get_offset_of_Bne_Un_S_50() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bne_Un_S_50)); }
inline OpCode_t123070264 get_Bne_Un_S_50() const { return ___Bne_Un_S_50; }
inline OpCode_t123070264 * get_address_of_Bne_Un_S_50() { return &___Bne_Un_S_50; }
inline void set_Bne_Un_S_50(OpCode_t123070264 value)
{
___Bne_Un_S_50 = value;
}
inline static int32_t get_offset_of_Bge_Un_S_51() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bge_Un_S_51)); }
inline OpCode_t123070264 get_Bge_Un_S_51() const { return ___Bge_Un_S_51; }
inline OpCode_t123070264 * get_address_of_Bge_Un_S_51() { return &___Bge_Un_S_51; }
inline void set_Bge_Un_S_51(OpCode_t123070264 value)
{
___Bge_Un_S_51 = value;
}
inline static int32_t get_offset_of_Bgt_Un_S_52() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bgt_Un_S_52)); }
inline OpCode_t123070264 get_Bgt_Un_S_52() const { return ___Bgt_Un_S_52; }
inline OpCode_t123070264 * get_address_of_Bgt_Un_S_52() { return &___Bgt_Un_S_52; }
inline void set_Bgt_Un_S_52(OpCode_t123070264 value)
{
___Bgt_Un_S_52 = value;
}
inline static int32_t get_offset_of_Ble_Un_S_53() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ble_Un_S_53)); }
inline OpCode_t123070264 get_Ble_Un_S_53() const { return ___Ble_Un_S_53; }
inline OpCode_t123070264 * get_address_of_Ble_Un_S_53() { return &___Ble_Un_S_53; }
inline void set_Ble_Un_S_53(OpCode_t123070264 value)
{
___Ble_Un_S_53 = value;
}
inline static int32_t get_offset_of_Blt_Un_S_54() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Blt_Un_S_54)); }
inline OpCode_t123070264 get_Blt_Un_S_54() const { return ___Blt_Un_S_54; }
inline OpCode_t123070264 * get_address_of_Blt_Un_S_54() { return &___Blt_Un_S_54; }
inline void set_Blt_Un_S_54(OpCode_t123070264 value)
{
___Blt_Un_S_54 = value;
}
inline static int32_t get_offset_of_Br_55() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Br_55)); }
inline OpCode_t123070264 get_Br_55() const { return ___Br_55; }
inline OpCode_t123070264 * get_address_of_Br_55() { return &___Br_55; }
inline void set_Br_55(OpCode_t123070264 value)
{
___Br_55 = value;
}
inline static int32_t get_offset_of_Brfalse_56() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Brfalse_56)); }
inline OpCode_t123070264 get_Brfalse_56() const { return ___Brfalse_56; }
inline OpCode_t123070264 * get_address_of_Brfalse_56() { return &___Brfalse_56; }
inline void set_Brfalse_56(OpCode_t123070264 value)
{
___Brfalse_56 = value;
}
inline static int32_t get_offset_of_Brtrue_57() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Brtrue_57)); }
inline OpCode_t123070264 get_Brtrue_57() const { return ___Brtrue_57; }
inline OpCode_t123070264 * get_address_of_Brtrue_57() { return &___Brtrue_57; }
inline void set_Brtrue_57(OpCode_t123070264 value)
{
___Brtrue_57 = value;
}
inline static int32_t get_offset_of_Beq_58() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Beq_58)); }
inline OpCode_t123070264 get_Beq_58() const { return ___Beq_58; }
inline OpCode_t123070264 * get_address_of_Beq_58() { return &___Beq_58; }
inline void set_Beq_58(OpCode_t123070264 value)
{
___Beq_58 = value;
}
inline static int32_t get_offset_of_Bge_59() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bge_59)); }
inline OpCode_t123070264 get_Bge_59() const { return ___Bge_59; }
inline OpCode_t123070264 * get_address_of_Bge_59() { return &___Bge_59; }
inline void set_Bge_59(OpCode_t123070264 value)
{
___Bge_59 = value;
}
inline static int32_t get_offset_of_Bgt_60() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bgt_60)); }
inline OpCode_t123070264 get_Bgt_60() const { return ___Bgt_60; }
inline OpCode_t123070264 * get_address_of_Bgt_60() { return &___Bgt_60; }
inline void set_Bgt_60(OpCode_t123070264 value)
{
___Bgt_60 = value;
}
inline static int32_t get_offset_of_Ble_61() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ble_61)); }
inline OpCode_t123070264 get_Ble_61() const { return ___Ble_61; }
inline OpCode_t123070264 * get_address_of_Ble_61() { return &___Ble_61; }
inline void set_Ble_61(OpCode_t123070264 value)
{
___Ble_61 = value;
}
inline static int32_t get_offset_of_Blt_62() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Blt_62)); }
inline OpCode_t123070264 get_Blt_62() const { return ___Blt_62; }
inline OpCode_t123070264 * get_address_of_Blt_62() { return &___Blt_62; }
inline void set_Blt_62(OpCode_t123070264 value)
{
___Blt_62 = value;
}
inline static int32_t get_offset_of_Bne_Un_63() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bne_Un_63)); }
inline OpCode_t123070264 get_Bne_Un_63() const { return ___Bne_Un_63; }
inline OpCode_t123070264 * get_address_of_Bne_Un_63() { return &___Bne_Un_63; }
inline void set_Bne_Un_63(OpCode_t123070264 value)
{
___Bne_Un_63 = value;
}
inline static int32_t get_offset_of_Bge_Un_64() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bge_Un_64)); }
inline OpCode_t123070264 get_Bge_Un_64() const { return ___Bge_Un_64; }
inline OpCode_t123070264 * get_address_of_Bge_Un_64() { return &___Bge_Un_64; }
inline void set_Bge_Un_64(OpCode_t123070264 value)
{
___Bge_Un_64 = value;
}
inline static int32_t get_offset_of_Bgt_Un_65() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Bgt_Un_65)); }
inline OpCode_t123070264 get_Bgt_Un_65() const { return ___Bgt_Un_65; }
inline OpCode_t123070264 * get_address_of_Bgt_Un_65() { return &___Bgt_Un_65; }
inline void set_Bgt_Un_65(OpCode_t123070264 value)
{
___Bgt_Un_65 = value;
}
inline static int32_t get_offset_of_Ble_Un_66() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ble_Un_66)); }
inline OpCode_t123070264 get_Ble_Un_66() const { return ___Ble_Un_66; }
inline OpCode_t123070264 * get_address_of_Ble_Un_66() { return &___Ble_Un_66; }
inline void set_Ble_Un_66(OpCode_t123070264 value)
{
___Ble_Un_66 = value;
}
inline static int32_t get_offset_of_Blt_Un_67() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Blt_Un_67)); }
inline OpCode_t123070264 get_Blt_Un_67() const { return ___Blt_Un_67; }
inline OpCode_t123070264 * get_address_of_Blt_Un_67() { return &___Blt_Un_67; }
inline void set_Blt_Un_67(OpCode_t123070264 value)
{
___Blt_Un_67 = value;
}
inline static int32_t get_offset_of_Switch_68() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Switch_68)); }
inline OpCode_t123070264 get_Switch_68() const { return ___Switch_68; }
inline OpCode_t123070264 * get_address_of_Switch_68() { return &___Switch_68; }
inline void set_Switch_68(OpCode_t123070264 value)
{
___Switch_68 = value;
}
inline static int32_t get_offset_of_Ldind_I1_69() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_I1_69)); }
inline OpCode_t123070264 get_Ldind_I1_69() const { return ___Ldind_I1_69; }
inline OpCode_t123070264 * get_address_of_Ldind_I1_69() { return &___Ldind_I1_69; }
inline void set_Ldind_I1_69(OpCode_t123070264 value)
{
___Ldind_I1_69 = value;
}
inline static int32_t get_offset_of_Ldind_U1_70() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_U1_70)); }
inline OpCode_t123070264 get_Ldind_U1_70() const { return ___Ldind_U1_70; }
inline OpCode_t123070264 * get_address_of_Ldind_U1_70() { return &___Ldind_U1_70; }
inline void set_Ldind_U1_70(OpCode_t123070264 value)
{
___Ldind_U1_70 = value;
}
inline static int32_t get_offset_of_Ldind_I2_71() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_I2_71)); }
inline OpCode_t123070264 get_Ldind_I2_71() const { return ___Ldind_I2_71; }
inline OpCode_t123070264 * get_address_of_Ldind_I2_71() { return &___Ldind_I2_71; }
inline void set_Ldind_I2_71(OpCode_t123070264 value)
{
___Ldind_I2_71 = value;
}
inline static int32_t get_offset_of_Ldind_U2_72() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_U2_72)); }
inline OpCode_t123070264 get_Ldind_U2_72() const { return ___Ldind_U2_72; }
inline OpCode_t123070264 * get_address_of_Ldind_U2_72() { return &___Ldind_U2_72; }
inline void set_Ldind_U2_72(OpCode_t123070264 value)
{
___Ldind_U2_72 = value;
}
inline static int32_t get_offset_of_Ldind_I4_73() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_I4_73)); }
inline OpCode_t123070264 get_Ldind_I4_73() const { return ___Ldind_I4_73; }
inline OpCode_t123070264 * get_address_of_Ldind_I4_73() { return &___Ldind_I4_73; }
inline void set_Ldind_I4_73(OpCode_t123070264 value)
{
___Ldind_I4_73 = value;
}
inline static int32_t get_offset_of_Ldind_U4_74() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_U4_74)); }
inline OpCode_t123070264 get_Ldind_U4_74() const { return ___Ldind_U4_74; }
inline OpCode_t123070264 * get_address_of_Ldind_U4_74() { return &___Ldind_U4_74; }
inline void set_Ldind_U4_74(OpCode_t123070264 value)
{
___Ldind_U4_74 = value;
}
inline static int32_t get_offset_of_Ldind_I8_75() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_I8_75)); }
inline OpCode_t123070264 get_Ldind_I8_75() const { return ___Ldind_I8_75; }
inline OpCode_t123070264 * get_address_of_Ldind_I8_75() { return &___Ldind_I8_75; }
inline void set_Ldind_I8_75(OpCode_t123070264 value)
{
___Ldind_I8_75 = value;
}
inline static int32_t get_offset_of_Ldind_I_76() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_I_76)); }
inline OpCode_t123070264 get_Ldind_I_76() const { return ___Ldind_I_76; }
inline OpCode_t123070264 * get_address_of_Ldind_I_76() { return &___Ldind_I_76; }
inline void set_Ldind_I_76(OpCode_t123070264 value)
{
___Ldind_I_76 = value;
}
inline static int32_t get_offset_of_Ldind_R4_77() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_R4_77)); }
inline OpCode_t123070264 get_Ldind_R4_77() const { return ___Ldind_R4_77; }
inline OpCode_t123070264 * get_address_of_Ldind_R4_77() { return &___Ldind_R4_77; }
inline void set_Ldind_R4_77(OpCode_t123070264 value)
{
___Ldind_R4_77 = value;
}
inline static int32_t get_offset_of_Ldind_R8_78() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_R8_78)); }
inline OpCode_t123070264 get_Ldind_R8_78() const { return ___Ldind_R8_78; }
inline OpCode_t123070264 * get_address_of_Ldind_R8_78() { return &___Ldind_R8_78; }
inline void set_Ldind_R8_78(OpCode_t123070264 value)
{
___Ldind_R8_78 = value;
}
inline static int32_t get_offset_of_Ldind_Ref_79() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldind_Ref_79)); }
inline OpCode_t123070264 get_Ldind_Ref_79() const { return ___Ldind_Ref_79; }
inline OpCode_t123070264 * get_address_of_Ldind_Ref_79() { return &___Ldind_Ref_79; }
inline void set_Ldind_Ref_79(OpCode_t123070264 value)
{
___Ldind_Ref_79 = value;
}
inline static int32_t get_offset_of_Stind_Ref_80() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stind_Ref_80)); }
inline OpCode_t123070264 get_Stind_Ref_80() const { return ___Stind_Ref_80; }
inline OpCode_t123070264 * get_address_of_Stind_Ref_80() { return &___Stind_Ref_80; }
inline void set_Stind_Ref_80(OpCode_t123070264 value)
{
___Stind_Ref_80 = value;
}
inline static int32_t get_offset_of_Stind_I1_81() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stind_I1_81)); }
inline OpCode_t123070264 get_Stind_I1_81() const { return ___Stind_I1_81; }
inline OpCode_t123070264 * get_address_of_Stind_I1_81() { return &___Stind_I1_81; }
inline void set_Stind_I1_81(OpCode_t123070264 value)
{
___Stind_I1_81 = value;
}
inline static int32_t get_offset_of_Stind_I2_82() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stind_I2_82)); }
inline OpCode_t123070264 get_Stind_I2_82() const { return ___Stind_I2_82; }
inline OpCode_t123070264 * get_address_of_Stind_I2_82() { return &___Stind_I2_82; }
inline void set_Stind_I2_82(OpCode_t123070264 value)
{
___Stind_I2_82 = value;
}
inline static int32_t get_offset_of_Stind_I4_83() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stind_I4_83)); }
inline OpCode_t123070264 get_Stind_I4_83() const { return ___Stind_I4_83; }
inline OpCode_t123070264 * get_address_of_Stind_I4_83() { return &___Stind_I4_83; }
inline void set_Stind_I4_83(OpCode_t123070264 value)
{
___Stind_I4_83 = value;
}
inline static int32_t get_offset_of_Stind_I8_84() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stind_I8_84)); }
inline OpCode_t123070264 get_Stind_I8_84() const { return ___Stind_I8_84; }
inline OpCode_t123070264 * get_address_of_Stind_I8_84() { return &___Stind_I8_84; }
inline void set_Stind_I8_84(OpCode_t123070264 value)
{
___Stind_I8_84 = value;
}
inline static int32_t get_offset_of_Stind_R4_85() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stind_R4_85)); }
inline OpCode_t123070264 get_Stind_R4_85() const { return ___Stind_R4_85; }
inline OpCode_t123070264 * get_address_of_Stind_R4_85() { return &___Stind_R4_85; }
inline void set_Stind_R4_85(OpCode_t123070264 value)
{
___Stind_R4_85 = value;
}
inline static int32_t get_offset_of_Stind_R8_86() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stind_R8_86)); }
inline OpCode_t123070264 get_Stind_R8_86() const { return ___Stind_R8_86; }
inline OpCode_t123070264 * get_address_of_Stind_R8_86() { return &___Stind_R8_86; }
inline void set_Stind_R8_86(OpCode_t123070264 value)
{
___Stind_R8_86 = value;
}
inline static int32_t get_offset_of_Add_87() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Add_87)); }
inline OpCode_t123070264 get_Add_87() const { return ___Add_87; }
inline OpCode_t123070264 * get_address_of_Add_87() { return &___Add_87; }
inline void set_Add_87(OpCode_t123070264 value)
{
___Add_87 = value;
}
inline static int32_t get_offset_of_Sub_88() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Sub_88)); }
inline OpCode_t123070264 get_Sub_88() const { return ___Sub_88; }
inline OpCode_t123070264 * get_address_of_Sub_88() { return &___Sub_88; }
inline void set_Sub_88(OpCode_t123070264 value)
{
___Sub_88 = value;
}
inline static int32_t get_offset_of_Mul_89() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Mul_89)); }
inline OpCode_t123070264 get_Mul_89() const { return ___Mul_89; }
inline OpCode_t123070264 * get_address_of_Mul_89() { return &___Mul_89; }
inline void set_Mul_89(OpCode_t123070264 value)
{
___Mul_89 = value;
}
inline static int32_t get_offset_of_Div_90() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Div_90)); }
inline OpCode_t123070264 get_Div_90() const { return ___Div_90; }
inline OpCode_t123070264 * get_address_of_Div_90() { return &___Div_90; }
inline void set_Div_90(OpCode_t123070264 value)
{
___Div_90 = value;
}
inline static int32_t get_offset_of_Div_Un_91() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Div_Un_91)); }
inline OpCode_t123070264 get_Div_Un_91() const { return ___Div_Un_91; }
inline OpCode_t123070264 * get_address_of_Div_Un_91() { return &___Div_Un_91; }
inline void set_Div_Un_91(OpCode_t123070264 value)
{
___Div_Un_91 = value;
}
inline static int32_t get_offset_of_Rem_92() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Rem_92)); }
inline OpCode_t123070264 get_Rem_92() const { return ___Rem_92; }
inline OpCode_t123070264 * get_address_of_Rem_92() { return &___Rem_92; }
inline void set_Rem_92(OpCode_t123070264 value)
{
___Rem_92 = value;
}
inline static int32_t get_offset_of_Rem_Un_93() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Rem_Un_93)); }
inline OpCode_t123070264 get_Rem_Un_93() const { return ___Rem_Un_93; }
inline OpCode_t123070264 * get_address_of_Rem_Un_93() { return &___Rem_Un_93; }
inline void set_Rem_Un_93(OpCode_t123070264 value)
{
___Rem_Un_93 = value;
}
inline static int32_t get_offset_of_And_94() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___And_94)); }
inline OpCode_t123070264 get_And_94() const { return ___And_94; }
inline OpCode_t123070264 * get_address_of_And_94() { return &___And_94; }
inline void set_And_94(OpCode_t123070264 value)
{
___And_94 = value;
}
inline static int32_t get_offset_of_Or_95() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Or_95)); }
inline OpCode_t123070264 get_Or_95() const { return ___Or_95; }
inline OpCode_t123070264 * get_address_of_Or_95() { return &___Or_95; }
inline void set_Or_95(OpCode_t123070264 value)
{
___Or_95 = value;
}
inline static int32_t get_offset_of_Xor_96() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Xor_96)); }
inline OpCode_t123070264 get_Xor_96() const { return ___Xor_96; }
inline OpCode_t123070264 * get_address_of_Xor_96() { return &___Xor_96; }
inline void set_Xor_96(OpCode_t123070264 value)
{
___Xor_96 = value;
}
inline static int32_t get_offset_of_Shl_97() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Shl_97)); }
inline OpCode_t123070264 get_Shl_97() const { return ___Shl_97; }
inline OpCode_t123070264 * get_address_of_Shl_97() { return &___Shl_97; }
inline void set_Shl_97(OpCode_t123070264 value)
{
___Shl_97 = value;
}
inline static int32_t get_offset_of_Shr_98() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Shr_98)); }
inline OpCode_t123070264 get_Shr_98() const { return ___Shr_98; }
inline OpCode_t123070264 * get_address_of_Shr_98() { return &___Shr_98; }
inline void set_Shr_98(OpCode_t123070264 value)
{
___Shr_98 = value;
}
inline static int32_t get_offset_of_Shr_Un_99() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Shr_Un_99)); }
inline OpCode_t123070264 get_Shr_Un_99() const { return ___Shr_Un_99; }
inline OpCode_t123070264 * get_address_of_Shr_Un_99() { return &___Shr_Un_99; }
inline void set_Shr_Un_99(OpCode_t123070264 value)
{
___Shr_Un_99 = value;
}
inline static int32_t get_offset_of_Neg_100() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Neg_100)); }
inline OpCode_t123070264 get_Neg_100() const { return ___Neg_100; }
inline OpCode_t123070264 * get_address_of_Neg_100() { return &___Neg_100; }
inline void set_Neg_100(OpCode_t123070264 value)
{
___Neg_100 = value;
}
inline static int32_t get_offset_of_Not_101() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Not_101)); }
inline OpCode_t123070264 get_Not_101() const { return ___Not_101; }
inline OpCode_t123070264 * get_address_of_Not_101() { return &___Not_101; }
inline void set_Not_101(OpCode_t123070264 value)
{
___Not_101 = value;
}
inline static int32_t get_offset_of_Conv_I1_102() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_I1_102)); }
inline OpCode_t123070264 get_Conv_I1_102() const { return ___Conv_I1_102; }
inline OpCode_t123070264 * get_address_of_Conv_I1_102() { return &___Conv_I1_102; }
inline void set_Conv_I1_102(OpCode_t123070264 value)
{
___Conv_I1_102 = value;
}
inline static int32_t get_offset_of_Conv_I2_103() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_I2_103)); }
inline OpCode_t123070264 get_Conv_I2_103() const { return ___Conv_I2_103; }
inline OpCode_t123070264 * get_address_of_Conv_I2_103() { return &___Conv_I2_103; }
inline void set_Conv_I2_103(OpCode_t123070264 value)
{
___Conv_I2_103 = value;
}
inline static int32_t get_offset_of_Conv_I4_104() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_I4_104)); }
inline OpCode_t123070264 get_Conv_I4_104() const { return ___Conv_I4_104; }
inline OpCode_t123070264 * get_address_of_Conv_I4_104() { return &___Conv_I4_104; }
inline void set_Conv_I4_104(OpCode_t123070264 value)
{
___Conv_I4_104 = value;
}
inline static int32_t get_offset_of_Conv_I8_105() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_I8_105)); }
inline OpCode_t123070264 get_Conv_I8_105() const { return ___Conv_I8_105; }
inline OpCode_t123070264 * get_address_of_Conv_I8_105() { return &___Conv_I8_105; }
inline void set_Conv_I8_105(OpCode_t123070264 value)
{
___Conv_I8_105 = value;
}
inline static int32_t get_offset_of_Conv_R4_106() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_R4_106)); }
inline OpCode_t123070264 get_Conv_R4_106() const { return ___Conv_R4_106; }
inline OpCode_t123070264 * get_address_of_Conv_R4_106() { return &___Conv_R4_106; }
inline void set_Conv_R4_106(OpCode_t123070264 value)
{
___Conv_R4_106 = value;
}
inline static int32_t get_offset_of_Conv_R8_107() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_R8_107)); }
inline OpCode_t123070264 get_Conv_R8_107() const { return ___Conv_R8_107; }
inline OpCode_t123070264 * get_address_of_Conv_R8_107() { return &___Conv_R8_107; }
inline void set_Conv_R8_107(OpCode_t123070264 value)
{
___Conv_R8_107 = value;
}
inline static int32_t get_offset_of_Conv_U4_108() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_U4_108)); }
inline OpCode_t123070264 get_Conv_U4_108() const { return ___Conv_U4_108; }
inline OpCode_t123070264 * get_address_of_Conv_U4_108() { return &___Conv_U4_108; }
inline void set_Conv_U4_108(OpCode_t123070264 value)
{
___Conv_U4_108 = value;
}
inline static int32_t get_offset_of_Conv_U8_109() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_U8_109)); }
inline OpCode_t123070264 get_Conv_U8_109() const { return ___Conv_U8_109; }
inline OpCode_t123070264 * get_address_of_Conv_U8_109() { return &___Conv_U8_109; }
inline void set_Conv_U8_109(OpCode_t123070264 value)
{
___Conv_U8_109 = value;
}
inline static int32_t get_offset_of_Callvirt_110() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Callvirt_110)); }
inline OpCode_t123070264 get_Callvirt_110() const { return ___Callvirt_110; }
inline OpCode_t123070264 * get_address_of_Callvirt_110() { return &___Callvirt_110; }
inline void set_Callvirt_110(OpCode_t123070264 value)
{
___Callvirt_110 = value;
}
inline static int32_t get_offset_of_Cpobj_111() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Cpobj_111)); }
inline OpCode_t123070264 get_Cpobj_111() const { return ___Cpobj_111; }
inline OpCode_t123070264 * get_address_of_Cpobj_111() { return &___Cpobj_111; }
inline void set_Cpobj_111(OpCode_t123070264 value)
{
___Cpobj_111 = value;
}
inline static int32_t get_offset_of_Ldobj_112() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldobj_112)); }
inline OpCode_t123070264 get_Ldobj_112() const { return ___Ldobj_112; }
inline OpCode_t123070264 * get_address_of_Ldobj_112() { return &___Ldobj_112; }
inline void set_Ldobj_112(OpCode_t123070264 value)
{
___Ldobj_112 = value;
}
inline static int32_t get_offset_of_Ldstr_113() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldstr_113)); }
inline OpCode_t123070264 get_Ldstr_113() const { return ___Ldstr_113; }
inline OpCode_t123070264 * get_address_of_Ldstr_113() { return &___Ldstr_113; }
inline void set_Ldstr_113(OpCode_t123070264 value)
{
___Ldstr_113 = value;
}
inline static int32_t get_offset_of_Newobj_114() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Newobj_114)); }
inline OpCode_t123070264 get_Newobj_114() const { return ___Newobj_114; }
inline OpCode_t123070264 * get_address_of_Newobj_114() { return &___Newobj_114; }
inline void set_Newobj_114(OpCode_t123070264 value)
{
___Newobj_114 = value;
}
inline static int32_t get_offset_of_Castclass_115() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Castclass_115)); }
inline OpCode_t123070264 get_Castclass_115() const { return ___Castclass_115; }
inline OpCode_t123070264 * get_address_of_Castclass_115() { return &___Castclass_115; }
inline void set_Castclass_115(OpCode_t123070264 value)
{
___Castclass_115 = value;
}
inline static int32_t get_offset_of_Isinst_116() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Isinst_116)); }
inline OpCode_t123070264 get_Isinst_116() const { return ___Isinst_116; }
inline OpCode_t123070264 * get_address_of_Isinst_116() { return &___Isinst_116; }
inline void set_Isinst_116(OpCode_t123070264 value)
{
___Isinst_116 = value;
}
inline static int32_t get_offset_of_Conv_R_Un_117() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_R_Un_117)); }
inline OpCode_t123070264 get_Conv_R_Un_117() const { return ___Conv_R_Un_117; }
inline OpCode_t123070264 * get_address_of_Conv_R_Un_117() { return &___Conv_R_Un_117; }
inline void set_Conv_R_Un_117(OpCode_t123070264 value)
{
___Conv_R_Un_117 = value;
}
inline static int32_t get_offset_of_Unbox_118() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Unbox_118)); }
inline OpCode_t123070264 get_Unbox_118() const { return ___Unbox_118; }
inline OpCode_t123070264 * get_address_of_Unbox_118() { return &___Unbox_118; }
inline void set_Unbox_118(OpCode_t123070264 value)
{
___Unbox_118 = value;
}
inline static int32_t get_offset_of_Throw_119() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Throw_119)); }
inline OpCode_t123070264 get_Throw_119() const { return ___Throw_119; }
inline OpCode_t123070264 * get_address_of_Throw_119() { return &___Throw_119; }
inline void set_Throw_119(OpCode_t123070264 value)
{
___Throw_119 = value;
}
inline static int32_t get_offset_of_Ldfld_120() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldfld_120)); }
inline OpCode_t123070264 get_Ldfld_120() const { return ___Ldfld_120; }
inline OpCode_t123070264 * get_address_of_Ldfld_120() { return &___Ldfld_120; }
inline void set_Ldfld_120(OpCode_t123070264 value)
{
___Ldfld_120 = value;
}
inline static int32_t get_offset_of_Ldflda_121() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldflda_121)); }
inline OpCode_t123070264 get_Ldflda_121() const { return ___Ldflda_121; }
inline OpCode_t123070264 * get_address_of_Ldflda_121() { return &___Ldflda_121; }
inline void set_Ldflda_121(OpCode_t123070264 value)
{
___Ldflda_121 = value;
}
inline static int32_t get_offset_of_Stfld_122() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stfld_122)); }
inline OpCode_t123070264 get_Stfld_122() const { return ___Stfld_122; }
inline OpCode_t123070264 * get_address_of_Stfld_122() { return &___Stfld_122; }
inline void set_Stfld_122(OpCode_t123070264 value)
{
___Stfld_122 = value;
}
inline static int32_t get_offset_of_Ldsfld_123() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldsfld_123)); }
inline OpCode_t123070264 get_Ldsfld_123() const { return ___Ldsfld_123; }
inline OpCode_t123070264 * get_address_of_Ldsfld_123() { return &___Ldsfld_123; }
inline void set_Ldsfld_123(OpCode_t123070264 value)
{
___Ldsfld_123 = value;
}
inline static int32_t get_offset_of_Ldsflda_124() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldsflda_124)); }
inline OpCode_t123070264 get_Ldsflda_124() const { return ___Ldsflda_124; }
inline OpCode_t123070264 * get_address_of_Ldsflda_124() { return &___Ldsflda_124; }
inline void set_Ldsflda_124(OpCode_t123070264 value)
{
___Ldsflda_124 = value;
}
inline static int32_t get_offset_of_Stsfld_125() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stsfld_125)); }
inline OpCode_t123070264 get_Stsfld_125() const { return ___Stsfld_125; }
inline OpCode_t123070264 * get_address_of_Stsfld_125() { return &___Stsfld_125; }
inline void set_Stsfld_125(OpCode_t123070264 value)
{
___Stsfld_125 = value;
}
inline static int32_t get_offset_of_Stobj_126() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stobj_126)); }
inline OpCode_t123070264 get_Stobj_126() const { return ___Stobj_126; }
inline OpCode_t123070264 * get_address_of_Stobj_126() { return &___Stobj_126; }
inline void set_Stobj_126(OpCode_t123070264 value)
{
___Stobj_126 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I1_Un_127() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I1_Un_127)); }
inline OpCode_t123070264 get_Conv_Ovf_I1_Un_127() const { return ___Conv_Ovf_I1_Un_127; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I1_Un_127() { return &___Conv_Ovf_I1_Un_127; }
inline void set_Conv_Ovf_I1_Un_127(OpCode_t123070264 value)
{
___Conv_Ovf_I1_Un_127 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I2_Un_128() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I2_Un_128)); }
inline OpCode_t123070264 get_Conv_Ovf_I2_Un_128() const { return ___Conv_Ovf_I2_Un_128; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I2_Un_128() { return &___Conv_Ovf_I2_Un_128; }
inline void set_Conv_Ovf_I2_Un_128(OpCode_t123070264 value)
{
___Conv_Ovf_I2_Un_128 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I4_Un_129() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I4_Un_129)); }
inline OpCode_t123070264 get_Conv_Ovf_I4_Un_129() const { return ___Conv_Ovf_I4_Un_129; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I4_Un_129() { return &___Conv_Ovf_I4_Un_129; }
inline void set_Conv_Ovf_I4_Un_129(OpCode_t123070264 value)
{
___Conv_Ovf_I4_Un_129 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I8_Un_130() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I8_Un_130)); }
inline OpCode_t123070264 get_Conv_Ovf_I8_Un_130() const { return ___Conv_Ovf_I8_Un_130; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I8_Un_130() { return &___Conv_Ovf_I8_Un_130; }
inline void set_Conv_Ovf_I8_Un_130(OpCode_t123070264 value)
{
___Conv_Ovf_I8_Un_130 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U1_Un_131() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U1_Un_131)); }
inline OpCode_t123070264 get_Conv_Ovf_U1_Un_131() const { return ___Conv_Ovf_U1_Un_131; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U1_Un_131() { return &___Conv_Ovf_U1_Un_131; }
inline void set_Conv_Ovf_U1_Un_131(OpCode_t123070264 value)
{
___Conv_Ovf_U1_Un_131 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U2_Un_132() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U2_Un_132)); }
inline OpCode_t123070264 get_Conv_Ovf_U2_Un_132() const { return ___Conv_Ovf_U2_Un_132; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U2_Un_132() { return &___Conv_Ovf_U2_Un_132; }
inline void set_Conv_Ovf_U2_Un_132(OpCode_t123070264 value)
{
___Conv_Ovf_U2_Un_132 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U4_Un_133() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U4_Un_133)); }
inline OpCode_t123070264 get_Conv_Ovf_U4_Un_133() const { return ___Conv_Ovf_U4_Un_133; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U4_Un_133() { return &___Conv_Ovf_U4_Un_133; }
inline void set_Conv_Ovf_U4_Un_133(OpCode_t123070264 value)
{
___Conv_Ovf_U4_Un_133 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U8_Un_134() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U8_Un_134)); }
inline OpCode_t123070264 get_Conv_Ovf_U8_Un_134() const { return ___Conv_Ovf_U8_Un_134; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U8_Un_134() { return &___Conv_Ovf_U8_Un_134; }
inline void set_Conv_Ovf_U8_Un_134(OpCode_t123070264 value)
{
___Conv_Ovf_U8_Un_134 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I_Un_135() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I_Un_135)); }
inline OpCode_t123070264 get_Conv_Ovf_I_Un_135() const { return ___Conv_Ovf_I_Un_135; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I_Un_135() { return &___Conv_Ovf_I_Un_135; }
inline void set_Conv_Ovf_I_Un_135(OpCode_t123070264 value)
{
___Conv_Ovf_I_Un_135 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U_Un_136() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U_Un_136)); }
inline OpCode_t123070264 get_Conv_Ovf_U_Un_136() const { return ___Conv_Ovf_U_Un_136; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U_Un_136() { return &___Conv_Ovf_U_Un_136; }
inline void set_Conv_Ovf_U_Un_136(OpCode_t123070264 value)
{
___Conv_Ovf_U_Un_136 = value;
}
inline static int32_t get_offset_of_Box_137() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Box_137)); }
inline OpCode_t123070264 get_Box_137() const { return ___Box_137; }
inline OpCode_t123070264 * get_address_of_Box_137() { return &___Box_137; }
inline void set_Box_137(OpCode_t123070264 value)
{
___Box_137 = value;
}
inline static int32_t get_offset_of_Newarr_138() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Newarr_138)); }
inline OpCode_t123070264 get_Newarr_138() const { return ___Newarr_138; }
inline OpCode_t123070264 * get_address_of_Newarr_138() { return &___Newarr_138; }
inline void set_Newarr_138(OpCode_t123070264 value)
{
___Newarr_138 = value;
}
inline static int32_t get_offset_of_Ldlen_139() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldlen_139)); }
inline OpCode_t123070264 get_Ldlen_139() const { return ___Ldlen_139; }
inline OpCode_t123070264 * get_address_of_Ldlen_139() { return &___Ldlen_139; }
inline void set_Ldlen_139(OpCode_t123070264 value)
{
___Ldlen_139 = value;
}
inline static int32_t get_offset_of_Ldelema_140() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelema_140)); }
inline OpCode_t123070264 get_Ldelema_140() const { return ___Ldelema_140; }
inline OpCode_t123070264 * get_address_of_Ldelema_140() { return &___Ldelema_140; }
inline void set_Ldelema_140(OpCode_t123070264 value)
{
___Ldelema_140 = value;
}
inline static int32_t get_offset_of_Ldelem_I1_141() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_I1_141)); }
inline OpCode_t123070264 get_Ldelem_I1_141() const { return ___Ldelem_I1_141; }
inline OpCode_t123070264 * get_address_of_Ldelem_I1_141() { return &___Ldelem_I1_141; }
inline void set_Ldelem_I1_141(OpCode_t123070264 value)
{
___Ldelem_I1_141 = value;
}
inline static int32_t get_offset_of_Ldelem_U1_142() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_U1_142)); }
inline OpCode_t123070264 get_Ldelem_U1_142() const { return ___Ldelem_U1_142; }
inline OpCode_t123070264 * get_address_of_Ldelem_U1_142() { return &___Ldelem_U1_142; }
inline void set_Ldelem_U1_142(OpCode_t123070264 value)
{
___Ldelem_U1_142 = value;
}
inline static int32_t get_offset_of_Ldelem_I2_143() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_I2_143)); }
inline OpCode_t123070264 get_Ldelem_I2_143() const { return ___Ldelem_I2_143; }
inline OpCode_t123070264 * get_address_of_Ldelem_I2_143() { return &___Ldelem_I2_143; }
inline void set_Ldelem_I2_143(OpCode_t123070264 value)
{
___Ldelem_I2_143 = value;
}
inline static int32_t get_offset_of_Ldelem_U2_144() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_U2_144)); }
inline OpCode_t123070264 get_Ldelem_U2_144() const { return ___Ldelem_U2_144; }
inline OpCode_t123070264 * get_address_of_Ldelem_U2_144() { return &___Ldelem_U2_144; }
inline void set_Ldelem_U2_144(OpCode_t123070264 value)
{
___Ldelem_U2_144 = value;
}
inline static int32_t get_offset_of_Ldelem_I4_145() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_I4_145)); }
inline OpCode_t123070264 get_Ldelem_I4_145() const { return ___Ldelem_I4_145; }
inline OpCode_t123070264 * get_address_of_Ldelem_I4_145() { return &___Ldelem_I4_145; }
inline void set_Ldelem_I4_145(OpCode_t123070264 value)
{
___Ldelem_I4_145 = value;
}
inline static int32_t get_offset_of_Ldelem_U4_146() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_U4_146)); }
inline OpCode_t123070264 get_Ldelem_U4_146() const { return ___Ldelem_U4_146; }
inline OpCode_t123070264 * get_address_of_Ldelem_U4_146() { return &___Ldelem_U4_146; }
inline void set_Ldelem_U4_146(OpCode_t123070264 value)
{
___Ldelem_U4_146 = value;
}
inline static int32_t get_offset_of_Ldelem_I8_147() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_I8_147)); }
inline OpCode_t123070264 get_Ldelem_I8_147() const { return ___Ldelem_I8_147; }
inline OpCode_t123070264 * get_address_of_Ldelem_I8_147() { return &___Ldelem_I8_147; }
inline void set_Ldelem_I8_147(OpCode_t123070264 value)
{
___Ldelem_I8_147 = value;
}
inline static int32_t get_offset_of_Ldelem_I_148() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_I_148)); }
inline OpCode_t123070264 get_Ldelem_I_148() const { return ___Ldelem_I_148; }
inline OpCode_t123070264 * get_address_of_Ldelem_I_148() { return &___Ldelem_I_148; }
inline void set_Ldelem_I_148(OpCode_t123070264 value)
{
___Ldelem_I_148 = value;
}
inline static int32_t get_offset_of_Ldelem_R4_149() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_R4_149)); }
inline OpCode_t123070264 get_Ldelem_R4_149() const { return ___Ldelem_R4_149; }
inline OpCode_t123070264 * get_address_of_Ldelem_R4_149() { return &___Ldelem_R4_149; }
inline void set_Ldelem_R4_149(OpCode_t123070264 value)
{
___Ldelem_R4_149 = value;
}
inline static int32_t get_offset_of_Ldelem_R8_150() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_R8_150)); }
inline OpCode_t123070264 get_Ldelem_R8_150() const { return ___Ldelem_R8_150; }
inline OpCode_t123070264 * get_address_of_Ldelem_R8_150() { return &___Ldelem_R8_150; }
inline void set_Ldelem_R8_150(OpCode_t123070264 value)
{
___Ldelem_R8_150 = value;
}
inline static int32_t get_offset_of_Ldelem_Ref_151() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_Ref_151)); }
inline OpCode_t123070264 get_Ldelem_Ref_151() const { return ___Ldelem_Ref_151; }
inline OpCode_t123070264 * get_address_of_Ldelem_Ref_151() { return &___Ldelem_Ref_151; }
inline void set_Ldelem_Ref_151(OpCode_t123070264 value)
{
___Ldelem_Ref_151 = value;
}
inline static int32_t get_offset_of_Stelem_I_152() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_I_152)); }
inline OpCode_t123070264 get_Stelem_I_152() const { return ___Stelem_I_152; }
inline OpCode_t123070264 * get_address_of_Stelem_I_152() { return &___Stelem_I_152; }
inline void set_Stelem_I_152(OpCode_t123070264 value)
{
___Stelem_I_152 = value;
}
inline static int32_t get_offset_of_Stelem_I1_153() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_I1_153)); }
inline OpCode_t123070264 get_Stelem_I1_153() const { return ___Stelem_I1_153; }
inline OpCode_t123070264 * get_address_of_Stelem_I1_153() { return &___Stelem_I1_153; }
inline void set_Stelem_I1_153(OpCode_t123070264 value)
{
___Stelem_I1_153 = value;
}
inline static int32_t get_offset_of_Stelem_I2_154() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_I2_154)); }
inline OpCode_t123070264 get_Stelem_I2_154() const { return ___Stelem_I2_154; }
inline OpCode_t123070264 * get_address_of_Stelem_I2_154() { return &___Stelem_I2_154; }
inline void set_Stelem_I2_154(OpCode_t123070264 value)
{
___Stelem_I2_154 = value;
}
inline static int32_t get_offset_of_Stelem_I4_155() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_I4_155)); }
inline OpCode_t123070264 get_Stelem_I4_155() const { return ___Stelem_I4_155; }
inline OpCode_t123070264 * get_address_of_Stelem_I4_155() { return &___Stelem_I4_155; }
inline void set_Stelem_I4_155(OpCode_t123070264 value)
{
___Stelem_I4_155 = value;
}
inline static int32_t get_offset_of_Stelem_I8_156() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_I8_156)); }
inline OpCode_t123070264 get_Stelem_I8_156() const { return ___Stelem_I8_156; }
inline OpCode_t123070264 * get_address_of_Stelem_I8_156() { return &___Stelem_I8_156; }
inline void set_Stelem_I8_156(OpCode_t123070264 value)
{
___Stelem_I8_156 = value;
}
inline static int32_t get_offset_of_Stelem_R4_157() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_R4_157)); }
inline OpCode_t123070264 get_Stelem_R4_157() const { return ___Stelem_R4_157; }
inline OpCode_t123070264 * get_address_of_Stelem_R4_157() { return &___Stelem_R4_157; }
inline void set_Stelem_R4_157(OpCode_t123070264 value)
{
___Stelem_R4_157 = value;
}
inline static int32_t get_offset_of_Stelem_R8_158() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_R8_158)); }
inline OpCode_t123070264 get_Stelem_R8_158() const { return ___Stelem_R8_158; }
inline OpCode_t123070264 * get_address_of_Stelem_R8_158() { return &___Stelem_R8_158; }
inline void set_Stelem_R8_158(OpCode_t123070264 value)
{
___Stelem_R8_158 = value;
}
inline static int32_t get_offset_of_Stelem_Ref_159() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_Ref_159)); }
inline OpCode_t123070264 get_Stelem_Ref_159() const { return ___Stelem_Ref_159; }
inline OpCode_t123070264 * get_address_of_Stelem_Ref_159() { return &___Stelem_Ref_159; }
inline void set_Stelem_Ref_159(OpCode_t123070264 value)
{
___Stelem_Ref_159 = value;
}
inline static int32_t get_offset_of_Ldelem_160() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldelem_160)); }
inline OpCode_t123070264 get_Ldelem_160() const { return ___Ldelem_160; }
inline OpCode_t123070264 * get_address_of_Ldelem_160() { return &___Ldelem_160; }
inline void set_Ldelem_160(OpCode_t123070264 value)
{
___Ldelem_160 = value;
}
inline static int32_t get_offset_of_Stelem_161() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stelem_161)); }
inline OpCode_t123070264 get_Stelem_161() const { return ___Stelem_161; }
inline OpCode_t123070264 * get_address_of_Stelem_161() { return &___Stelem_161; }
inline void set_Stelem_161(OpCode_t123070264 value)
{
___Stelem_161 = value;
}
inline static int32_t get_offset_of_Unbox_Any_162() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Unbox_Any_162)); }
inline OpCode_t123070264 get_Unbox_Any_162() const { return ___Unbox_Any_162; }
inline OpCode_t123070264 * get_address_of_Unbox_Any_162() { return &___Unbox_Any_162; }
inline void set_Unbox_Any_162(OpCode_t123070264 value)
{
___Unbox_Any_162 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I1_163() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I1_163)); }
inline OpCode_t123070264 get_Conv_Ovf_I1_163() const { return ___Conv_Ovf_I1_163; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I1_163() { return &___Conv_Ovf_I1_163; }
inline void set_Conv_Ovf_I1_163(OpCode_t123070264 value)
{
___Conv_Ovf_I1_163 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U1_164() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U1_164)); }
inline OpCode_t123070264 get_Conv_Ovf_U1_164() const { return ___Conv_Ovf_U1_164; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U1_164() { return &___Conv_Ovf_U1_164; }
inline void set_Conv_Ovf_U1_164(OpCode_t123070264 value)
{
___Conv_Ovf_U1_164 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I2_165() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I2_165)); }
inline OpCode_t123070264 get_Conv_Ovf_I2_165() const { return ___Conv_Ovf_I2_165; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I2_165() { return &___Conv_Ovf_I2_165; }
inline void set_Conv_Ovf_I2_165(OpCode_t123070264 value)
{
___Conv_Ovf_I2_165 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U2_166() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U2_166)); }
inline OpCode_t123070264 get_Conv_Ovf_U2_166() const { return ___Conv_Ovf_U2_166; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U2_166() { return &___Conv_Ovf_U2_166; }
inline void set_Conv_Ovf_U2_166(OpCode_t123070264 value)
{
___Conv_Ovf_U2_166 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I4_167() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I4_167)); }
inline OpCode_t123070264 get_Conv_Ovf_I4_167() const { return ___Conv_Ovf_I4_167; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I4_167() { return &___Conv_Ovf_I4_167; }
inline void set_Conv_Ovf_I4_167(OpCode_t123070264 value)
{
___Conv_Ovf_I4_167 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U4_168() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U4_168)); }
inline OpCode_t123070264 get_Conv_Ovf_U4_168() const { return ___Conv_Ovf_U4_168; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U4_168() { return &___Conv_Ovf_U4_168; }
inline void set_Conv_Ovf_U4_168(OpCode_t123070264 value)
{
___Conv_Ovf_U4_168 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I8_169() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I8_169)); }
inline OpCode_t123070264 get_Conv_Ovf_I8_169() const { return ___Conv_Ovf_I8_169; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I8_169() { return &___Conv_Ovf_I8_169; }
inline void set_Conv_Ovf_I8_169(OpCode_t123070264 value)
{
___Conv_Ovf_I8_169 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U8_170() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U8_170)); }
inline OpCode_t123070264 get_Conv_Ovf_U8_170() const { return ___Conv_Ovf_U8_170; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U8_170() { return &___Conv_Ovf_U8_170; }
inline void set_Conv_Ovf_U8_170(OpCode_t123070264 value)
{
___Conv_Ovf_U8_170 = value;
}
inline static int32_t get_offset_of_Refanyval_171() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Refanyval_171)); }
inline OpCode_t123070264 get_Refanyval_171() const { return ___Refanyval_171; }
inline OpCode_t123070264 * get_address_of_Refanyval_171() { return &___Refanyval_171; }
inline void set_Refanyval_171(OpCode_t123070264 value)
{
___Refanyval_171 = value;
}
inline static int32_t get_offset_of_Ckfinite_172() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ckfinite_172)); }
inline OpCode_t123070264 get_Ckfinite_172() const { return ___Ckfinite_172; }
inline OpCode_t123070264 * get_address_of_Ckfinite_172() { return &___Ckfinite_172; }
inline void set_Ckfinite_172(OpCode_t123070264 value)
{
___Ckfinite_172 = value;
}
inline static int32_t get_offset_of_Mkrefany_173() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Mkrefany_173)); }
inline OpCode_t123070264 get_Mkrefany_173() const { return ___Mkrefany_173; }
inline OpCode_t123070264 * get_address_of_Mkrefany_173() { return &___Mkrefany_173; }
inline void set_Mkrefany_173(OpCode_t123070264 value)
{
___Mkrefany_173 = value;
}
inline static int32_t get_offset_of_Ldtoken_174() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldtoken_174)); }
inline OpCode_t123070264 get_Ldtoken_174() const { return ___Ldtoken_174; }
inline OpCode_t123070264 * get_address_of_Ldtoken_174() { return &___Ldtoken_174; }
inline void set_Ldtoken_174(OpCode_t123070264 value)
{
___Ldtoken_174 = value;
}
inline static int32_t get_offset_of_Conv_U2_175() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_U2_175)); }
inline OpCode_t123070264 get_Conv_U2_175() const { return ___Conv_U2_175; }
inline OpCode_t123070264 * get_address_of_Conv_U2_175() { return &___Conv_U2_175; }
inline void set_Conv_U2_175(OpCode_t123070264 value)
{
___Conv_U2_175 = value;
}
inline static int32_t get_offset_of_Conv_U1_176() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_U1_176)); }
inline OpCode_t123070264 get_Conv_U1_176() const { return ___Conv_U1_176; }
inline OpCode_t123070264 * get_address_of_Conv_U1_176() { return &___Conv_U1_176; }
inline void set_Conv_U1_176(OpCode_t123070264 value)
{
___Conv_U1_176 = value;
}
inline static int32_t get_offset_of_Conv_I_177() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_I_177)); }
inline OpCode_t123070264 get_Conv_I_177() const { return ___Conv_I_177; }
inline OpCode_t123070264 * get_address_of_Conv_I_177() { return &___Conv_I_177; }
inline void set_Conv_I_177(OpCode_t123070264 value)
{
___Conv_I_177 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_I_178() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_I_178)); }
inline OpCode_t123070264 get_Conv_Ovf_I_178() const { return ___Conv_Ovf_I_178; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_I_178() { return &___Conv_Ovf_I_178; }
inline void set_Conv_Ovf_I_178(OpCode_t123070264 value)
{
___Conv_Ovf_I_178 = value;
}
inline static int32_t get_offset_of_Conv_Ovf_U_179() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_Ovf_U_179)); }
inline OpCode_t123070264 get_Conv_Ovf_U_179() const { return ___Conv_Ovf_U_179; }
inline OpCode_t123070264 * get_address_of_Conv_Ovf_U_179() { return &___Conv_Ovf_U_179; }
inline void set_Conv_Ovf_U_179(OpCode_t123070264 value)
{
___Conv_Ovf_U_179 = value;
}
inline static int32_t get_offset_of_Add_Ovf_180() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Add_Ovf_180)); }
inline OpCode_t123070264 get_Add_Ovf_180() const { return ___Add_Ovf_180; }
inline OpCode_t123070264 * get_address_of_Add_Ovf_180() { return &___Add_Ovf_180; }
inline void set_Add_Ovf_180(OpCode_t123070264 value)
{
___Add_Ovf_180 = value;
}
inline static int32_t get_offset_of_Add_Ovf_Un_181() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Add_Ovf_Un_181)); }
inline OpCode_t123070264 get_Add_Ovf_Un_181() const { return ___Add_Ovf_Un_181; }
inline OpCode_t123070264 * get_address_of_Add_Ovf_Un_181() { return &___Add_Ovf_Un_181; }
inline void set_Add_Ovf_Un_181(OpCode_t123070264 value)
{
___Add_Ovf_Un_181 = value;
}
inline static int32_t get_offset_of_Mul_Ovf_182() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Mul_Ovf_182)); }
inline OpCode_t123070264 get_Mul_Ovf_182() const { return ___Mul_Ovf_182; }
inline OpCode_t123070264 * get_address_of_Mul_Ovf_182() { return &___Mul_Ovf_182; }
inline void set_Mul_Ovf_182(OpCode_t123070264 value)
{
___Mul_Ovf_182 = value;
}
inline static int32_t get_offset_of_Mul_Ovf_Un_183() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Mul_Ovf_Un_183)); }
inline OpCode_t123070264 get_Mul_Ovf_Un_183() const { return ___Mul_Ovf_Un_183; }
inline OpCode_t123070264 * get_address_of_Mul_Ovf_Un_183() { return &___Mul_Ovf_Un_183; }
inline void set_Mul_Ovf_Un_183(OpCode_t123070264 value)
{
___Mul_Ovf_Un_183 = value;
}
inline static int32_t get_offset_of_Sub_Ovf_184() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Sub_Ovf_184)); }
inline OpCode_t123070264 get_Sub_Ovf_184() const { return ___Sub_Ovf_184; }
inline OpCode_t123070264 * get_address_of_Sub_Ovf_184() { return &___Sub_Ovf_184; }
inline void set_Sub_Ovf_184(OpCode_t123070264 value)
{
___Sub_Ovf_184 = value;
}
inline static int32_t get_offset_of_Sub_Ovf_Un_185() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Sub_Ovf_Un_185)); }
inline OpCode_t123070264 get_Sub_Ovf_Un_185() const { return ___Sub_Ovf_Un_185; }
inline OpCode_t123070264 * get_address_of_Sub_Ovf_Un_185() { return &___Sub_Ovf_Un_185; }
inline void set_Sub_Ovf_Un_185(OpCode_t123070264 value)
{
___Sub_Ovf_Un_185 = value;
}
inline static int32_t get_offset_of_Endfinally_186() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Endfinally_186)); }
inline OpCode_t123070264 get_Endfinally_186() const { return ___Endfinally_186; }
inline OpCode_t123070264 * get_address_of_Endfinally_186() { return &___Endfinally_186; }
inline void set_Endfinally_186(OpCode_t123070264 value)
{
___Endfinally_186 = value;
}
inline static int32_t get_offset_of_Leave_187() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Leave_187)); }
inline OpCode_t123070264 get_Leave_187() const { return ___Leave_187; }
inline OpCode_t123070264 * get_address_of_Leave_187() { return &___Leave_187; }
inline void set_Leave_187(OpCode_t123070264 value)
{
___Leave_187 = value;
}
inline static int32_t get_offset_of_Leave_S_188() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Leave_S_188)); }
inline OpCode_t123070264 get_Leave_S_188() const { return ___Leave_S_188; }
inline OpCode_t123070264 * get_address_of_Leave_S_188() { return &___Leave_S_188; }
inline void set_Leave_S_188(OpCode_t123070264 value)
{
___Leave_S_188 = value;
}
inline static int32_t get_offset_of_Stind_I_189() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stind_I_189)); }
inline OpCode_t123070264 get_Stind_I_189() const { return ___Stind_I_189; }
inline OpCode_t123070264 * get_address_of_Stind_I_189() { return &___Stind_I_189; }
inline void set_Stind_I_189(OpCode_t123070264 value)
{
___Stind_I_189 = value;
}
inline static int32_t get_offset_of_Conv_U_190() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Conv_U_190)); }
inline OpCode_t123070264 get_Conv_U_190() const { return ___Conv_U_190; }
inline OpCode_t123070264 * get_address_of_Conv_U_190() { return &___Conv_U_190; }
inline void set_Conv_U_190(OpCode_t123070264 value)
{
___Conv_U_190 = value;
}
inline static int32_t get_offset_of_Prefix7_191() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Prefix7_191)); }
inline OpCode_t123070264 get_Prefix7_191() const { return ___Prefix7_191; }
inline OpCode_t123070264 * get_address_of_Prefix7_191() { return &___Prefix7_191; }
inline void set_Prefix7_191(OpCode_t123070264 value)
{
___Prefix7_191 = value;
}
inline static int32_t get_offset_of_Prefix6_192() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Prefix6_192)); }
inline OpCode_t123070264 get_Prefix6_192() const { return ___Prefix6_192; }
inline OpCode_t123070264 * get_address_of_Prefix6_192() { return &___Prefix6_192; }
inline void set_Prefix6_192(OpCode_t123070264 value)
{
___Prefix6_192 = value;
}
inline static int32_t get_offset_of_Prefix5_193() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Prefix5_193)); }
inline OpCode_t123070264 get_Prefix5_193() const { return ___Prefix5_193; }
inline OpCode_t123070264 * get_address_of_Prefix5_193() { return &___Prefix5_193; }
inline void set_Prefix5_193(OpCode_t123070264 value)
{
___Prefix5_193 = value;
}
inline static int32_t get_offset_of_Prefix4_194() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Prefix4_194)); }
inline OpCode_t123070264 get_Prefix4_194() const { return ___Prefix4_194; }
inline OpCode_t123070264 * get_address_of_Prefix4_194() { return &___Prefix4_194; }
inline void set_Prefix4_194(OpCode_t123070264 value)
{
___Prefix4_194 = value;
}
inline static int32_t get_offset_of_Prefix3_195() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Prefix3_195)); }
inline OpCode_t123070264 get_Prefix3_195() const { return ___Prefix3_195; }
inline OpCode_t123070264 * get_address_of_Prefix3_195() { return &___Prefix3_195; }
inline void set_Prefix3_195(OpCode_t123070264 value)
{
___Prefix3_195 = value;
}
inline static int32_t get_offset_of_Prefix2_196() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Prefix2_196)); }
inline OpCode_t123070264 get_Prefix2_196() const { return ___Prefix2_196; }
inline OpCode_t123070264 * get_address_of_Prefix2_196() { return &___Prefix2_196; }
inline void set_Prefix2_196(OpCode_t123070264 value)
{
___Prefix2_196 = value;
}
inline static int32_t get_offset_of_Prefix1_197() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Prefix1_197)); }
inline OpCode_t123070264 get_Prefix1_197() const { return ___Prefix1_197; }
inline OpCode_t123070264 * get_address_of_Prefix1_197() { return &___Prefix1_197; }
inline void set_Prefix1_197(OpCode_t123070264 value)
{
___Prefix1_197 = value;
}
inline static int32_t get_offset_of_Prefixref_198() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Prefixref_198)); }
inline OpCode_t123070264 get_Prefixref_198() const { return ___Prefixref_198; }
inline OpCode_t123070264 * get_address_of_Prefixref_198() { return &___Prefixref_198; }
inline void set_Prefixref_198(OpCode_t123070264 value)
{
___Prefixref_198 = value;
}
inline static int32_t get_offset_of_Arglist_199() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Arglist_199)); }
inline OpCode_t123070264 get_Arglist_199() const { return ___Arglist_199; }
inline OpCode_t123070264 * get_address_of_Arglist_199() { return &___Arglist_199; }
inline void set_Arglist_199(OpCode_t123070264 value)
{
___Arglist_199 = value;
}
inline static int32_t get_offset_of_Ceq_200() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ceq_200)); }
inline OpCode_t123070264 get_Ceq_200() const { return ___Ceq_200; }
inline OpCode_t123070264 * get_address_of_Ceq_200() { return &___Ceq_200; }
inline void set_Ceq_200(OpCode_t123070264 value)
{
___Ceq_200 = value;
}
inline static int32_t get_offset_of_Cgt_201() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Cgt_201)); }
inline OpCode_t123070264 get_Cgt_201() const { return ___Cgt_201; }
inline OpCode_t123070264 * get_address_of_Cgt_201() { return &___Cgt_201; }
inline void set_Cgt_201(OpCode_t123070264 value)
{
___Cgt_201 = value;
}
inline static int32_t get_offset_of_Cgt_Un_202() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Cgt_Un_202)); }
inline OpCode_t123070264 get_Cgt_Un_202() const { return ___Cgt_Un_202; }
inline OpCode_t123070264 * get_address_of_Cgt_Un_202() { return &___Cgt_Un_202; }
inline void set_Cgt_Un_202(OpCode_t123070264 value)
{
___Cgt_Un_202 = value;
}
inline static int32_t get_offset_of_Clt_203() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Clt_203)); }
inline OpCode_t123070264 get_Clt_203() const { return ___Clt_203; }
inline OpCode_t123070264 * get_address_of_Clt_203() { return &___Clt_203; }
inline void set_Clt_203(OpCode_t123070264 value)
{
___Clt_203 = value;
}
inline static int32_t get_offset_of_Clt_Un_204() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Clt_Un_204)); }
inline OpCode_t123070264 get_Clt_Un_204() const { return ___Clt_Un_204; }
inline OpCode_t123070264 * get_address_of_Clt_Un_204() { return &___Clt_Un_204; }
inline void set_Clt_Un_204(OpCode_t123070264 value)
{
___Clt_Un_204 = value;
}
inline static int32_t get_offset_of_Ldftn_205() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldftn_205)); }
inline OpCode_t123070264 get_Ldftn_205() const { return ___Ldftn_205; }
inline OpCode_t123070264 * get_address_of_Ldftn_205() { return &___Ldftn_205; }
inline void set_Ldftn_205(OpCode_t123070264 value)
{
___Ldftn_205 = value;
}
inline static int32_t get_offset_of_Ldvirtftn_206() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldvirtftn_206)); }
inline OpCode_t123070264 get_Ldvirtftn_206() const { return ___Ldvirtftn_206; }
inline OpCode_t123070264 * get_address_of_Ldvirtftn_206() { return &___Ldvirtftn_206; }
inline void set_Ldvirtftn_206(OpCode_t123070264 value)
{
___Ldvirtftn_206 = value;
}
inline static int32_t get_offset_of_Ldarg_207() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldarg_207)); }
inline OpCode_t123070264 get_Ldarg_207() const { return ___Ldarg_207; }
inline OpCode_t123070264 * get_address_of_Ldarg_207() { return &___Ldarg_207; }
inline void set_Ldarg_207(OpCode_t123070264 value)
{
___Ldarg_207 = value;
}
inline static int32_t get_offset_of_Ldarga_208() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldarga_208)); }
inline OpCode_t123070264 get_Ldarga_208() const { return ___Ldarga_208; }
inline OpCode_t123070264 * get_address_of_Ldarga_208() { return &___Ldarga_208; }
inline void set_Ldarga_208(OpCode_t123070264 value)
{
___Ldarga_208 = value;
}
inline static int32_t get_offset_of_Starg_209() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Starg_209)); }
inline OpCode_t123070264 get_Starg_209() const { return ___Starg_209; }
inline OpCode_t123070264 * get_address_of_Starg_209() { return &___Starg_209; }
inline void set_Starg_209(OpCode_t123070264 value)
{
___Starg_209 = value;
}
inline static int32_t get_offset_of_Ldloc_210() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldloc_210)); }
inline OpCode_t123070264 get_Ldloc_210() const { return ___Ldloc_210; }
inline OpCode_t123070264 * get_address_of_Ldloc_210() { return &___Ldloc_210; }
inline void set_Ldloc_210(OpCode_t123070264 value)
{
___Ldloc_210 = value;
}
inline static int32_t get_offset_of_Ldloca_211() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Ldloca_211)); }
inline OpCode_t123070264 get_Ldloca_211() const { return ___Ldloca_211; }
inline OpCode_t123070264 * get_address_of_Ldloca_211() { return &___Ldloca_211; }
inline void set_Ldloca_211(OpCode_t123070264 value)
{
___Ldloca_211 = value;
}
inline static int32_t get_offset_of_Stloc_212() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Stloc_212)); }
inline OpCode_t123070264 get_Stloc_212() const { return ___Stloc_212; }
inline OpCode_t123070264 * get_address_of_Stloc_212() { return &___Stloc_212; }
inline void set_Stloc_212(OpCode_t123070264 value)
{
___Stloc_212 = value;
}
inline static int32_t get_offset_of_Localloc_213() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Localloc_213)); }
inline OpCode_t123070264 get_Localloc_213() const { return ___Localloc_213; }
inline OpCode_t123070264 * get_address_of_Localloc_213() { return &___Localloc_213; }
inline void set_Localloc_213(OpCode_t123070264 value)
{
___Localloc_213 = value;
}
inline static int32_t get_offset_of_Endfilter_214() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Endfilter_214)); }
inline OpCode_t123070264 get_Endfilter_214() const { return ___Endfilter_214; }
inline OpCode_t123070264 * get_address_of_Endfilter_214() { return &___Endfilter_214; }
inline void set_Endfilter_214(OpCode_t123070264 value)
{
___Endfilter_214 = value;
}
inline static int32_t get_offset_of_Unaligned_215() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Unaligned_215)); }
inline OpCode_t123070264 get_Unaligned_215() const { return ___Unaligned_215; }
inline OpCode_t123070264 * get_address_of_Unaligned_215() { return &___Unaligned_215; }
inline void set_Unaligned_215(OpCode_t123070264 value)
{
___Unaligned_215 = value;
}
inline static int32_t get_offset_of_Volatile_216() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Volatile_216)); }
inline OpCode_t123070264 get_Volatile_216() const { return ___Volatile_216; }
inline OpCode_t123070264 * get_address_of_Volatile_216() { return &___Volatile_216; }
inline void set_Volatile_216(OpCode_t123070264 value)
{
___Volatile_216 = value;
}
inline static int32_t get_offset_of_Tailcall_217() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Tailcall_217)); }
inline OpCode_t123070264 get_Tailcall_217() const { return ___Tailcall_217; }
inline OpCode_t123070264 * get_address_of_Tailcall_217() { return &___Tailcall_217; }
inline void set_Tailcall_217(OpCode_t123070264 value)
{
___Tailcall_217 = value;
}
inline static int32_t get_offset_of_Initobj_218() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Initobj_218)); }
inline OpCode_t123070264 get_Initobj_218() const { return ___Initobj_218; }
inline OpCode_t123070264 * get_address_of_Initobj_218() { return &___Initobj_218; }
inline void set_Initobj_218(OpCode_t123070264 value)
{
___Initobj_218 = value;
}
inline static int32_t get_offset_of_Constrained_219() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Constrained_219)); }
inline OpCode_t123070264 get_Constrained_219() const { return ___Constrained_219; }
inline OpCode_t123070264 * get_address_of_Constrained_219() { return &___Constrained_219; }
inline void set_Constrained_219(OpCode_t123070264 value)
{
___Constrained_219 = value;
}
inline static int32_t get_offset_of_Cpblk_220() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Cpblk_220)); }
inline OpCode_t123070264 get_Cpblk_220() const { return ___Cpblk_220; }
inline OpCode_t123070264 * get_address_of_Cpblk_220() { return &___Cpblk_220; }
inline void set_Cpblk_220(OpCode_t123070264 value)
{
___Cpblk_220 = value;
}
inline static int32_t get_offset_of_Initblk_221() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Initblk_221)); }
inline OpCode_t123070264 get_Initblk_221() const { return ___Initblk_221; }
inline OpCode_t123070264 * get_address_of_Initblk_221() { return &___Initblk_221; }
inline void set_Initblk_221(OpCode_t123070264 value)
{
___Initblk_221 = value;
}
inline static int32_t get_offset_of_Rethrow_222() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Rethrow_222)); }
inline OpCode_t123070264 get_Rethrow_222() const { return ___Rethrow_222; }
inline OpCode_t123070264 * get_address_of_Rethrow_222() { return &___Rethrow_222; }
inline void set_Rethrow_222(OpCode_t123070264 value)
{
___Rethrow_222 = value;
}
inline static int32_t get_offset_of_Sizeof_223() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Sizeof_223)); }
inline OpCode_t123070264 get_Sizeof_223() const { return ___Sizeof_223; }
inline OpCode_t123070264 * get_address_of_Sizeof_223() { return &___Sizeof_223; }
inline void set_Sizeof_223(OpCode_t123070264 value)
{
___Sizeof_223 = value;
}
inline static int32_t get_offset_of_Refanytype_224() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Refanytype_224)); }
inline OpCode_t123070264 get_Refanytype_224() const { return ___Refanytype_224; }
inline OpCode_t123070264 * get_address_of_Refanytype_224() { return &___Refanytype_224; }
inline void set_Refanytype_224(OpCode_t123070264 value)
{
___Refanytype_224 = value;
}
inline static int32_t get_offset_of_Readonly_225() { return static_cast<int32_t>(offsetof(OpCodes_t126150456_StaticFields, ___Readonly_225)); }
inline OpCode_t123070264 get_Readonly_225() const { return ___Readonly_225; }
inline OpCode_t123070264 * get_address_of_Readonly_225() { return &___Readonly_225; }
inline void set_Readonly_225(OpCode_t123070264 value)
{
___Readonly_225 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPCODES_T126150456_H
#ifndef OPERANDTYPE_T2622847887_H
#define OPERANDTYPE_T2622847887_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.OperandType
struct OperandType_t2622847887
{
public:
// System.Int32 System.Reflection.Emit.OperandType::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(OperandType_t2622847887, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // OPERANDTYPE_T2622847887_H
#ifndef PEFILEKINDS_T3631470751_H
#define PEFILEKINDS_T3631470751_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.PEFileKinds
struct PEFileKinds_t3631470751
{
public:
// System.Int32 System.Reflection.Emit.PEFileKinds::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(PEFileKinds_t3631470751, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PEFILEKINDS_T3631470751_H
#ifndef PACKINGSIZE_T2976435189_H
#define PACKINGSIZE_T2976435189_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.PackingSize
struct PackingSize_t2976435189
{
public:
// System.Int32 System.Reflection.Emit.PackingSize::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(PackingSize_t2976435189, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PACKINGSIZE_T2976435189_H
#ifndef STACKBEHAVIOUR_T3009528134_H
#define STACKBEHAVIOUR_T3009528134_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.StackBehaviour
struct StackBehaviour_t3009528134
{
public:
// System.Int32 System.Reflection.Emit.StackBehaviour::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(StackBehaviour_t3009528134, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // STACKBEHAVIOUR_T3009528134_H
#ifndef DELEGATE_T1188392813_H
#define DELEGATE_T1188392813_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Delegate
struct Delegate_t1188392813 : 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::method_code
intptr_t ___method_code_5;
// System.Reflection.MethodInfo System.Delegate::method_info
MethodInfo_t * ___method_info_6;
// System.Reflection.MethodInfo System.Delegate::original_method_info
MethodInfo_t * ___original_method_info_7;
// System.DelegateData System.Delegate::data
DelegateData_t1677132599 * ___data_8;
public:
inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___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_t1188392813, ___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_t1188392813, ___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((&___m_target_2), value);
}
inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___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_t1188392813, ___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_method_code_5() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_code_5)); }
inline intptr_t get_method_code_5() const { return ___method_code_5; }
inline intptr_t* get_address_of_method_code_5() { return &___method_code_5; }
inline void set_method_code_5(intptr_t value)
{
___method_code_5 = value;
}
inline static int32_t get_offset_of_method_info_6() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___method_info_6)); }
inline MethodInfo_t * get_method_info_6() const { return ___method_info_6; }
inline MethodInfo_t ** get_address_of_method_info_6() { return &___method_info_6; }
inline void set_method_info_6(MethodInfo_t * value)
{
___method_info_6 = value;
Il2CppCodeGenWriteBarrier((&___method_info_6), value);
}
inline static int32_t get_offset_of_original_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___original_method_info_7)); }
inline MethodInfo_t * get_original_method_info_7() const { return ___original_method_info_7; }
inline MethodInfo_t ** get_address_of_original_method_info_7() { return &___original_method_info_7; }
inline void set_original_method_info_7(MethodInfo_t * value)
{
___original_method_info_7 = value;
Il2CppCodeGenWriteBarrier((&___original_method_info_7), value);
}
inline static int32_t get_offset_of_data_8() { return static_cast<int32_t>(offsetof(Delegate_t1188392813, ___data_8)); }
inline DelegateData_t1677132599 * get_data_8() const { return ___data_8; }
inline DelegateData_t1677132599 ** get_address_of_data_8() { return &___data_8; }
inline void set_data_8(DelegateData_t1677132599 * value)
{
___data_8 = value;
Il2CppCodeGenWriteBarrier((&___data_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DELEGATE_T1188392813_H
#ifndef METHODATTRIBUTES_T2366443849_H
#define METHODATTRIBUTES_T2366443849_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MethodAttributes
struct MethodAttributes_t2366443849
{
public:
// System.Int32 System.Reflection.MethodAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(MethodAttributes_t2366443849, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODATTRIBUTES_T2366443849_H
#ifndef FIELDATTRIBUTES_T400321159_H
#define FIELDATTRIBUTES_T400321159_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.FieldAttributes
struct FieldAttributes_t400321159
{
public:
// System.Int32 System.Reflection.FieldAttributes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(FieldAttributes_t400321159, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FIELDATTRIBUTES_T400321159_H
#ifndef MEMBERTYPES_T3790569052_H
#define MEMBERTYPES_T3790569052_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberTypes
struct MemberTypes_t3790569052
{
public:
// System.Int32 System.Reflection.MemberTypes::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(MemberTypes_t3790569052, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERTYPES_T3790569052_H
#ifndef IMAGEFILEMACHINE_T799743225_H
#define IMAGEFILEMACHINE_T799743225_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ImageFileMachine
struct ImageFileMachine_t799743225
{
public:
// System.Int32 System.Reflection.ImageFileMachine::value__
int32_t ___value___1;
public:
inline static int32_t get_offset_of_value___1() { return static_cast<int32_t>(offsetof(ImageFileMachine_t799743225, ___value___1)); }
inline int32_t get_value___1() const { return ___value___1; }
inline int32_t* get_address_of_value___1() { return &___value___1; }
inline void set_value___1(int32_t value)
{
___value___1 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // IMAGEFILEMACHINE_T799743225_H
#ifndef FIELDBUILDER_T2627049993_H
#define FIELDBUILDER_T2627049993_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.FieldBuilder
struct FieldBuilder_t2627049993 : public FieldInfo_t
{
public:
// System.Reflection.FieldAttributes System.Reflection.Emit.FieldBuilder::attrs
int32_t ___attrs_0;
// System.Type System.Reflection.Emit.FieldBuilder::type
Type_t * ___type_1;
// System.String System.Reflection.Emit.FieldBuilder::name
String_t* ___name_2;
// System.Reflection.Emit.TypeBuilder System.Reflection.Emit.FieldBuilder::typeb
TypeBuilder_t1073948154 * ___typeb_3;
// System.Reflection.Emit.UnmanagedMarshal System.Reflection.Emit.FieldBuilder::marshal_info
UnmanagedMarshal_t984015687 * ___marshal_info_4;
public:
inline static int32_t get_offset_of_attrs_0() { return static_cast<int32_t>(offsetof(FieldBuilder_t2627049993, ___attrs_0)); }
inline int32_t get_attrs_0() const { return ___attrs_0; }
inline int32_t* get_address_of_attrs_0() { return &___attrs_0; }
inline void set_attrs_0(int32_t value)
{
___attrs_0 = value;
}
inline static int32_t get_offset_of_type_1() { return static_cast<int32_t>(offsetof(FieldBuilder_t2627049993, ___type_1)); }
inline Type_t * get_type_1() const { return ___type_1; }
inline Type_t ** get_address_of_type_1() { return &___type_1; }
inline void set_type_1(Type_t * value)
{
___type_1 = value;
Il2CppCodeGenWriteBarrier((&___type_1), value);
}
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(FieldBuilder_t2627049993, ___name_2)); }
inline String_t* get_name_2() const { return ___name_2; }
inline String_t** get_address_of_name_2() { return &___name_2; }
inline void set_name_2(String_t* value)
{
___name_2 = value;
Il2CppCodeGenWriteBarrier((&___name_2), value);
}
inline static int32_t get_offset_of_typeb_3() { return static_cast<int32_t>(offsetof(FieldBuilder_t2627049993, ___typeb_3)); }
inline TypeBuilder_t1073948154 * get_typeb_3() const { return ___typeb_3; }
inline TypeBuilder_t1073948154 ** get_address_of_typeb_3() { return &___typeb_3; }
inline void set_typeb_3(TypeBuilder_t1073948154 * value)
{
___typeb_3 = value;
Il2CppCodeGenWriteBarrier((&___typeb_3), value);
}
inline static int32_t get_offset_of_marshal_info_4() { return static_cast<int32_t>(offsetof(FieldBuilder_t2627049993, ___marshal_info_4)); }
inline UnmanagedMarshal_t984015687 * get_marshal_info_4() const { return ___marshal_info_4; }
inline UnmanagedMarshal_t984015687 ** get_address_of_marshal_info_4() { return &___marshal_info_4; }
inline void set_marshal_info_4(UnmanagedMarshal_t984015687 * value)
{
___marshal_info_4 = value;
Il2CppCodeGenWriteBarrier((&___marshal_info_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // FIELDBUILDER_T2627049993_H
#ifndef METHODBUILDER_T2807316753_H
#define METHODBUILDER_T2807316753_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.MethodBuilder
struct MethodBuilder_t2807316753 : public MethodInfo_t
{
public:
// System.RuntimeMethodHandle System.Reflection.Emit.MethodBuilder::mhandle
RuntimeMethodHandle_t1133924984 ___mhandle_0;
// System.Type System.Reflection.Emit.MethodBuilder::rtype
Type_t * ___rtype_1;
// System.Type[] System.Reflection.Emit.MethodBuilder::parameters
TypeU5BU5D_t3940880105* ___parameters_2;
// System.Reflection.MethodAttributes System.Reflection.Emit.MethodBuilder::attrs
int32_t ___attrs_3;
// System.Reflection.MethodImplAttributes System.Reflection.Emit.MethodBuilder::iattrs
int32_t ___iattrs_4;
// System.String System.Reflection.Emit.MethodBuilder::name
String_t* ___name_5;
// System.Int32 System.Reflection.Emit.MethodBuilder::table_idx
int32_t ___table_idx_6;
// System.Byte[] System.Reflection.Emit.MethodBuilder::code
ByteU5BU5D_t4116647657* ___code_7;
// System.Reflection.Emit.ILGenerator System.Reflection.Emit.MethodBuilder::ilgen
ILGenerator_t1388622344 * ___ilgen_8;
// System.Reflection.Emit.TypeBuilder System.Reflection.Emit.MethodBuilder::type
TypeBuilder_t1073948154 * ___type_9;
// System.Reflection.Emit.ParameterBuilder[] System.Reflection.Emit.MethodBuilder::pinfo
ParameterBuilderU5BU5D_t3054868058* ___pinfo_10;
// System.Reflection.Emit.CustomAttributeBuilder[] System.Reflection.Emit.MethodBuilder::cattrs
CustomAttributeBuilderU5BU5D_t2951373564* ___cattrs_11;
// System.Reflection.MethodInfo System.Reflection.Emit.MethodBuilder::override_method
MethodInfo_t * ___override_method_12;
// System.String System.Reflection.Emit.MethodBuilder::pi_dll
String_t* ___pi_dll_13;
// System.String System.Reflection.Emit.MethodBuilder::pi_entry
String_t* ___pi_entry_14;
// System.Runtime.InteropServices.CharSet System.Reflection.Emit.MethodBuilder::charset
int32_t ___charset_15;
// System.UInt32 System.Reflection.Emit.MethodBuilder::extra_flags
uint32_t ___extra_flags_16;
// System.Runtime.InteropServices.CallingConvention System.Reflection.Emit.MethodBuilder::native_cc
int32_t ___native_cc_17;
// System.Reflection.CallingConventions System.Reflection.Emit.MethodBuilder::call_conv
int32_t ___call_conv_18;
// System.Boolean System.Reflection.Emit.MethodBuilder::init_locals
bool ___init_locals_19;
// System.IntPtr System.Reflection.Emit.MethodBuilder::generic_container
intptr_t ___generic_container_20;
// System.Reflection.Emit.GenericTypeParameterBuilder[] System.Reflection.Emit.MethodBuilder::generic_params
GenericTypeParameterBuilderU5BU5D_t3780444109* ___generic_params_21;
// System.Type[] System.Reflection.Emit.MethodBuilder::returnModReq
TypeU5BU5D_t3940880105* ___returnModReq_22;
// System.Type[] System.Reflection.Emit.MethodBuilder::returnModOpt
TypeU5BU5D_t3940880105* ___returnModOpt_23;
// System.Type[][] System.Reflection.Emit.MethodBuilder::paramModReq
TypeU5BU5DU5BU5D_t4042077012* ___paramModReq_24;
// System.Type[][] System.Reflection.Emit.MethodBuilder::paramModOpt
TypeU5BU5DU5BU5D_t4042077012* ___paramModOpt_25;
// System.Reflection.Emit.RefEmitPermissionSet[] System.Reflection.Emit.MethodBuilder::permissions
RefEmitPermissionSetU5BU5D_t567451178* ___permissions_26;
public:
inline static int32_t get_offset_of_mhandle_0() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___mhandle_0)); }
inline RuntimeMethodHandle_t1133924984 get_mhandle_0() const { return ___mhandle_0; }
inline RuntimeMethodHandle_t1133924984 * get_address_of_mhandle_0() { return &___mhandle_0; }
inline void set_mhandle_0(RuntimeMethodHandle_t1133924984 value)
{
___mhandle_0 = value;
}
inline static int32_t get_offset_of_rtype_1() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___rtype_1)); }
inline Type_t * get_rtype_1() const { return ___rtype_1; }
inline Type_t ** get_address_of_rtype_1() { return &___rtype_1; }
inline void set_rtype_1(Type_t * value)
{
___rtype_1 = value;
Il2CppCodeGenWriteBarrier((&___rtype_1), value);
}
inline static int32_t get_offset_of_parameters_2() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___parameters_2)); }
inline TypeU5BU5D_t3940880105* get_parameters_2() const { return ___parameters_2; }
inline TypeU5BU5D_t3940880105** get_address_of_parameters_2() { return &___parameters_2; }
inline void set_parameters_2(TypeU5BU5D_t3940880105* value)
{
___parameters_2 = value;
Il2CppCodeGenWriteBarrier((&___parameters_2), value);
}
inline static int32_t get_offset_of_attrs_3() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___attrs_3)); }
inline int32_t get_attrs_3() const { return ___attrs_3; }
inline int32_t* get_address_of_attrs_3() { return &___attrs_3; }
inline void set_attrs_3(int32_t value)
{
___attrs_3 = value;
}
inline static int32_t get_offset_of_iattrs_4() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___iattrs_4)); }
inline int32_t get_iattrs_4() const { return ___iattrs_4; }
inline int32_t* get_address_of_iattrs_4() { return &___iattrs_4; }
inline void set_iattrs_4(int32_t value)
{
___iattrs_4 = value;
}
inline static int32_t get_offset_of_name_5() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___name_5)); }
inline String_t* get_name_5() const { return ___name_5; }
inline String_t** get_address_of_name_5() { return &___name_5; }
inline void set_name_5(String_t* value)
{
___name_5 = value;
Il2CppCodeGenWriteBarrier((&___name_5), value);
}
inline static int32_t get_offset_of_table_idx_6() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___table_idx_6)); }
inline int32_t get_table_idx_6() const { return ___table_idx_6; }
inline int32_t* get_address_of_table_idx_6() { return &___table_idx_6; }
inline void set_table_idx_6(int32_t value)
{
___table_idx_6 = value;
}
inline static int32_t get_offset_of_code_7() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___code_7)); }
inline ByteU5BU5D_t4116647657* get_code_7() const { return ___code_7; }
inline ByteU5BU5D_t4116647657** get_address_of_code_7() { return &___code_7; }
inline void set_code_7(ByteU5BU5D_t4116647657* value)
{
___code_7 = value;
Il2CppCodeGenWriteBarrier((&___code_7), value);
}
inline static int32_t get_offset_of_ilgen_8() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___ilgen_8)); }
inline ILGenerator_t1388622344 * get_ilgen_8() const { return ___ilgen_8; }
inline ILGenerator_t1388622344 ** get_address_of_ilgen_8() { return &___ilgen_8; }
inline void set_ilgen_8(ILGenerator_t1388622344 * value)
{
___ilgen_8 = value;
Il2CppCodeGenWriteBarrier((&___ilgen_8), value);
}
inline static int32_t get_offset_of_type_9() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___type_9)); }
inline TypeBuilder_t1073948154 * get_type_9() const { return ___type_9; }
inline TypeBuilder_t1073948154 ** get_address_of_type_9() { return &___type_9; }
inline void set_type_9(TypeBuilder_t1073948154 * value)
{
___type_9 = value;
Il2CppCodeGenWriteBarrier((&___type_9), value);
}
inline static int32_t get_offset_of_pinfo_10() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___pinfo_10)); }
inline ParameterBuilderU5BU5D_t3054868058* get_pinfo_10() const { return ___pinfo_10; }
inline ParameterBuilderU5BU5D_t3054868058** get_address_of_pinfo_10() { return &___pinfo_10; }
inline void set_pinfo_10(ParameterBuilderU5BU5D_t3054868058* value)
{
___pinfo_10 = value;
Il2CppCodeGenWriteBarrier((&___pinfo_10), value);
}
inline static int32_t get_offset_of_cattrs_11() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___cattrs_11)); }
inline CustomAttributeBuilderU5BU5D_t2951373564* get_cattrs_11() const { return ___cattrs_11; }
inline CustomAttributeBuilderU5BU5D_t2951373564** get_address_of_cattrs_11() { return &___cattrs_11; }
inline void set_cattrs_11(CustomAttributeBuilderU5BU5D_t2951373564* value)
{
___cattrs_11 = value;
Il2CppCodeGenWriteBarrier((&___cattrs_11), value);
}
inline static int32_t get_offset_of_override_method_12() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___override_method_12)); }
inline MethodInfo_t * get_override_method_12() const { return ___override_method_12; }
inline MethodInfo_t ** get_address_of_override_method_12() { return &___override_method_12; }
inline void set_override_method_12(MethodInfo_t * value)
{
___override_method_12 = value;
Il2CppCodeGenWriteBarrier((&___override_method_12), value);
}
inline static int32_t get_offset_of_pi_dll_13() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___pi_dll_13)); }
inline String_t* get_pi_dll_13() const { return ___pi_dll_13; }
inline String_t** get_address_of_pi_dll_13() { return &___pi_dll_13; }
inline void set_pi_dll_13(String_t* value)
{
___pi_dll_13 = value;
Il2CppCodeGenWriteBarrier((&___pi_dll_13), value);
}
inline static int32_t get_offset_of_pi_entry_14() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___pi_entry_14)); }
inline String_t* get_pi_entry_14() const { return ___pi_entry_14; }
inline String_t** get_address_of_pi_entry_14() { return &___pi_entry_14; }
inline void set_pi_entry_14(String_t* value)
{
___pi_entry_14 = value;
Il2CppCodeGenWriteBarrier((&___pi_entry_14), value);
}
inline static int32_t get_offset_of_charset_15() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___charset_15)); }
inline int32_t get_charset_15() const { return ___charset_15; }
inline int32_t* get_address_of_charset_15() { return &___charset_15; }
inline void set_charset_15(int32_t value)
{
___charset_15 = value;
}
inline static int32_t get_offset_of_extra_flags_16() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___extra_flags_16)); }
inline uint32_t get_extra_flags_16() const { return ___extra_flags_16; }
inline uint32_t* get_address_of_extra_flags_16() { return &___extra_flags_16; }
inline void set_extra_flags_16(uint32_t value)
{
___extra_flags_16 = value;
}
inline static int32_t get_offset_of_native_cc_17() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___native_cc_17)); }
inline int32_t get_native_cc_17() const { return ___native_cc_17; }
inline int32_t* get_address_of_native_cc_17() { return &___native_cc_17; }
inline void set_native_cc_17(int32_t value)
{
___native_cc_17 = value;
}
inline static int32_t get_offset_of_call_conv_18() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___call_conv_18)); }
inline int32_t get_call_conv_18() const { return ___call_conv_18; }
inline int32_t* get_address_of_call_conv_18() { return &___call_conv_18; }
inline void set_call_conv_18(int32_t value)
{
___call_conv_18 = value;
}
inline static int32_t get_offset_of_init_locals_19() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___init_locals_19)); }
inline bool get_init_locals_19() const { return ___init_locals_19; }
inline bool* get_address_of_init_locals_19() { return &___init_locals_19; }
inline void set_init_locals_19(bool value)
{
___init_locals_19 = value;
}
inline static int32_t get_offset_of_generic_container_20() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___generic_container_20)); }
inline intptr_t get_generic_container_20() const { return ___generic_container_20; }
inline intptr_t* get_address_of_generic_container_20() { return &___generic_container_20; }
inline void set_generic_container_20(intptr_t value)
{
___generic_container_20 = value;
}
inline static int32_t get_offset_of_generic_params_21() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___generic_params_21)); }
inline GenericTypeParameterBuilderU5BU5D_t3780444109* get_generic_params_21() const { return ___generic_params_21; }
inline GenericTypeParameterBuilderU5BU5D_t3780444109** get_address_of_generic_params_21() { return &___generic_params_21; }
inline void set_generic_params_21(GenericTypeParameterBuilderU5BU5D_t3780444109* value)
{
___generic_params_21 = value;
Il2CppCodeGenWriteBarrier((&___generic_params_21), value);
}
inline static int32_t get_offset_of_returnModReq_22() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___returnModReq_22)); }
inline TypeU5BU5D_t3940880105* get_returnModReq_22() const { return ___returnModReq_22; }
inline TypeU5BU5D_t3940880105** get_address_of_returnModReq_22() { return &___returnModReq_22; }
inline void set_returnModReq_22(TypeU5BU5D_t3940880105* value)
{
___returnModReq_22 = value;
Il2CppCodeGenWriteBarrier((&___returnModReq_22), value);
}
inline static int32_t get_offset_of_returnModOpt_23() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___returnModOpt_23)); }
inline TypeU5BU5D_t3940880105* get_returnModOpt_23() const { return ___returnModOpt_23; }
inline TypeU5BU5D_t3940880105** get_address_of_returnModOpt_23() { return &___returnModOpt_23; }
inline void set_returnModOpt_23(TypeU5BU5D_t3940880105* value)
{
___returnModOpt_23 = value;
Il2CppCodeGenWriteBarrier((&___returnModOpt_23), value);
}
inline static int32_t get_offset_of_paramModReq_24() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___paramModReq_24)); }
inline TypeU5BU5DU5BU5D_t4042077012* get_paramModReq_24() const { return ___paramModReq_24; }
inline TypeU5BU5DU5BU5D_t4042077012** get_address_of_paramModReq_24() { return &___paramModReq_24; }
inline void set_paramModReq_24(TypeU5BU5DU5BU5D_t4042077012* value)
{
___paramModReq_24 = value;
Il2CppCodeGenWriteBarrier((&___paramModReq_24), value);
}
inline static int32_t get_offset_of_paramModOpt_25() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___paramModOpt_25)); }
inline TypeU5BU5DU5BU5D_t4042077012* get_paramModOpt_25() const { return ___paramModOpt_25; }
inline TypeU5BU5DU5BU5D_t4042077012** get_address_of_paramModOpt_25() { return &___paramModOpt_25; }
inline void set_paramModOpt_25(TypeU5BU5DU5BU5D_t4042077012* value)
{
___paramModOpt_25 = value;
Il2CppCodeGenWriteBarrier((&___paramModOpt_25), value);
}
inline static int32_t get_offset_of_permissions_26() { return static_cast<int32_t>(offsetof(MethodBuilder_t2807316753, ___permissions_26)); }
inline RefEmitPermissionSetU5BU5D_t567451178* get_permissions_26() const { return ___permissions_26; }
inline RefEmitPermissionSetU5BU5D_t567451178** get_address_of_permissions_26() { return &___permissions_26; }
inline void set_permissions_26(RefEmitPermissionSetU5BU5D_t567451178* value)
{
___permissions_26 = value;
Il2CppCodeGenWriteBarrier((&___permissions_26), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // METHODBUILDER_T2807316753_H
#ifndef MODULE_T2987026101_H
#define MODULE_T2987026101_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Module
struct Module_t2987026101 : public RuntimeObject
{
public:
// System.IntPtr System.Reflection.Module::_impl
intptr_t ____impl_3;
// System.Reflection.Assembly System.Reflection.Module::assembly
Assembly_t * ___assembly_4;
// System.String System.Reflection.Module::fqname
String_t* ___fqname_5;
// System.String System.Reflection.Module::name
String_t* ___name_6;
// System.String System.Reflection.Module::scopename
String_t* ___scopename_7;
// System.Boolean System.Reflection.Module::is_resource
bool ___is_resource_8;
// System.Int32 System.Reflection.Module::token
int32_t ___token_9;
public:
inline static int32_t get_offset_of__impl_3() { return static_cast<int32_t>(offsetof(Module_t2987026101, ____impl_3)); }
inline intptr_t get__impl_3() const { return ____impl_3; }
inline intptr_t* get_address_of__impl_3() { return &____impl_3; }
inline void set__impl_3(intptr_t value)
{
____impl_3 = value;
}
inline static int32_t get_offset_of_assembly_4() { return static_cast<int32_t>(offsetof(Module_t2987026101, ___assembly_4)); }
inline Assembly_t * get_assembly_4() const { return ___assembly_4; }
inline Assembly_t ** get_address_of_assembly_4() { return &___assembly_4; }
inline void set_assembly_4(Assembly_t * value)
{
___assembly_4 = value;
Il2CppCodeGenWriteBarrier((&___assembly_4), value);
}
inline static int32_t get_offset_of_fqname_5() { return static_cast<int32_t>(offsetof(Module_t2987026101, ___fqname_5)); }
inline String_t* get_fqname_5() const { return ___fqname_5; }
inline String_t** get_address_of_fqname_5() { return &___fqname_5; }
inline void set_fqname_5(String_t* value)
{
___fqname_5 = value;
Il2CppCodeGenWriteBarrier((&___fqname_5), value);
}
inline static int32_t get_offset_of_name_6() { return static_cast<int32_t>(offsetof(Module_t2987026101, ___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((&___name_6), value);
}
inline static int32_t get_offset_of_scopename_7() { return static_cast<int32_t>(offsetof(Module_t2987026101, ___scopename_7)); }
inline String_t* get_scopename_7() const { return ___scopename_7; }
inline String_t** get_address_of_scopename_7() { return &___scopename_7; }
inline void set_scopename_7(String_t* value)
{
___scopename_7 = value;
Il2CppCodeGenWriteBarrier((&___scopename_7), value);
}
inline static int32_t get_offset_of_is_resource_8() { return static_cast<int32_t>(offsetof(Module_t2987026101, ___is_resource_8)); }
inline bool get_is_resource_8() const { return ___is_resource_8; }
inline bool* get_address_of_is_resource_8() { return &___is_resource_8; }
inline void set_is_resource_8(bool value)
{
___is_resource_8 = value;
}
inline static int32_t get_offset_of_token_9() { return static_cast<int32_t>(offsetof(Module_t2987026101, ___token_9)); }
inline int32_t get_token_9() const { return ___token_9; }
inline int32_t* get_address_of_token_9() { return &___token_9; }
inline void set_token_9(int32_t value)
{
___token_9 = value;
}
};
struct Module_t2987026101_StaticFields
{
public:
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeName
TypeFilter_t2356120900 * ___FilterTypeName_1;
// System.Reflection.TypeFilter System.Reflection.Module::FilterTypeNameIgnoreCase
TypeFilter_t2356120900 * ___FilterTypeNameIgnoreCase_2;
public:
inline static int32_t get_offset_of_FilterTypeName_1() { return static_cast<int32_t>(offsetof(Module_t2987026101_StaticFields, ___FilterTypeName_1)); }
inline TypeFilter_t2356120900 * get_FilterTypeName_1() const { return ___FilterTypeName_1; }
inline TypeFilter_t2356120900 ** get_address_of_FilterTypeName_1() { return &___FilterTypeName_1; }
inline void set_FilterTypeName_1(TypeFilter_t2356120900 * value)
{
___FilterTypeName_1 = value;
Il2CppCodeGenWriteBarrier((&___FilterTypeName_1), value);
}
inline static int32_t get_offset_of_FilterTypeNameIgnoreCase_2() { return static_cast<int32_t>(offsetof(Module_t2987026101_StaticFields, ___FilterTypeNameIgnoreCase_2)); }
inline TypeFilter_t2356120900 * get_FilterTypeNameIgnoreCase_2() const { return ___FilterTypeNameIgnoreCase_2; }
inline TypeFilter_t2356120900 ** get_address_of_FilterTypeNameIgnoreCase_2() { return &___FilterTypeNameIgnoreCase_2; }
inline void set_FilterTypeNameIgnoreCase_2(TypeFilter_t2356120900 * value)
{
___FilterTypeNameIgnoreCase_2 = value;
Il2CppCodeGenWriteBarrier((&___FilterTypeNameIgnoreCase_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MODULE_T2987026101_H
#ifndef TYPE_T_H
#define TYPE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Type
struct Type_t : public MemberInfo_t
{
public:
// System.RuntimeTypeHandle System.Type::_impl
RuntimeTypeHandle_t3027515415 ____impl_1;
public:
inline static int32_t get_offset_of__impl_1() { return static_cast<int32_t>(offsetof(Type_t, ____impl_1)); }
inline RuntimeTypeHandle_t3027515415 get__impl_1() const { return ____impl_1; }
inline RuntimeTypeHandle_t3027515415 * get_address_of__impl_1() { return &____impl_1; }
inline void set__impl_1(RuntimeTypeHandle_t3027515415 value)
{
____impl_1 = value;
}
};
struct Type_t_StaticFields
{
public:
// System.Char System.Type::Delimiter
Il2CppChar ___Delimiter_2;
// System.Type[] System.Type::EmptyTypes
TypeU5BU5D_t3940880105* ___EmptyTypes_3;
// System.Reflection.MemberFilter System.Type::FilterAttribute
MemberFilter_t426314064 * ___FilterAttribute_4;
// System.Reflection.MemberFilter System.Type::FilterName
MemberFilter_t426314064 * ___FilterName_5;
// System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase
MemberFilter_t426314064 * ___FilterNameIgnoreCase_6;
// System.Object System.Type::Missing
RuntimeObject * ___Missing_7;
public:
inline static int32_t get_offset_of_Delimiter_2() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Delimiter_2)); }
inline Il2CppChar get_Delimiter_2() const { return ___Delimiter_2; }
inline Il2CppChar* get_address_of_Delimiter_2() { return &___Delimiter_2; }
inline void set_Delimiter_2(Il2CppChar value)
{
___Delimiter_2 = value;
}
inline static int32_t get_offset_of_EmptyTypes_3() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___EmptyTypes_3)); }
inline TypeU5BU5D_t3940880105* get_EmptyTypes_3() const { return ___EmptyTypes_3; }
inline TypeU5BU5D_t3940880105** get_address_of_EmptyTypes_3() { return &___EmptyTypes_3; }
inline void set_EmptyTypes_3(TypeU5BU5D_t3940880105* value)
{
___EmptyTypes_3 = value;
Il2CppCodeGenWriteBarrier((&___EmptyTypes_3), value);
}
inline static int32_t get_offset_of_FilterAttribute_4() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterAttribute_4)); }
inline MemberFilter_t426314064 * get_FilterAttribute_4() const { return ___FilterAttribute_4; }
inline MemberFilter_t426314064 ** get_address_of_FilterAttribute_4() { return &___FilterAttribute_4; }
inline void set_FilterAttribute_4(MemberFilter_t426314064 * value)
{
___FilterAttribute_4 = value;
Il2CppCodeGenWriteBarrier((&___FilterAttribute_4), value);
}
inline static int32_t get_offset_of_FilterName_5() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterName_5)); }
inline MemberFilter_t426314064 * get_FilterName_5() const { return ___FilterName_5; }
inline MemberFilter_t426314064 ** get_address_of_FilterName_5() { return &___FilterName_5; }
inline void set_FilterName_5(MemberFilter_t426314064 * value)
{
___FilterName_5 = value;
Il2CppCodeGenWriteBarrier((&___FilterName_5), value);
}
inline static int32_t get_offset_of_FilterNameIgnoreCase_6() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_6)); }
inline MemberFilter_t426314064 * get_FilterNameIgnoreCase_6() const { return ___FilterNameIgnoreCase_6; }
inline MemberFilter_t426314064 ** get_address_of_FilterNameIgnoreCase_6() { return &___FilterNameIgnoreCase_6; }
inline void set_FilterNameIgnoreCase_6(MemberFilter_t426314064 * value)
{
___FilterNameIgnoreCase_6 = value;
Il2CppCodeGenWriteBarrier((&___FilterNameIgnoreCase_6), value);
}
inline static int32_t get_offset_of_Missing_7() { return static_cast<int32_t>(offsetof(Type_t_StaticFields, ___Missing_7)); }
inline RuntimeObject * get_Missing_7() const { return ___Missing_7; }
inline RuntimeObject ** get_address_of_Missing_7() { return &___Missing_7; }
inline void set_Missing_7(RuntimeObject * value)
{
___Missing_7 = value;
Il2CppCodeGenWriteBarrier((&___Missing_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPE_T_H
#ifndef DYNAMICMETHOD_T2537779570_H
#define DYNAMICMETHOD_T2537779570_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.DynamicMethod
struct DynamicMethod_t2537779570 : public MethodInfo_t
{
public:
// System.RuntimeMethodHandle System.Reflection.Emit.DynamicMethod::mhandle
RuntimeMethodHandle_t1133924984 ___mhandle_0;
// System.String System.Reflection.Emit.DynamicMethod::name
String_t* ___name_1;
// System.Type System.Reflection.Emit.DynamicMethod::returnType
Type_t * ___returnType_2;
// System.Type[] System.Reflection.Emit.DynamicMethod::parameters
TypeU5BU5D_t3940880105* ___parameters_3;
// System.Reflection.MethodAttributes System.Reflection.Emit.DynamicMethod::attributes
int32_t ___attributes_4;
// System.Reflection.CallingConventions System.Reflection.Emit.DynamicMethod::callingConvention
int32_t ___callingConvention_5;
// System.Reflection.Module System.Reflection.Emit.DynamicMethod::module
Module_t2987026101 * ___module_6;
// System.Boolean System.Reflection.Emit.DynamicMethod::skipVisibility
bool ___skipVisibility_7;
// System.Boolean System.Reflection.Emit.DynamicMethod::init_locals
bool ___init_locals_8;
// System.Reflection.Emit.ILGenerator System.Reflection.Emit.DynamicMethod::ilgen
ILGenerator_t1388622344 * ___ilgen_9;
// System.Int32 System.Reflection.Emit.DynamicMethod::nrefs
int32_t ___nrefs_10;
// System.Object[] System.Reflection.Emit.DynamicMethod::refs
ObjectU5BU5D_t2843939325* ___refs_11;
// System.IntPtr System.Reflection.Emit.DynamicMethod::referenced_by
intptr_t ___referenced_by_12;
// System.Type System.Reflection.Emit.DynamicMethod::owner
Type_t * ___owner_13;
// System.Delegate System.Reflection.Emit.DynamicMethod::deleg
Delegate_t1188392813 * ___deleg_14;
// System.Reflection.MonoMethod System.Reflection.Emit.DynamicMethod::method
MonoMethod_t * ___method_15;
// System.Reflection.Emit.ParameterBuilder[] System.Reflection.Emit.DynamicMethod::pinfo
ParameterBuilderU5BU5D_t3054868058* ___pinfo_16;
// System.Boolean System.Reflection.Emit.DynamicMethod::creating
bool ___creating_17;
public:
inline static int32_t get_offset_of_mhandle_0() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___mhandle_0)); }
inline RuntimeMethodHandle_t1133924984 get_mhandle_0() const { return ___mhandle_0; }
inline RuntimeMethodHandle_t1133924984 * get_address_of_mhandle_0() { return &___mhandle_0; }
inline void set_mhandle_0(RuntimeMethodHandle_t1133924984 value)
{
___mhandle_0 = value;
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((&___name_1), value);
}
inline static int32_t get_offset_of_returnType_2() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___returnType_2)); }
inline Type_t * get_returnType_2() const { return ___returnType_2; }
inline Type_t ** get_address_of_returnType_2() { return &___returnType_2; }
inline void set_returnType_2(Type_t * value)
{
___returnType_2 = value;
Il2CppCodeGenWriteBarrier((&___returnType_2), value);
}
inline static int32_t get_offset_of_parameters_3() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___parameters_3)); }
inline TypeU5BU5D_t3940880105* get_parameters_3() const { return ___parameters_3; }
inline TypeU5BU5D_t3940880105** get_address_of_parameters_3() { return &___parameters_3; }
inline void set_parameters_3(TypeU5BU5D_t3940880105* value)
{
___parameters_3 = value;
Il2CppCodeGenWriteBarrier((&___parameters_3), value);
}
inline static int32_t get_offset_of_attributes_4() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___attributes_4)); }
inline int32_t get_attributes_4() const { return ___attributes_4; }
inline int32_t* get_address_of_attributes_4() { return &___attributes_4; }
inline void set_attributes_4(int32_t value)
{
___attributes_4 = value;
}
inline static int32_t get_offset_of_callingConvention_5() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___callingConvention_5)); }
inline int32_t get_callingConvention_5() const { return ___callingConvention_5; }
inline int32_t* get_address_of_callingConvention_5() { return &___callingConvention_5; }
inline void set_callingConvention_5(int32_t value)
{
___callingConvention_5 = value;
}
inline static int32_t get_offset_of_module_6() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___module_6)); }
inline Module_t2987026101 * get_module_6() const { return ___module_6; }
inline Module_t2987026101 ** get_address_of_module_6() { return &___module_6; }
inline void set_module_6(Module_t2987026101 * value)
{
___module_6 = value;
Il2CppCodeGenWriteBarrier((&___module_6), value);
}
inline static int32_t get_offset_of_skipVisibility_7() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___skipVisibility_7)); }
inline bool get_skipVisibility_7() const { return ___skipVisibility_7; }
inline bool* get_address_of_skipVisibility_7() { return &___skipVisibility_7; }
inline void set_skipVisibility_7(bool value)
{
___skipVisibility_7 = value;
}
inline static int32_t get_offset_of_init_locals_8() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___init_locals_8)); }
inline bool get_init_locals_8() const { return ___init_locals_8; }
inline bool* get_address_of_init_locals_8() { return &___init_locals_8; }
inline void set_init_locals_8(bool value)
{
___init_locals_8 = value;
}
inline static int32_t get_offset_of_ilgen_9() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___ilgen_9)); }
inline ILGenerator_t1388622344 * get_ilgen_9() const { return ___ilgen_9; }
inline ILGenerator_t1388622344 ** get_address_of_ilgen_9() { return &___ilgen_9; }
inline void set_ilgen_9(ILGenerator_t1388622344 * value)
{
___ilgen_9 = value;
Il2CppCodeGenWriteBarrier((&___ilgen_9), value);
}
inline static int32_t get_offset_of_nrefs_10() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___nrefs_10)); }
inline int32_t get_nrefs_10() const { return ___nrefs_10; }
inline int32_t* get_address_of_nrefs_10() { return &___nrefs_10; }
inline void set_nrefs_10(int32_t value)
{
___nrefs_10 = value;
}
inline static int32_t get_offset_of_refs_11() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___refs_11)); }
inline ObjectU5BU5D_t2843939325* get_refs_11() const { return ___refs_11; }
inline ObjectU5BU5D_t2843939325** get_address_of_refs_11() { return &___refs_11; }
inline void set_refs_11(ObjectU5BU5D_t2843939325* value)
{
___refs_11 = value;
Il2CppCodeGenWriteBarrier((&___refs_11), value);
}
inline static int32_t get_offset_of_referenced_by_12() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___referenced_by_12)); }
inline intptr_t get_referenced_by_12() const { return ___referenced_by_12; }
inline intptr_t* get_address_of_referenced_by_12() { return &___referenced_by_12; }
inline void set_referenced_by_12(intptr_t value)
{
___referenced_by_12 = value;
}
inline static int32_t get_offset_of_owner_13() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___owner_13)); }
inline Type_t * get_owner_13() const { return ___owner_13; }
inline Type_t ** get_address_of_owner_13() { return &___owner_13; }
inline void set_owner_13(Type_t * value)
{
___owner_13 = value;
Il2CppCodeGenWriteBarrier((&___owner_13), value);
}
inline static int32_t get_offset_of_deleg_14() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___deleg_14)); }
inline Delegate_t1188392813 * get_deleg_14() const { return ___deleg_14; }
inline Delegate_t1188392813 ** get_address_of_deleg_14() { return &___deleg_14; }
inline void set_deleg_14(Delegate_t1188392813 * value)
{
___deleg_14 = value;
Il2CppCodeGenWriteBarrier((&___deleg_14), value);
}
inline static int32_t get_offset_of_method_15() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___method_15)); }
inline MonoMethod_t * get_method_15() const { return ___method_15; }
inline MonoMethod_t ** get_address_of_method_15() { return &___method_15; }
inline void set_method_15(MonoMethod_t * value)
{
___method_15 = value;
Il2CppCodeGenWriteBarrier((&___method_15), value);
}
inline static int32_t get_offset_of_pinfo_16() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___pinfo_16)); }
inline ParameterBuilderU5BU5D_t3054868058* get_pinfo_16() const { return ___pinfo_16; }
inline ParameterBuilderU5BU5D_t3054868058** get_address_of_pinfo_16() { return &___pinfo_16; }
inline void set_pinfo_16(ParameterBuilderU5BU5D_t3054868058* value)
{
___pinfo_16 = value;
Il2CppCodeGenWriteBarrier((&___pinfo_16), value);
}
inline static int32_t get_offset_of_creating_17() { return static_cast<int32_t>(offsetof(DynamicMethod_t2537779570, ___creating_17)); }
inline bool get_creating_17() const { return ___creating_17; }
inline bool* get_address_of_creating_17() { return &___creating_17; }
inline void set_creating_17(bool value)
{
___creating_17 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DYNAMICMETHOD_T2537779570_H
#ifndef UNMANAGEDMEMORYSTREAM_T4234117669_H
#define UNMANAGEDMEMORYSTREAM_T4234117669_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.IO.UnmanagedMemoryStream
struct UnmanagedMemoryStream_t4234117669 : public Stream_t1273022909
{
public:
// System.Int64 System.IO.UnmanagedMemoryStream::length
int64_t ___length_1;
// System.Boolean System.IO.UnmanagedMemoryStream::closed
bool ___closed_2;
// System.Int64 System.IO.UnmanagedMemoryStream::capacity
int64_t ___capacity_3;
// System.IO.FileAccess System.IO.UnmanagedMemoryStream::fileaccess
int32_t ___fileaccess_4;
// System.IntPtr System.IO.UnmanagedMemoryStream::initial_pointer
intptr_t ___initial_pointer_5;
// System.Int64 System.IO.UnmanagedMemoryStream::initial_position
int64_t ___initial_position_6;
// System.Int64 System.IO.UnmanagedMemoryStream::current_position
int64_t ___current_position_7;
// System.EventHandler System.IO.UnmanagedMemoryStream::Closed
EventHandler_t1348719766 * ___Closed_8;
public:
inline static int32_t get_offset_of_length_1() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_t4234117669, ___length_1)); }
inline int64_t get_length_1() const { return ___length_1; }
inline int64_t* get_address_of_length_1() { return &___length_1; }
inline void set_length_1(int64_t value)
{
___length_1 = value;
}
inline static int32_t get_offset_of_closed_2() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_t4234117669, ___closed_2)); }
inline bool get_closed_2() const { return ___closed_2; }
inline bool* get_address_of_closed_2() { return &___closed_2; }
inline void set_closed_2(bool value)
{
___closed_2 = value;
}
inline static int32_t get_offset_of_capacity_3() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_t4234117669, ___capacity_3)); }
inline int64_t get_capacity_3() const { return ___capacity_3; }
inline int64_t* get_address_of_capacity_3() { return &___capacity_3; }
inline void set_capacity_3(int64_t value)
{
___capacity_3 = value;
}
inline static int32_t get_offset_of_fileaccess_4() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_t4234117669, ___fileaccess_4)); }
inline int32_t get_fileaccess_4() const { return ___fileaccess_4; }
inline int32_t* get_address_of_fileaccess_4() { return &___fileaccess_4; }
inline void set_fileaccess_4(int32_t value)
{
___fileaccess_4 = value;
}
inline static int32_t get_offset_of_initial_pointer_5() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_t4234117669, ___initial_pointer_5)); }
inline intptr_t get_initial_pointer_5() const { return ___initial_pointer_5; }
inline intptr_t* get_address_of_initial_pointer_5() { return &___initial_pointer_5; }
inline void set_initial_pointer_5(intptr_t value)
{
___initial_pointer_5 = value;
}
inline static int32_t get_offset_of_initial_position_6() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_t4234117669, ___initial_position_6)); }
inline int64_t get_initial_position_6() const { return ___initial_position_6; }
inline int64_t* get_address_of_initial_position_6() { return &___initial_position_6; }
inline void set_initial_position_6(int64_t value)
{
___initial_position_6 = value;
}
inline static int32_t get_offset_of_current_position_7() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_t4234117669, ___current_position_7)); }
inline int64_t get_current_position_7() const { return ___current_position_7; }
inline int64_t* get_address_of_current_position_7() { return &___current_position_7; }
inline void set_current_position_7(int64_t value)
{
___current_position_7 = value;
}
inline static int32_t get_offset_of_Closed_8() { return static_cast<int32_t>(offsetof(UnmanagedMemoryStream_t4234117669, ___Closed_8)); }
inline EventHandler_t1348719766 * get_Closed_8() const { return ___Closed_8; }
inline EventHandler_t1348719766 ** get_address_of_Closed_8() { return &___Closed_8; }
inline void set_Closed_8(EventHandler_t1348719766 * value)
{
___Closed_8 = value;
Il2CppCodeGenWriteBarrier((&___Closed_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNMANAGEDMEMORYSTREAM_T4234117669_H
#ifndef REFEMITPERMISSIONSET_T484390987_H
#define REFEMITPERMISSIONSET_T484390987_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.RefEmitPermissionSet
struct RefEmitPermissionSet_t484390987
{
public:
// System.Security.Permissions.SecurityAction System.Reflection.Emit.RefEmitPermissionSet::action
int32_t ___action_0;
// System.String System.Reflection.Emit.RefEmitPermissionSet::pset
String_t* ___pset_1;
public:
inline static int32_t get_offset_of_action_0() { return static_cast<int32_t>(offsetof(RefEmitPermissionSet_t484390987, ___action_0)); }
inline int32_t get_action_0() const { return ___action_0; }
inline int32_t* get_address_of_action_0() { return &___action_0; }
inline void set_action_0(int32_t value)
{
___action_0 = value;
}
inline static int32_t get_offset_of_pset_1() { return static_cast<int32_t>(offsetof(RefEmitPermissionSet_t484390987, ___pset_1)); }
inline String_t* get_pset_1() const { return ___pset_1; }
inline String_t** get_address_of_pset_1() { return &___pset_1; }
inline void set_pset_1(String_t* value)
{
___pset_1 = value;
Il2CppCodeGenWriteBarrier((&___pset_1), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.RefEmitPermissionSet
struct RefEmitPermissionSet_t484390987_marshaled_pinvoke
{
int32_t ___action_0;
char* ___pset_1;
};
// Native definition for COM marshalling of System.Reflection.Emit.RefEmitPermissionSet
struct RefEmitPermissionSet_t484390987_marshaled_com
{
int32_t ___action_0;
Il2CppChar* ___pset_1;
};
#endif // REFEMITPERMISSIONSET_T484390987_H
#ifndef MONORESOURCE_T4103430009_H
#define MONORESOURCE_T4103430009_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.MonoResource
struct MonoResource_t4103430009
{
public:
// System.Byte[] System.Reflection.Emit.MonoResource::data
ByteU5BU5D_t4116647657* ___data_0;
// System.String System.Reflection.Emit.MonoResource::name
String_t* ___name_1;
// System.String System.Reflection.Emit.MonoResource::filename
String_t* ___filename_2;
// System.Reflection.ResourceAttributes System.Reflection.Emit.MonoResource::attrs
int32_t ___attrs_3;
// System.Int32 System.Reflection.Emit.MonoResource::offset
int32_t ___offset_4;
// System.IO.Stream System.Reflection.Emit.MonoResource::stream
Stream_t1273022909 * ___stream_5;
public:
inline static int32_t get_offset_of_data_0() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___data_0)); }
inline ByteU5BU5D_t4116647657* get_data_0() const { return ___data_0; }
inline ByteU5BU5D_t4116647657** get_address_of_data_0() { return &___data_0; }
inline void set_data_0(ByteU5BU5D_t4116647657* value)
{
___data_0 = value;
Il2CppCodeGenWriteBarrier((&___data_0), value);
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((&___name_1), value);
}
inline static int32_t get_offset_of_filename_2() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___filename_2)); }
inline String_t* get_filename_2() const { return ___filename_2; }
inline String_t** get_address_of_filename_2() { return &___filename_2; }
inline void set_filename_2(String_t* value)
{
___filename_2 = value;
Il2CppCodeGenWriteBarrier((&___filename_2), value);
}
inline static int32_t get_offset_of_attrs_3() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___attrs_3)); }
inline int32_t get_attrs_3() const { return ___attrs_3; }
inline int32_t* get_address_of_attrs_3() { return &___attrs_3; }
inline void set_attrs_3(int32_t value)
{
___attrs_3 = value;
}
inline static int32_t get_offset_of_offset_4() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___offset_4)); }
inline int32_t get_offset_4() const { return ___offset_4; }
inline int32_t* get_address_of_offset_4() { return &___offset_4; }
inline void set_offset_4(int32_t value)
{
___offset_4 = value;
}
inline static int32_t get_offset_of_stream_5() { return static_cast<int32_t>(offsetof(MonoResource_t4103430009, ___stream_5)); }
inline Stream_t1273022909 * get_stream_5() const { return ___stream_5; }
inline Stream_t1273022909 ** get_address_of_stream_5() { return &___stream_5; }
inline void set_stream_5(Stream_t1273022909 * value)
{
___stream_5 = value;
Il2CppCodeGenWriteBarrier((&___stream_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.Emit.MonoResource
struct MonoResource_t4103430009_marshaled_pinvoke
{
uint8_t* ___data_0;
char* ___name_1;
char* ___filename_2;
int32_t ___attrs_3;
int32_t ___offset_4;
Stream_t1273022909 * ___stream_5;
};
// Native definition for COM marshalling of System.Reflection.Emit.MonoResource
struct MonoResource_t4103430009_marshaled_com
{
uint8_t* ___data_0;
Il2CppChar* ___name_1;
Il2CppChar* ___filename_2;
int32_t ___attrs_3;
int32_t ___offset_4;
Stream_t1273022909 * ___stream_5;
};
#endif // MONORESOURCE_T4103430009_H
#ifndef ASSEMBLYBUILDER_T359885250_H
#define ASSEMBLYBUILDER_T359885250_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.AssemblyBuilder
struct AssemblyBuilder_t359885250 : public Assembly_t
{
public:
// System.UIntPtr System.Reflection.Emit.AssemblyBuilder::dynamic_assembly
uintptr_t ___dynamic_assembly_10;
// System.Reflection.MethodInfo System.Reflection.Emit.AssemblyBuilder::entry_point
MethodInfo_t * ___entry_point_11;
// System.Reflection.Emit.ModuleBuilder[] System.Reflection.Emit.AssemblyBuilder::modules
ModuleBuilderU5BU5D_t2441092650* ___modules_12;
// System.String System.Reflection.Emit.AssemblyBuilder::name
String_t* ___name_13;
// System.String System.Reflection.Emit.AssemblyBuilder::dir
String_t* ___dir_14;
// System.Reflection.Emit.CustomAttributeBuilder[] System.Reflection.Emit.AssemblyBuilder::cattrs
CustomAttributeBuilderU5BU5D_t2951373564* ___cattrs_15;
// System.Reflection.Emit.MonoResource[] System.Reflection.Emit.AssemblyBuilder::resources
MonoResourceU5BU5D_t979189380* ___resources_16;
// System.Byte[] System.Reflection.Emit.AssemblyBuilder::public_key
ByteU5BU5D_t4116647657* ___public_key_17;
// System.String System.Reflection.Emit.AssemblyBuilder::version
String_t* ___version_18;
// System.String System.Reflection.Emit.AssemblyBuilder::culture
String_t* ___culture_19;
// System.UInt32 System.Reflection.Emit.AssemblyBuilder::algid
uint32_t ___algid_20;
// System.UInt32 System.Reflection.Emit.AssemblyBuilder::flags
uint32_t ___flags_21;
// System.Reflection.Emit.PEFileKinds System.Reflection.Emit.AssemblyBuilder::pekind
int32_t ___pekind_22;
// System.Boolean System.Reflection.Emit.AssemblyBuilder::delay_sign
bool ___delay_sign_23;
// System.UInt32 System.Reflection.Emit.AssemblyBuilder::access
uint32_t ___access_24;
// System.Reflection.Module[] System.Reflection.Emit.AssemblyBuilder::loaded_modules
ModuleU5BU5D_t4238763736* ___loaded_modules_25;
// System.Reflection.Emit.MonoWin32Resource[] System.Reflection.Emit.AssemblyBuilder::win32_resources
MonoWin32ResourceU5BU5D_t4084032906* ___win32_resources_26;
// System.Reflection.Emit.RefEmitPermissionSet[] System.Reflection.Emit.AssemblyBuilder::permissions_minimum
RefEmitPermissionSetU5BU5D_t567451178* ___permissions_minimum_27;
// System.Reflection.Emit.RefEmitPermissionSet[] System.Reflection.Emit.AssemblyBuilder::permissions_optional
RefEmitPermissionSetU5BU5D_t567451178* ___permissions_optional_28;
// System.Reflection.Emit.RefEmitPermissionSet[] System.Reflection.Emit.AssemblyBuilder::permissions_refused
RefEmitPermissionSetU5BU5D_t567451178* ___permissions_refused_29;
// System.Reflection.PortableExecutableKinds System.Reflection.Emit.AssemblyBuilder::peKind
int32_t ___peKind_30;
// System.Reflection.ImageFileMachine System.Reflection.Emit.AssemblyBuilder::machine
int32_t ___machine_31;
// System.Boolean System.Reflection.Emit.AssemblyBuilder::corlib_internal
bool ___corlib_internal_32;
// System.Type[] System.Reflection.Emit.AssemblyBuilder::type_forwarders
TypeU5BU5D_t3940880105* ___type_forwarders_33;
// System.Byte[] System.Reflection.Emit.AssemblyBuilder::pktoken
ByteU5BU5D_t4116647657* ___pktoken_34;
// System.Type System.Reflection.Emit.AssemblyBuilder::corlib_object_type
Type_t * ___corlib_object_type_35;
// System.Type System.Reflection.Emit.AssemblyBuilder::corlib_value_type
Type_t * ___corlib_value_type_36;
// System.Type System.Reflection.Emit.AssemblyBuilder::corlib_enum_type
Type_t * ___corlib_enum_type_37;
// System.Type System.Reflection.Emit.AssemblyBuilder::corlib_void_type
Type_t * ___corlib_void_type_38;
// System.Collections.ArrayList System.Reflection.Emit.AssemblyBuilder::resource_writers
ArrayList_t2718874744 * ___resource_writers_39;
// System.Resources.Win32VersionResource System.Reflection.Emit.AssemblyBuilder::version_res
Win32VersionResource_t1367628464 * ___version_res_40;
// System.Boolean System.Reflection.Emit.AssemblyBuilder::created
bool ___created_41;
// System.Boolean System.Reflection.Emit.AssemblyBuilder::is_module_only
bool ___is_module_only_42;
// Mono.Security.StrongName System.Reflection.Emit.AssemblyBuilder::sn
StrongName_t4093849377 * ___sn_43;
// System.Reflection.Emit.NativeResourceType System.Reflection.Emit.AssemblyBuilder::native_resource
int32_t ___native_resource_44;
// System.Boolean System.Reflection.Emit.AssemblyBuilder::is_compiler_context
bool ___is_compiler_context_45;
// System.String System.Reflection.Emit.AssemblyBuilder::versioninfo_culture
String_t* ___versioninfo_culture_46;
// System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.AssemblyBuilder::manifest_module
ModuleBuilder_t731887691 * ___manifest_module_47;
public:
inline static int32_t get_offset_of_dynamic_assembly_10() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___dynamic_assembly_10)); }
inline uintptr_t get_dynamic_assembly_10() const { return ___dynamic_assembly_10; }
inline uintptr_t* get_address_of_dynamic_assembly_10() { return &___dynamic_assembly_10; }
inline void set_dynamic_assembly_10(uintptr_t value)
{
___dynamic_assembly_10 = value;
}
inline static int32_t get_offset_of_entry_point_11() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___entry_point_11)); }
inline MethodInfo_t * get_entry_point_11() const { return ___entry_point_11; }
inline MethodInfo_t ** get_address_of_entry_point_11() { return &___entry_point_11; }
inline void set_entry_point_11(MethodInfo_t * value)
{
___entry_point_11 = value;
Il2CppCodeGenWriteBarrier((&___entry_point_11), value);
}
inline static int32_t get_offset_of_modules_12() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___modules_12)); }
inline ModuleBuilderU5BU5D_t2441092650* get_modules_12() const { return ___modules_12; }
inline ModuleBuilderU5BU5D_t2441092650** get_address_of_modules_12() { return &___modules_12; }
inline void set_modules_12(ModuleBuilderU5BU5D_t2441092650* value)
{
___modules_12 = value;
Il2CppCodeGenWriteBarrier((&___modules_12), value);
}
inline static int32_t get_offset_of_name_13() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___name_13)); }
inline String_t* get_name_13() const { return ___name_13; }
inline String_t** get_address_of_name_13() { return &___name_13; }
inline void set_name_13(String_t* value)
{
___name_13 = value;
Il2CppCodeGenWriteBarrier((&___name_13), value);
}
inline static int32_t get_offset_of_dir_14() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___dir_14)); }
inline String_t* get_dir_14() const { return ___dir_14; }
inline String_t** get_address_of_dir_14() { return &___dir_14; }
inline void set_dir_14(String_t* value)
{
___dir_14 = value;
Il2CppCodeGenWriteBarrier((&___dir_14), value);
}
inline static int32_t get_offset_of_cattrs_15() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___cattrs_15)); }
inline CustomAttributeBuilderU5BU5D_t2951373564* get_cattrs_15() const { return ___cattrs_15; }
inline CustomAttributeBuilderU5BU5D_t2951373564** get_address_of_cattrs_15() { return &___cattrs_15; }
inline void set_cattrs_15(CustomAttributeBuilderU5BU5D_t2951373564* value)
{
___cattrs_15 = value;
Il2CppCodeGenWriteBarrier((&___cattrs_15), value);
}
inline static int32_t get_offset_of_resources_16() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___resources_16)); }
inline MonoResourceU5BU5D_t979189380* get_resources_16() const { return ___resources_16; }
inline MonoResourceU5BU5D_t979189380** get_address_of_resources_16() { return &___resources_16; }
inline void set_resources_16(MonoResourceU5BU5D_t979189380* value)
{
___resources_16 = value;
Il2CppCodeGenWriteBarrier((&___resources_16), value);
}
inline static int32_t get_offset_of_public_key_17() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___public_key_17)); }
inline ByteU5BU5D_t4116647657* get_public_key_17() const { return ___public_key_17; }
inline ByteU5BU5D_t4116647657** get_address_of_public_key_17() { return &___public_key_17; }
inline void set_public_key_17(ByteU5BU5D_t4116647657* value)
{
___public_key_17 = value;
Il2CppCodeGenWriteBarrier((&___public_key_17), value);
}
inline static int32_t get_offset_of_version_18() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___version_18)); }
inline String_t* get_version_18() const { return ___version_18; }
inline String_t** get_address_of_version_18() { return &___version_18; }
inline void set_version_18(String_t* value)
{
___version_18 = value;
Il2CppCodeGenWriteBarrier((&___version_18), value);
}
inline static int32_t get_offset_of_culture_19() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___culture_19)); }
inline String_t* get_culture_19() const { return ___culture_19; }
inline String_t** get_address_of_culture_19() { return &___culture_19; }
inline void set_culture_19(String_t* value)
{
___culture_19 = value;
Il2CppCodeGenWriteBarrier((&___culture_19), value);
}
inline static int32_t get_offset_of_algid_20() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___algid_20)); }
inline uint32_t get_algid_20() const { return ___algid_20; }
inline uint32_t* get_address_of_algid_20() { return &___algid_20; }
inline void set_algid_20(uint32_t value)
{
___algid_20 = value;
}
inline static int32_t get_offset_of_flags_21() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___flags_21)); }
inline uint32_t get_flags_21() const { return ___flags_21; }
inline uint32_t* get_address_of_flags_21() { return &___flags_21; }
inline void set_flags_21(uint32_t value)
{
___flags_21 = value;
}
inline static int32_t get_offset_of_pekind_22() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___pekind_22)); }
inline int32_t get_pekind_22() const { return ___pekind_22; }
inline int32_t* get_address_of_pekind_22() { return &___pekind_22; }
inline void set_pekind_22(int32_t value)
{
___pekind_22 = value;
}
inline static int32_t get_offset_of_delay_sign_23() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___delay_sign_23)); }
inline bool get_delay_sign_23() const { return ___delay_sign_23; }
inline bool* get_address_of_delay_sign_23() { return &___delay_sign_23; }
inline void set_delay_sign_23(bool value)
{
___delay_sign_23 = value;
}
inline static int32_t get_offset_of_access_24() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___access_24)); }
inline uint32_t get_access_24() const { return ___access_24; }
inline uint32_t* get_address_of_access_24() { return &___access_24; }
inline void set_access_24(uint32_t value)
{
___access_24 = value;
}
inline static int32_t get_offset_of_loaded_modules_25() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___loaded_modules_25)); }
inline ModuleU5BU5D_t4238763736* get_loaded_modules_25() const { return ___loaded_modules_25; }
inline ModuleU5BU5D_t4238763736** get_address_of_loaded_modules_25() { return &___loaded_modules_25; }
inline void set_loaded_modules_25(ModuleU5BU5D_t4238763736* value)
{
___loaded_modules_25 = value;
Il2CppCodeGenWriteBarrier((&___loaded_modules_25), value);
}
inline static int32_t get_offset_of_win32_resources_26() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___win32_resources_26)); }
inline MonoWin32ResourceU5BU5D_t4084032906* get_win32_resources_26() const { return ___win32_resources_26; }
inline MonoWin32ResourceU5BU5D_t4084032906** get_address_of_win32_resources_26() { return &___win32_resources_26; }
inline void set_win32_resources_26(MonoWin32ResourceU5BU5D_t4084032906* value)
{
___win32_resources_26 = value;
Il2CppCodeGenWriteBarrier((&___win32_resources_26), value);
}
inline static int32_t get_offset_of_permissions_minimum_27() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___permissions_minimum_27)); }
inline RefEmitPermissionSetU5BU5D_t567451178* get_permissions_minimum_27() const { return ___permissions_minimum_27; }
inline RefEmitPermissionSetU5BU5D_t567451178** get_address_of_permissions_minimum_27() { return &___permissions_minimum_27; }
inline void set_permissions_minimum_27(RefEmitPermissionSetU5BU5D_t567451178* value)
{
___permissions_minimum_27 = value;
Il2CppCodeGenWriteBarrier((&___permissions_minimum_27), value);
}
inline static int32_t get_offset_of_permissions_optional_28() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___permissions_optional_28)); }
inline RefEmitPermissionSetU5BU5D_t567451178* get_permissions_optional_28() const { return ___permissions_optional_28; }
inline RefEmitPermissionSetU5BU5D_t567451178** get_address_of_permissions_optional_28() { return &___permissions_optional_28; }
inline void set_permissions_optional_28(RefEmitPermissionSetU5BU5D_t567451178* value)
{
___permissions_optional_28 = value;
Il2CppCodeGenWriteBarrier((&___permissions_optional_28), value);
}
inline static int32_t get_offset_of_permissions_refused_29() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___permissions_refused_29)); }
inline RefEmitPermissionSetU5BU5D_t567451178* get_permissions_refused_29() const { return ___permissions_refused_29; }
inline RefEmitPermissionSetU5BU5D_t567451178** get_address_of_permissions_refused_29() { return &___permissions_refused_29; }
inline void set_permissions_refused_29(RefEmitPermissionSetU5BU5D_t567451178* value)
{
___permissions_refused_29 = value;
Il2CppCodeGenWriteBarrier((&___permissions_refused_29), value);
}
inline static int32_t get_offset_of_peKind_30() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___peKind_30)); }
inline int32_t get_peKind_30() const { return ___peKind_30; }
inline int32_t* get_address_of_peKind_30() { return &___peKind_30; }
inline void set_peKind_30(int32_t value)
{
___peKind_30 = value;
}
inline static int32_t get_offset_of_machine_31() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___machine_31)); }
inline int32_t get_machine_31() const { return ___machine_31; }
inline int32_t* get_address_of_machine_31() { return &___machine_31; }
inline void set_machine_31(int32_t value)
{
___machine_31 = value;
}
inline static int32_t get_offset_of_corlib_internal_32() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___corlib_internal_32)); }
inline bool get_corlib_internal_32() const { return ___corlib_internal_32; }
inline bool* get_address_of_corlib_internal_32() { return &___corlib_internal_32; }
inline void set_corlib_internal_32(bool value)
{
___corlib_internal_32 = value;
}
inline static int32_t get_offset_of_type_forwarders_33() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___type_forwarders_33)); }
inline TypeU5BU5D_t3940880105* get_type_forwarders_33() const { return ___type_forwarders_33; }
inline TypeU5BU5D_t3940880105** get_address_of_type_forwarders_33() { return &___type_forwarders_33; }
inline void set_type_forwarders_33(TypeU5BU5D_t3940880105* value)
{
___type_forwarders_33 = value;
Il2CppCodeGenWriteBarrier((&___type_forwarders_33), value);
}
inline static int32_t get_offset_of_pktoken_34() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___pktoken_34)); }
inline ByteU5BU5D_t4116647657* get_pktoken_34() const { return ___pktoken_34; }
inline ByteU5BU5D_t4116647657** get_address_of_pktoken_34() { return &___pktoken_34; }
inline void set_pktoken_34(ByteU5BU5D_t4116647657* value)
{
___pktoken_34 = value;
Il2CppCodeGenWriteBarrier((&___pktoken_34), value);
}
inline static int32_t get_offset_of_corlib_object_type_35() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___corlib_object_type_35)); }
inline Type_t * get_corlib_object_type_35() const { return ___corlib_object_type_35; }
inline Type_t ** get_address_of_corlib_object_type_35() { return &___corlib_object_type_35; }
inline void set_corlib_object_type_35(Type_t * value)
{
___corlib_object_type_35 = value;
Il2CppCodeGenWriteBarrier((&___corlib_object_type_35), value);
}
inline static int32_t get_offset_of_corlib_value_type_36() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___corlib_value_type_36)); }
inline Type_t * get_corlib_value_type_36() const { return ___corlib_value_type_36; }
inline Type_t ** get_address_of_corlib_value_type_36() { return &___corlib_value_type_36; }
inline void set_corlib_value_type_36(Type_t * value)
{
___corlib_value_type_36 = value;
Il2CppCodeGenWriteBarrier((&___corlib_value_type_36), value);
}
inline static int32_t get_offset_of_corlib_enum_type_37() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___corlib_enum_type_37)); }
inline Type_t * get_corlib_enum_type_37() const { return ___corlib_enum_type_37; }
inline Type_t ** get_address_of_corlib_enum_type_37() { return &___corlib_enum_type_37; }
inline void set_corlib_enum_type_37(Type_t * value)
{
___corlib_enum_type_37 = value;
Il2CppCodeGenWriteBarrier((&___corlib_enum_type_37), value);
}
inline static int32_t get_offset_of_corlib_void_type_38() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___corlib_void_type_38)); }
inline Type_t * get_corlib_void_type_38() const { return ___corlib_void_type_38; }
inline Type_t ** get_address_of_corlib_void_type_38() { return &___corlib_void_type_38; }
inline void set_corlib_void_type_38(Type_t * value)
{
___corlib_void_type_38 = value;
Il2CppCodeGenWriteBarrier((&___corlib_void_type_38), value);
}
inline static int32_t get_offset_of_resource_writers_39() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___resource_writers_39)); }
inline ArrayList_t2718874744 * get_resource_writers_39() const { return ___resource_writers_39; }
inline ArrayList_t2718874744 ** get_address_of_resource_writers_39() { return &___resource_writers_39; }
inline void set_resource_writers_39(ArrayList_t2718874744 * value)
{
___resource_writers_39 = value;
Il2CppCodeGenWriteBarrier((&___resource_writers_39), value);
}
inline static int32_t get_offset_of_version_res_40() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___version_res_40)); }
inline Win32VersionResource_t1367628464 * get_version_res_40() const { return ___version_res_40; }
inline Win32VersionResource_t1367628464 ** get_address_of_version_res_40() { return &___version_res_40; }
inline void set_version_res_40(Win32VersionResource_t1367628464 * value)
{
___version_res_40 = value;
Il2CppCodeGenWriteBarrier((&___version_res_40), value);
}
inline static int32_t get_offset_of_created_41() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___created_41)); }
inline bool get_created_41() const { return ___created_41; }
inline bool* get_address_of_created_41() { return &___created_41; }
inline void set_created_41(bool value)
{
___created_41 = value;
}
inline static int32_t get_offset_of_is_module_only_42() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___is_module_only_42)); }
inline bool get_is_module_only_42() const { return ___is_module_only_42; }
inline bool* get_address_of_is_module_only_42() { return &___is_module_only_42; }
inline void set_is_module_only_42(bool value)
{
___is_module_only_42 = value;
}
inline static int32_t get_offset_of_sn_43() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___sn_43)); }
inline StrongName_t4093849377 * get_sn_43() const { return ___sn_43; }
inline StrongName_t4093849377 ** get_address_of_sn_43() { return &___sn_43; }
inline void set_sn_43(StrongName_t4093849377 * value)
{
___sn_43 = value;
Il2CppCodeGenWriteBarrier((&___sn_43), value);
}
inline static int32_t get_offset_of_native_resource_44() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___native_resource_44)); }
inline int32_t get_native_resource_44() const { return ___native_resource_44; }
inline int32_t* get_address_of_native_resource_44() { return &___native_resource_44; }
inline void set_native_resource_44(int32_t value)
{
___native_resource_44 = value;
}
inline static int32_t get_offset_of_is_compiler_context_45() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___is_compiler_context_45)); }
inline bool get_is_compiler_context_45() const { return ___is_compiler_context_45; }
inline bool* get_address_of_is_compiler_context_45() { return &___is_compiler_context_45; }
inline void set_is_compiler_context_45(bool value)
{
___is_compiler_context_45 = value;
}
inline static int32_t get_offset_of_versioninfo_culture_46() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___versioninfo_culture_46)); }
inline String_t* get_versioninfo_culture_46() const { return ___versioninfo_culture_46; }
inline String_t** get_address_of_versioninfo_culture_46() { return &___versioninfo_culture_46; }
inline void set_versioninfo_culture_46(String_t* value)
{
___versioninfo_culture_46 = value;
Il2CppCodeGenWriteBarrier((&___versioninfo_culture_46), value);
}
inline static int32_t get_offset_of_manifest_module_47() { return static_cast<int32_t>(offsetof(AssemblyBuilder_t359885250, ___manifest_module_47)); }
inline ModuleBuilder_t731887691 * get_manifest_module_47() const { return ___manifest_module_47; }
inline ModuleBuilder_t731887691 ** get_address_of_manifest_module_47() { return &___manifest_module_47; }
inline void set_manifest_module_47(ModuleBuilder_t731887691 * value)
{
___manifest_module_47 = value;
Il2CppCodeGenWriteBarrier((&___manifest_module_47), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYBUILDER_T359885250_H
#ifndef MULTICASTDELEGATE_T_H
#define MULTICASTDELEGATE_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.MulticastDelegate
struct MulticastDelegate_t : public Delegate_t1188392813
{
public:
// System.MulticastDelegate System.MulticastDelegate::prev
MulticastDelegate_t * ___prev_9;
// System.MulticastDelegate System.MulticastDelegate::kpm_next
MulticastDelegate_t * ___kpm_next_10;
public:
inline static int32_t get_offset_of_prev_9() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___prev_9)); }
inline MulticastDelegate_t * get_prev_9() const { return ___prev_9; }
inline MulticastDelegate_t ** get_address_of_prev_9() { return &___prev_9; }
inline void set_prev_9(MulticastDelegate_t * value)
{
___prev_9 = value;
Il2CppCodeGenWriteBarrier((&___prev_9), value);
}
inline static int32_t get_offset_of_kpm_next_10() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___kpm_next_10)); }
inline MulticastDelegate_t * get_kpm_next_10() const { return ___kpm_next_10; }
inline MulticastDelegate_t ** get_address_of_kpm_next_10() { return &___kpm_next_10; }
inline void set_kpm_next_10(MulticastDelegate_t * value)
{
___kpm_next_10 = value;
Il2CppCodeGenWriteBarrier((&___kpm_next_10), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MULTICASTDELEGATE_T_H
#ifndef MEMBERINFOSERIALIZATIONHOLDER_T1943730831_H
#define MEMBERINFOSERIALIZATIONHOLDER_T1943730831_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MemberInfoSerializationHolder
struct MemberInfoSerializationHolder_t1943730831 : public RuntimeObject
{
public:
// System.String System.Reflection.MemberInfoSerializationHolder::_memberName
String_t* ____memberName_0;
// System.String System.Reflection.MemberInfoSerializationHolder::_memberSignature
String_t* ____memberSignature_1;
// System.Reflection.MemberTypes System.Reflection.MemberInfoSerializationHolder::_memberType
int32_t ____memberType_2;
// System.Type System.Reflection.MemberInfoSerializationHolder::_reflectedType
Type_t * ____reflectedType_3;
// System.Type[] System.Reflection.MemberInfoSerializationHolder::_genericArguments
TypeU5BU5D_t3940880105* ____genericArguments_4;
public:
inline static int32_t get_offset_of__memberName_0() { return static_cast<int32_t>(offsetof(MemberInfoSerializationHolder_t1943730831, ____memberName_0)); }
inline String_t* get__memberName_0() const { return ____memberName_0; }
inline String_t** get_address_of__memberName_0() { return &____memberName_0; }
inline void set__memberName_0(String_t* value)
{
____memberName_0 = value;
Il2CppCodeGenWriteBarrier((&____memberName_0), value);
}
inline static int32_t get_offset_of__memberSignature_1() { return static_cast<int32_t>(offsetof(MemberInfoSerializationHolder_t1943730831, ____memberSignature_1)); }
inline String_t* get__memberSignature_1() const { return ____memberSignature_1; }
inline String_t** get_address_of__memberSignature_1() { return &____memberSignature_1; }
inline void set__memberSignature_1(String_t* value)
{
____memberSignature_1 = value;
Il2CppCodeGenWriteBarrier((&____memberSignature_1), value);
}
inline static int32_t get_offset_of__memberType_2() { return static_cast<int32_t>(offsetof(MemberInfoSerializationHolder_t1943730831, ____memberType_2)); }
inline int32_t get__memberType_2() const { return ____memberType_2; }
inline int32_t* get_address_of__memberType_2() { return &____memberType_2; }
inline void set__memberType_2(int32_t value)
{
____memberType_2 = value;
}
inline static int32_t get_offset_of__reflectedType_3() { return static_cast<int32_t>(offsetof(MemberInfoSerializationHolder_t1943730831, ____reflectedType_3)); }
inline Type_t * get__reflectedType_3() const { return ____reflectedType_3; }
inline Type_t ** get_address_of__reflectedType_3() { return &____reflectedType_3; }
inline void set__reflectedType_3(Type_t * value)
{
____reflectedType_3 = value;
Il2CppCodeGenWriteBarrier((&____reflectedType_3), value);
}
inline static int32_t get_offset_of__genericArguments_4() { return static_cast<int32_t>(offsetof(MemberInfoSerializationHolder_t1943730831, ____genericArguments_4)); }
inline TypeU5BU5D_t3940880105* get__genericArguments_4() const { return ____genericArguments_4; }
inline TypeU5BU5D_t3940880105** get_address_of__genericArguments_4() { return &____genericArguments_4; }
inline void set__genericArguments_4(TypeU5BU5D_t3940880105* value)
{
____genericArguments_4 = value;
Il2CppCodeGenWriteBarrier((&____genericArguments_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MEMBERINFOSERIALIZATIONHOLDER_T1943730831_H
#ifndef CONSTRUCTORBUILDER_T2813524108_H
#define CONSTRUCTORBUILDER_T2813524108_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ConstructorBuilder
struct ConstructorBuilder_t2813524108 : public ConstructorInfo_t5769829
{
public:
// System.Reflection.Emit.ILGenerator System.Reflection.Emit.ConstructorBuilder::ilgen
ILGenerator_t1388622344 * ___ilgen_2;
// System.Type[] System.Reflection.Emit.ConstructorBuilder::parameters
TypeU5BU5D_t3940880105* ___parameters_3;
// System.Reflection.MethodAttributes System.Reflection.Emit.ConstructorBuilder::attrs
int32_t ___attrs_4;
// System.Reflection.MethodImplAttributes System.Reflection.Emit.ConstructorBuilder::iattrs
int32_t ___iattrs_5;
// System.Int32 System.Reflection.Emit.ConstructorBuilder::table_idx
int32_t ___table_idx_6;
// System.Reflection.CallingConventions System.Reflection.Emit.ConstructorBuilder::call_conv
int32_t ___call_conv_7;
// System.Reflection.Emit.TypeBuilder System.Reflection.Emit.ConstructorBuilder::type
TypeBuilder_t1073948154 * ___type_8;
// System.Reflection.Emit.ParameterBuilder[] System.Reflection.Emit.ConstructorBuilder::pinfo
ParameterBuilderU5BU5D_t3054868058* ___pinfo_9;
// System.Boolean System.Reflection.Emit.ConstructorBuilder::init_locals
bool ___init_locals_10;
// System.Type[][] System.Reflection.Emit.ConstructorBuilder::paramModReq
TypeU5BU5DU5BU5D_t4042077012* ___paramModReq_11;
// System.Type[][] System.Reflection.Emit.ConstructorBuilder::paramModOpt
TypeU5BU5DU5BU5D_t4042077012* ___paramModOpt_12;
public:
inline static int32_t get_offset_of_ilgen_2() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___ilgen_2)); }
inline ILGenerator_t1388622344 * get_ilgen_2() const { return ___ilgen_2; }
inline ILGenerator_t1388622344 ** get_address_of_ilgen_2() { return &___ilgen_2; }
inline void set_ilgen_2(ILGenerator_t1388622344 * value)
{
___ilgen_2 = value;
Il2CppCodeGenWriteBarrier((&___ilgen_2), value);
}
inline static int32_t get_offset_of_parameters_3() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___parameters_3)); }
inline TypeU5BU5D_t3940880105* get_parameters_3() const { return ___parameters_3; }
inline TypeU5BU5D_t3940880105** get_address_of_parameters_3() { return &___parameters_3; }
inline void set_parameters_3(TypeU5BU5D_t3940880105* value)
{
___parameters_3 = value;
Il2CppCodeGenWriteBarrier((&___parameters_3), value);
}
inline static int32_t get_offset_of_attrs_4() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___attrs_4)); }
inline int32_t get_attrs_4() const { return ___attrs_4; }
inline int32_t* get_address_of_attrs_4() { return &___attrs_4; }
inline void set_attrs_4(int32_t value)
{
___attrs_4 = value;
}
inline static int32_t get_offset_of_iattrs_5() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___iattrs_5)); }
inline int32_t get_iattrs_5() const { return ___iattrs_5; }
inline int32_t* get_address_of_iattrs_5() { return &___iattrs_5; }
inline void set_iattrs_5(int32_t value)
{
___iattrs_5 = value;
}
inline static int32_t get_offset_of_table_idx_6() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___table_idx_6)); }
inline int32_t get_table_idx_6() const { return ___table_idx_6; }
inline int32_t* get_address_of_table_idx_6() { return &___table_idx_6; }
inline void set_table_idx_6(int32_t value)
{
___table_idx_6 = value;
}
inline static int32_t get_offset_of_call_conv_7() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___call_conv_7)); }
inline int32_t get_call_conv_7() const { return ___call_conv_7; }
inline int32_t* get_address_of_call_conv_7() { return &___call_conv_7; }
inline void set_call_conv_7(int32_t value)
{
___call_conv_7 = value;
}
inline static int32_t get_offset_of_type_8() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___type_8)); }
inline TypeBuilder_t1073948154 * get_type_8() const { return ___type_8; }
inline TypeBuilder_t1073948154 ** get_address_of_type_8() { return &___type_8; }
inline void set_type_8(TypeBuilder_t1073948154 * value)
{
___type_8 = value;
Il2CppCodeGenWriteBarrier((&___type_8), value);
}
inline static int32_t get_offset_of_pinfo_9() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___pinfo_9)); }
inline ParameterBuilderU5BU5D_t3054868058* get_pinfo_9() const { return ___pinfo_9; }
inline ParameterBuilderU5BU5D_t3054868058** get_address_of_pinfo_9() { return &___pinfo_9; }
inline void set_pinfo_9(ParameterBuilderU5BU5D_t3054868058* value)
{
___pinfo_9 = value;
Il2CppCodeGenWriteBarrier((&___pinfo_9), value);
}
inline static int32_t get_offset_of_init_locals_10() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___init_locals_10)); }
inline bool get_init_locals_10() const { return ___init_locals_10; }
inline bool* get_address_of_init_locals_10() { return &___init_locals_10; }
inline void set_init_locals_10(bool value)
{
___init_locals_10 = value;
}
inline static int32_t get_offset_of_paramModReq_11() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___paramModReq_11)); }
inline TypeU5BU5DU5BU5D_t4042077012* get_paramModReq_11() const { return ___paramModReq_11; }
inline TypeU5BU5DU5BU5D_t4042077012** get_address_of_paramModReq_11() { return &___paramModReq_11; }
inline void set_paramModReq_11(TypeU5BU5DU5BU5D_t4042077012* value)
{
___paramModReq_11 = value;
Il2CppCodeGenWriteBarrier((&___paramModReq_11), value);
}
inline static int32_t get_offset_of_paramModOpt_12() { return static_cast<int32_t>(offsetof(ConstructorBuilder_t2813524108, ___paramModOpt_12)); }
inline TypeU5BU5DU5BU5D_t4042077012* get_paramModOpt_12() const { return ___paramModOpt_12; }
inline TypeU5BU5DU5BU5D_t4042077012** get_address_of_paramModOpt_12() { return &___paramModOpt_12; }
inline void set_paramModOpt_12(TypeU5BU5DU5BU5D_t4042077012* value)
{
___paramModOpt_12 = value;
Il2CppCodeGenWriteBarrier((&___paramModOpt_12), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // CONSTRUCTORBUILDER_T2813524108_H
#ifndef MONOEVENTINFO_T346866618_H
#define MONOEVENTINFO_T346866618_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoEventInfo
struct MonoEventInfo_t346866618
{
public:
// System.Type System.Reflection.MonoEventInfo::declaring_type
Type_t * ___declaring_type_0;
// System.Type System.Reflection.MonoEventInfo::reflected_type
Type_t * ___reflected_type_1;
// System.String System.Reflection.MonoEventInfo::name
String_t* ___name_2;
// System.Reflection.MethodInfo System.Reflection.MonoEventInfo::add_method
MethodInfo_t * ___add_method_3;
// System.Reflection.MethodInfo System.Reflection.MonoEventInfo::remove_method
MethodInfo_t * ___remove_method_4;
// System.Reflection.MethodInfo System.Reflection.MonoEventInfo::raise_method
MethodInfo_t * ___raise_method_5;
// System.Reflection.EventAttributes System.Reflection.MonoEventInfo::attrs
int32_t ___attrs_6;
// System.Reflection.MethodInfo[] System.Reflection.MonoEventInfo::other_methods
MethodInfoU5BU5D_t2572182361* ___other_methods_7;
public:
inline static int32_t get_offset_of_declaring_type_0() { return static_cast<int32_t>(offsetof(MonoEventInfo_t346866618, ___declaring_type_0)); }
inline Type_t * get_declaring_type_0() const { return ___declaring_type_0; }
inline Type_t ** get_address_of_declaring_type_0() { return &___declaring_type_0; }
inline void set_declaring_type_0(Type_t * value)
{
___declaring_type_0 = value;
Il2CppCodeGenWriteBarrier((&___declaring_type_0), value);
}
inline static int32_t get_offset_of_reflected_type_1() { return static_cast<int32_t>(offsetof(MonoEventInfo_t346866618, ___reflected_type_1)); }
inline Type_t * get_reflected_type_1() const { return ___reflected_type_1; }
inline Type_t ** get_address_of_reflected_type_1() { return &___reflected_type_1; }
inline void set_reflected_type_1(Type_t * value)
{
___reflected_type_1 = value;
Il2CppCodeGenWriteBarrier((&___reflected_type_1), value);
}
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(MonoEventInfo_t346866618, ___name_2)); }
inline String_t* get_name_2() const { return ___name_2; }
inline String_t** get_address_of_name_2() { return &___name_2; }
inline void set_name_2(String_t* value)
{
___name_2 = value;
Il2CppCodeGenWriteBarrier((&___name_2), value);
}
inline static int32_t get_offset_of_add_method_3() { return static_cast<int32_t>(offsetof(MonoEventInfo_t346866618, ___add_method_3)); }
inline MethodInfo_t * get_add_method_3() const { return ___add_method_3; }
inline MethodInfo_t ** get_address_of_add_method_3() { return &___add_method_3; }
inline void set_add_method_3(MethodInfo_t * value)
{
___add_method_3 = value;
Il2CppCodeGenWriteBarrier((&___add_method_3), value);
}
inline static int32_t get_offset_of_remove_method_4() { return static_cast<int32_t>(offsetof(MonoEventInfo_t346866618, ___remove_method_4)); }
inline MethodInfo_t * get_remove_method_4() const { return ___remove_method_4; }
inline MethodInfo_t ** get_address_of_remove_method_4() { return &___remove_method_4; }
inline void set_remove_method_4(MethodInfo_t * value)
{
___remove_method_4 = value;
Il2CppCodeGenWriteBarrier((&___remove_method_4), value);
}
inline static int32_t get_offset_of_raise_method_5() { return static_cast<int32_t>(offsetof(MonoEventInfo_t346866618, ___raise_method_5)); }
inline MethodInfo_t * get_raise_method_5() const { return ___raise_method_5; }
inline MethodInfo_t ** get_address_of_raise_method_5() { return &___raise_method_5; }
inline void set_raise_method_5(MethodInfo_t * value)
{
___raise_method_5 = value;
Il2CppCodeGenWriteBarrier((&___raise_method_5), value);
}
inline static int32_t get_offset_of_attrs_6() { return static_cast<int32_t>(offsetof(MonoEventInfo_t346866618, ___attrs_6)); }
inline int32_t get_attrs_6() const { return ___attrs_6; }
inline int32_t* get_address_of_attrs_6() { return &___attrs_6; }
inline void set_attrs_6(int32_t value)
{
___attrs_6 = value;
}
inline static int32_t get_offset_of_other_methods_7() { return static_cast<int32_t>(offsetof(MonoEventInfo_t346866618, ___other_methods_7)); }
inline MethodInfoU5BU5D_t2572182361* get_other_methods_7() const { return ___other_methods_7; }
inline MethodInfoU5BU5D_t2572182361** get_address_of_other_methods_7() { return &___other_methods_7; }
inline void set_other_methods_7(MethodInfoU5BU5D_t2572182361* value)
{
___other_methods_7 = value;
Il2CppCodeGenWriteBarrier((&___other_methods_7), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.MonoEventInfo
struct MonoEventInfo_t346866618_marshaled_pinvoke
{
Type_t * ___declaring_type_0;
Type_t * ___reflected_type_1;
char* ___name_2;
MethodInfo_t * ___add_method_3;
MethodInfo_t * ___remove_method_4;
MethodInfo_t * ___raise_method_5;
int32_t ___attrs_6;
MethodInfoU5BU5D_t2572182361* ___other_methods_7;
};
// Native definition for COM marshalling of System.Reflection.MonoEventInfo
struct MonoEventInfo_t346866618_marshaled_com
{
Type_t * ___declaring_type_0;
Type_t * ___reflected_type_1;
Il2CppChar* ___name_2;
MethodInfo_t * ___add_method_3;
MethodInfo_t * ___remove_method_4;
MethodInfo_t * ___raise_method_5;
int32_t ___attrs_6;
MethodInfoU5BU5D_t2572182361* ___other_methods_7;
};
#endif // MONOEVENTINFO_T346866618_H
#ifndef MONOMETHODINFO_T1248819020_H
#define MONOMETHODINFO_T1248819020_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoMethodInfo
struct MonoMethodInfo_t1248819020
{
public:
// System.Type System.Reflection.MonoMethodInfo::parent
Type_t * ___parent_0;
// System.Type System.Reflection.MonoMethodInfo::ret
Type_t * ___ret_1;
// System.Reflection.MethodAttributes System.Reflection.MonoMethodInfo::attrs
int32_t ___attrs_2;
// System.Reflection.MethodImplAttributes System.Reflection.MonoMethodInfo::iattrs
int32_t ___iattrs_3;
// System.Reflection.CallingConventions System.Reflection.MonoMethodInfo::callconv
int32_t ___callconv_4;
public:
inline static int32_t get_offset_of_parent_0() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t1248819020, ___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((&___parent_0), value);
}
inline static int32_t get_offset_of_ret_1() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t1248819020, ___ret_1)); }
inline Type_t * get_ret_1() const { return ___ret_1; }
inline Type_t ** get_address_of_ret_1() { return &___ret_1; }
inline void set_ret_1(Type_t * value)
{
___ret_1 = value;
Il2CppCodeGenWriteBarrier((&___ret_1), value);
}
inline static int32_t get_offset_of_attrs_2() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t1248819020, ___attrs_2)); }
inline int32_t get_attrs_2() const { return ___attrs_2; }
inline int32_t* get_address_of_attrs_2() { return &___attrs_2; }
inline void set_attrs_2(int32_t value)
{
___attrs_2 = value;
}
inline static int32_t get_offset_of_iattrs_3() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t1248819020, ___iattrs_3)); }
inline int32_t get_iattrs_3() const { return ___iattrs_3; }
inline int32_t* get_address_of_iattrs_3() { return &___iattrs_3; }
inline void set_iattrs_3(int32_t value)
{
___iattrs_3 = value;
}
inline static int32_t get_offset_of_callconv_4() { return static_cast<int32_t>(offsetof(MonoMethodInfo_t1248819020, ___callconv_4)); }
inline int32_t get_callconv_4() const { return ___callconv_4; }
inline int32_t* get_address_of_callconv_4() { return &___callconv_4; }
inline void set_callconv_4(int32_t value)
{
___callconv_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.MonoMethodInfo
struct MonoMethodInfo_t1248819020_marshaled_pinvoke
{
Type_t * ___parent_0;
Type_t * ___ret_1;
int32_t ___attrs_2;
int32_t ___iattrs_3;
int32_t ___callconv_4;
};
// Native definition for COM marshalling of System.Reflection.MonoMethodInfo
struct MonoMethodInfo_t1248819020_marshaled_com
{
Type_t * ___parent_0;
Type_t * ___ret_1;
int32_t ___attrs_2;
int32_t ___iattrs_3;
int32_t ___callconv_4;
};
#endif // MONOMETHODINFO_T1248819020_H
#ifndef MONOMETHOD_T_H
#define MONOMETHOD_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoMethod
struct MonoMethod_t : public MethodInfo_t
{
public:
// System.IntPtr System.Reflection.MonoMethod::mhandle
intptr_t ___mhandle_0;
// System.String System.Reflection.MonoMethod::name
String_t* ___name_1;
// System.Type System.Reflection.MonoMethod::reftype
Type_t * ___reftype_2;
public:
inline static int32_t get_offset_of_mhandle_0() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___mhandle_0)); }
inline intptr_t get_mhandle_0() const { return ___mhandle_0; }
inline intptr_t* get_address_of_mhandle_0() { return &___mhandle_0; }
inline void set_mhandle_0(intptr_t value)
{
___mhandle_0 = value;
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((&___name_1), value);
}
inline static int32_t get_offset_of_reftype_2() { return static_cast<int32_t>(offsetof(MonoMethod_t, ___reftype_2)); }
inline Type_t * get_reftype_2() const { return ___reftype_2; }
inline Type_t ** get_address_of_reftype_2() { return &___reftype_2; }
inline void set_reftype_2(Type_t * value)
{
___reftype_2 = value;
Il2CppCodeGenWriteBarrier((&___reftype_2), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOMETHOD_T_H
#ifndef MONOCMETHOD_T3191134373_H
#define MONOCMETHOD_T3191134373_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoCMethod
struct MonoCMethod_t3191134373 : public ConstructorInfo_t5769829
{
public:
// System.IntPtr System.Reflection.MonoCMethod::mhandle
intptr_t ___mhandle_2;
// System.String System.Reflection.MonoCMethod::name
String_t* ___name_3;
// System.Type System.Reflection.MonoCMethod::reftype
Type_t * ___reftype_4;
public:
inline static int32_t get_offset_of_mhandle_2() { return static_cast<int32_t>(offsetof(MonoCMethod_t3191134373, ___mhandle_2)); }
inline intptr_t get_mhandle_2() const { return ___mhandle_2; }
inline intptr_t* get_address_of_mhandle_2() { return &___mhandle_2; }
inline void set_mhandle_2(intptr_t value)
{
___mhandle_2 = value;
}
inline static int32_t get_offset_of_name_3() { return static_cast<int32_t>(offsetof(MonoCMethod_t3191134373, ___name_3)); }
inline String_t* get_name_3() const { return ___name_3; }
inline String_t** get_address_of_name_3() { return &___name_3; }
inline void set_name_3(String_t* value)
{
___name_3 = value;
Il2CppCodeGenWriteBarrier((&___name_3), value);
}
inline static int32_t get_offset_of_reftype_4() { return static_cast<int32_t>(offsetof(MonoCMethod_t3191134373, ___reftype_4)); }
inline Type_t * get_reftype_4() const { return ___reftype_4; }
inline Type_t ** get_address_of_reftype_4() { return &___reftype_4; }
inline void set_reftype_4(Type_t * value)
{
___reftype_4 = value;
Il2CppCodeGenWriteBarrier((&___reftype_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOCMETHOD_T3191134373_H
#ifndef MONOPROPERTYINFO_T3087356066_H
#define MONOPROPERTYINFO_T3087356066_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_t3087356066
{
public:
// System.Type System.Reflection.MonoPropertyInfo::parent
Type_t * ___parent_0;
// System.String System.Reflection.MonoPropertyInfo::name
String_t* ___name_1;
// System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::get_method
MethodInfo_t * ___get_method_2;
// System.Reflection.MethodInfo System.Reflection.MonoPropertyInfo::set_method
MethodInfo_t * ___set_method_3;
// System.Reflection.PropertyAttributes System.Reflection.MonoPropertyInfo::attrs
int32_t ___attrs_4;
public:
inline static int32_t get_offset_of_parent_0() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_t3087356066, ___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((&___parent_0), value);
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_t3087356066, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((&___name_1), value);
}
inline static int32_t get_offset_of_get_method_2() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_t3087356066, ___get_method_2)); }
inline MethodInfo_t * get_get_method_2() const { return ___get_method_2; }
inline MethodInfo_t ** get_address_of_get_method_2() { return &___get_method_2; }
inline void set_get_method_2(MethodInfo_t * value)
{
___get_method_2 = value;
Il2CppCodeGenWriteBarrier((&___get_method_2), value);
}
inline static int32_t get_offset_of_set_method_3() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_t3087356066, ___set_method_3)); }
inline MethodInfo_t * get_set_method_3() const { return ___set_method_3; }
inline MethodInfo_t ** get_address_of_set_method_3() { return &___set_method_3; }
inline void set_set_method_3(MethodInfo_t * value)
{
___set_method_3 = value;
Il2CppCodeGenWriteBarrier((&___set_method_3), value);
}
inline static int32_t get_offset_of_attrs_4() { return static_cast<int32_t>(offsetof(MonoPropertyInfo_t3087356066, ___attrs_4)); }
inline int32_t get_attrs_4() const { return ___attrs_4; }
inline int32_t* get_address_of_attrs_4() { return &___attrs_4; }
inline void set_attrs_4(int32_t value)
{
___attrs_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
// Native definition for P/Invoke marshalling of System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_t3087356066_marshaled_pinvoke
{
Type_t * ___parent_0;
char* ___name_1;
MethodInfo_t * ___get_method_2;
MethodInfo_t * ___set_method_3;
int32_t ___attrs_4;
};
// Native definition for COM marshalling of System.Reflection.MonoPropertyInfo
struct MonoPropertyInfo_t3087356066_marshaled_com
{
Type_t * ___parent_0;
Il2CppChar* ___name_1;
MethodInfo_t * ___get_method_2;
MethodInfo_t * ___set_method_3;
int32_t ___attrs_4;
};
#endif // MONOPROPERTYINFO_T3087356066_H
#ifndef UNMANAGEDMARSHAL_T984015687_H
#define UNMANAGEDMARSHAL_T984015687_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.UnmanagedMarshal
struct UnmanagedMarshal_t984015687 : public RuntimeObject
{
public:
// System.Int32 System.Reflection.Emit.UnmanagedMarshal::count
int32_t ___count_0;
// System.Runtime.InteropServices.UnmanagedType System.Reflection.Emit.UnmanagedMarshal::t
int32_t ___t_1;
// System.Runtime.InteropServices.UnmanagedType System.Reflection.Emit.UnmanagedMarshal::tbase
int32_t ___tbase_2;
// System.String System.Reflection.Emit.UnmanagedMarshal::guid
String_t* ___guid_3;
// System.String System.Reflection.Emit.UnmanagedMarshal::mcookie
String_t* ___mcookie_4;
// System.String System.Reflection.Emit.UnmanagedMarshal::marshaltype
String_t* ___marshaltype_5;
// System.Type System.Reflection.Emit.UnmanagedMarshal::marshaltyperef
Type_t * ___marshaltyperef_6;
// System.Int32 System.Reflection.Emit.UnmanagedMarshal::param_num
int32_t ___param_num_7;
// System.Boolean System.Reflection.Emit.UnmanagedMarshal::has_size
bool ___has_size_8;
public:
inline static int32_t get_offset_of_count_0() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___count_0)); }
inline int32_t get_count_0() const { return ___count_0; }
inline int32_t* get_address_of_count_0() { return &___count_0; }
inline void set_count_0(int32_t value)
{
___count_0 = value;
}
inline static int32_t get_offset_of_t_1() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___t_1)); }
inline int32_t get_t_1() const { return ___t_1; }
inline int32_t* get_address_of_t_1() { return &___t_1; }
inline void set_t_1(int32_t value)
{
___t_1 = value;
}
inline static int32_t get_offset_of_tbase_2() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___tbase_2)); }
inline int32_t get_tbase_2() const { return ___tbase_2; }
inline int32_t* get_address_of_tbase_2() { return &___tbase_2; }
inline void set_tbase_2(int32_t value)
{
___tbase_2 = value;
}
inline static int32_t get_offset_of_guid_3() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___guid_3)); }
inline String_t* get_guid_3() const { return ___guid_3; }
inline String_t** get_address_of_guid_3() { return &___guid_3; }
inline void set_guid_3(String_t* value)
{
___guid_3 = value;
Il2CppCodeGenWriteBarrier((&___guid_3), value);
}
inline static int32_t get_offset_of_mcookie_4() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___mcookie_4)); }
inline String_t* get_mcookie_4() const { return ___mcookie_4; }
inline String_t** get_address_of_mcookie_4() { return &___mcookie_4; }
inline void set_mcookie_4(String_t* value)
{
___mcookie_4 = value;
Il2CppCodeGenWriteBarrier((&___mcookie_4), value);
}
inline static int32_t get_offset_of_marshaltype_5() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___marshaltype_5)); }
inline String_t* get_marshaltype_5() const { return ___marshaltype_5; }
inline String_t** get_address_of_marshaltype_5() { return &___marshaltype_5; }
inline void set_marshaltype_5(String_t* value)
{
___marshaltype_5 = value;
Il2CppCodeGenWriteBarrier((&___marshaltype_5), value);
}
inline static int32_t get_offset_of_marshaltyperef_6() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___marshaltyperef_6)); }
inline Type_t * get_marshaltyperef_6() const { return ___marshaltyperef_6; }
inline Type_t ** get_address_of_marshaltyperef_6() { return &___marshaltyperef_6; }
inline void set_marshaltyperef_6(Type_t * value)
{
___marshaltyperef_6 = value;
Il2CppCodeGenWriteBarrier((&___marshaltyperef_6), value);
}
inline static int32_t get_offset_of_param_num_7() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___param_num_7)); }
inline int32_t get_param_num_7() const { return ___param_num_7; }
inline int32_t* get_address_of_param_num_7() { return &___param_num_7; }
inline void set_param_num_7(int32_t value)
{
___param_num_7 = value;
}
inline static int32_t get_offset_of_has_size_8() { return static_cast<int32_t>(offsetof(UnmanagedMarshal_t984015687, ___has_size_8)); }
inline bool get_has_size_8() const { return ___has_size_8; }
inline bool* get_address_of_has_size_8() { return &___has_size_8; }
inline void set_has_size_8(bool value)
{
___has_size_8 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // UNMANAGEDMARSHAL_T984015687_H
#ifndef ASSEMBLYNAME_T270931938_H
#define ASSEMBLYNAME_T270931938_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.AssemblyName
struct AssemblyName_t270931938 : public RuntimeObject
{
public:
// System.String System.Reflection.AssemblyName::name
String_t* ___name_0;
// System.String System.Reflection.AssemblyName::codebase
String_t* ___codebase_1;
// System.Int32 System.Reflection.AssemblyName::major
int32_t ___major_2;
// System.Int32 System.Reflection.AssemblyName::minor
int32_t ___minor_3;
// System.Int32 System.Reflection.AssemblyName::build
int32_t ___build_4;
// System.Int32 System.Reflection.AssemblyName::revision
int32_t ___revision_5;
// System.Globalization.CultureInfo System.Reflection.AssemblyName::cultureinfo
CultureInfo_t4157843068 * ___cultureinfo_6;
// System.Reflection.AssemblyNameFlags System.Reflection.AssemblyName::flags
int32_t ___flags_7;
// System.Configuration.Assemblies.AssemblyHashAlgorithm System.Reflection.AssemblyName::hashalg
int32_t ___hashalg_8;
// System.Reflection.StrongNameKeyPair System.Reflection.AssemblyName::keypair
StrongNameKeyPair_t3411219591 * ___keypair_9;
// System.Byte[] System.Reflection.AssemblyName::publicKey
ByteU5BU5D_t4116647657* ___publicKey_10;
// System.Byte[] System.Reflection.AssemblyName::keyToken
ByteU5BU5D_t4116647657* ___keyToken_11;
// System.Configuration.Assemblies.AssemblyVersionCompatibility System.Reflection.AssemblyName::versioncompat
int32_t ___versioncompat_12;
// System.Version System.Reflection.AssemblyName::version
Version_t3456873960 * ___version_13;
// System.Reflection.ProcessorArchitecture System.Reflection.AssemblyName::processor_architecture
int32_t ___processor_architecture_14;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
inline static int32_t get_offset_of_codebase_1() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___codebase_1)); }
inline String_t* get_codebase_1() const { return ___codebase_1; }
inline String_t** get_address_of_codebase_1() { return &___codebase_1; }
inline void set_codebase_1(String_t* value)
{
___codebase_1 = value;
Il2CppCodeGenWriteBarrier((&___codebase_1), value);
}
inline static int32_t get_offset_of_major_2() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___major_2)); }
inline int32_t get_major_2() const { return ___major_2; }
inline int32_t* get_address_of_major_2() { return &___major_2; }
inline void set_major_2(int32_t value)
{
___major_2 = value;
}
inline static int32_t get_offset_of_minor_3() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___minor_3)); }
inline int32_t get_minor_3() const { return ___minor_3; }
inline int32_t* get_address_of_minor_3() { return &___minor_3; }
inline void set_minor_3(int32_t value)
{
___minor_3 = value;
}
inline static int32_t get_offset_of_build_4() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___build_4)); }
inline int32_t get_build_4() const { return ___build_4; }
inline int32_t* get_address_of_build_4() { return &___build_4; }
inline void set_build_4(int32_t value)
{
___build_4 = value;
}
inline static int32_t get_offset_of_revision_5() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___revision_5)); }
inline int32_t get_revision_5() const { return ___revision_5; }
inline int32_t* get_address_of_revision_5() { return &___revision_5; }
inline void set_revision_5(int32_t value)
{
___revision_5 = value;
}
inline static int32_t get_offset_of_cultureinfo_6() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___cultureinfo_6)); }
inline CultureInfo_t4157843068 * get_cultureinfo_6() const { return ___cultureinfo_6; }
inline CultureInfo_t4157843068 ** get_address_of_cultureinfo_6() { return &___cultureinfo_6; }
inline void set_cultureinfo_6(CultureInfo_t4157843068 * value)
{
___cultureinfo_6 = value;
Il2CppCodeGenWriteBarrier((&___cultureinfo_6), value);
}
inline static int32_t get_offset_of_flags_7() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___flags_7)); }
inline int32_t get_flags_7() const { return ___flags_7; }
inline int32_t* get_address_of_flags_7() { return &___flags_7; }
inline void set_flags_7(int32_t value)
{
___flags_7 = value;
}
inline static int32_t get_offset_of_hashalg_8() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___hashalg_8)); }
inline int32_t get_hashalg_8() const { return ___hashalg_8; }
inline int32_t* get_address_of_hashalg_8() { return &___hashalg_8; }
inline void set_hashalg_8(int32_t value)
{
___hashalg_8 = value;
}
inline static int32_t get_offset_of_keypair_9() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___keypair_9)); }
inline StrongNameKeyPair_t3411219591 * get_keypair_9() const { return ___keypair_9; }
inline StrongNameKeyPair_t3411219591 ** get_address_of_keypair_9() { return &___keypair_9; }
inline void set_keypair_9(StrongNameKeyPair_t3411219591 * value)
{
___keypair_9 = value;
Il2CppCodeGenWriteBarrier((&___keypair_9), value);
}
inline static int32_t get_offset_of_publicKey_10() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___publicKey_10)); }
inline ByteU5BU5D_t4116647657* get_publicKey_10() const { return ___publicKey_10; }
inline ByteU5BU5D_t4116647657** get_address_of_publicKey_10() { return &___publicKey_10; }
inline void set_publicKey_10(ByteU5BU5D_t4116647657* value)
{
___publicKey_10 = value;
Il2CppCodeGenWriteBarrier((&___publicKey_10), value);
}
inline static int32_t get_offset_of_keyToken_11() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___keyToken_11)); }
inline ByteU5BU5D_t4116647657* get_keyToken_11() const { return ___keyToken_11; }
inline ByteU5BU5D_t4116647657** get_address_of_keyToken_11() { return &___keyToken_11; }
inline void set_keyToken_11(ByteU5BU5D_t4116647657* value)
{
___keyToken_11 = value;
Il2CppCodeGenWriteBarrier((&___keyToken_11), value);
}
inline static int32_t get_offset_of_versioncompat_12() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___versioncompat_12)); }
inline int32_t get_versioncompat_12() const { return ___versioncompat_12; }
inline int32_t* get_address_of_versioncompat_12() { return &___versioncompat_12; }
inline void set_versioncompat_12(int32_t value)
{
___versioncompat_12 = value;
}
inline static int32_t get_offset_of_version_13() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___version_13)); }
inline Version_t3456873960 * get_version_13() const { return ___version_13; }
inline Version_t3456873960 ** get_address_of_version_13() { return &___version_13; }
inline void set_version_13(Version_t3456873960 * value)
{
___version_13 = value;
Il2CppCodeGenWriteBarrier((&___version_13), value);
}
inline static int32_t get_offset_of_processor_architecture_14() { return static_cast<int32_t>(offsetof(AssemblyName_t270931938, ___processor_architecture_14)); }
inline int32_t get_processor_architecture_14() const { return ___processor_architecture_14; }
inline int32_t* get_address_of_processor_architecture_14() { return &___processor_architecture_14; }
inline void set_processor_architecture_14(int32_t value)
{
___processor_architecture_14 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ASSEMBLYNAME_T270931938_H
#ifndef PARAMETERINFO_T1861056598_H
#define PARAMETERINFO_T1861056598_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.ParameterInfo
struct ParameterInfo_t1861056598 : public RuntimeObject
{
public:
// System.Type System.Reflection.ParameterInfo::ClassImpl
Type_t * ___ClassImpl_0;
// System.Object System.Reflection.ParameterInfo::DefaultValueImpl
RuntimeObject * ___DefaultValueImpl_1;
// System.Reflection.MemberInfo System.Reflection.ParameterInfo::MemberImpl
MemberInfo_t * ___MemberImpl_2;
// System.String System.Reflection.ParameterInfo::NameImpl
String_t* ___NameImpl_3;
// System.Int32 System.Reflection.ParameterInfo::PositionImpl
int32_t ___PositionImpl_4;
// System.Reflection.ParameterAttributes System.Reflection.ParameterInfo::AttrsImpl
int32_t ___AttrsImpl_5;
// System.Reflection.Emit.UnmanagedMarshal System.Reflection.ParameterInfo::marshalAs
UnmanagedMarshal_t984015687 * ___marshalAs_6;
public:
inline static int32_t get_offset_of_ClassImpl_0() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___ClassImpl_0)); }
inline Type_t * get_ClassImpl_0() const { return ___ClassImpl_0; }
inline Type_t ** get_address_of_ClassImpl_0() { return &___ClassImpl_0; }
inline void set_ClassImpl_0(Type_t * value)
{
___ClassImpl_0 = value;
Il2CppCodeGenWriteBarrier((&___ClassImpl_0), value);
}
inline static int32_t get_offset_of_DefaultValueImpl_1() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___DefaultValueImpl_1)); }
inline RuntimeObject * get_DefaultValueImpl_1() const { return ___DefaultValueImpl_1; }
inline RuntimeObject ** get_address_of_DefaultValueImpl_1() { return &___DefaultValueImpl_1; }
inline void set_DefaultValueImpl_1(RuntimeObject * value)
{
___DefaultValueImpl_1 = value;
Il2CppCodeGenWriteBarrier((&___DefaultValueImpl_1), value);
}
inline static int32_t get_offset_of_MemberImpl_2() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___MemberImpl_2)); }
inline MemberInfo_t * get_MemberImpl_2() const { return ___MemberImpl_2; }
inline MemberInfo_t ** get_address_of_MemberImpl_2() { return &___MemberImpl_2; }
inline void set_MemberImpl_2(MemberInfo_t * value)
{
___MemberImpl_2 = value;
Il2CppCodeGenWriteBarrier((&___MemberImpl_2), value);
}
inline static int32_t get_offset_of_NameImpl_3() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___NameImpl_3)); }
inline String_t* get_NameImpl_3() const { return ___NameImpl_3; }
inline String_t** get_address_of_NameImpl_3() { return &___NameImpl_3; }
inline void set_NameImpl_3(String_t* value)
{
___NameImpl_3 = value;
Il2CppCodeGenWriteBarrier((&___NameImpl_3), value);
}
inline static int32_t get_offset_of_PositionImpl_4() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___PositionImpl_4)); }
inline int32_t get_PositionImpl_4() const { return ___PositionImpl_4; }
inline int32_t* get_address_of_PositionImpl_4() { return &___PositionImpl_4; }
inline void set_PositionImpl_4(int32_t value)
{
___PositionImpl_4 = value;
}
inline static int32_t get_offset_of_AttrsImpl_5() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___AttrsImpl_5)); }
inline int32_t get_AttrsImpl_5() const { return ___AttrsImpl_5; }
inline int32_t* get_address_of_AttrsImpl_5() { return &___AttrsImpl_5; }
inline void set_AttrsImpl_5(int32_t value)
{
___AttrsImpl_5 = value;
}
inline static int32_t get_offset_of_marshalAs_6() { return static_cast<int32_t>(offsetof(ParameterInfo_t1861056598, ___marshalAs_6)); }
inline UnmanagedMarshal_t984015687 * get_marshalAs_6() const { return ___marshalAs_6; }
inline UnmanagedMarshal_t984015687 ** get_address_of_marshalAs_6() { return &___marshalAs_6; }
inline void set_marshalAs_6(UnmanagedMarshal_t984015687 * value)
{
___marshalAs_6 = value;
Il2CppCodeGenWriteBarrier((&___marshalAs_6), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PARAMETERINFO_T1861056598_H
#ifndef MONOFIELD_T_H
#define MONOFIELD_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoField
struct MonoField_t : public FieldInfo_t
{
public:
// System.IntPtr System.Reflection.MonoField::klass
intptr_t ___klass_0;
// System.RuntimeFieldHandle System.Reflection.MonoField::fhandle
RuntimeFieldHandle_t1871169219 ___fhandle_1;
// System.String System.Reflection.MonoField::name
String_t* ___name_2;
// System.Type System.Reflection.MonoField::type
Type_t * ___type_3;
// System.Reflection.FieldAttributes System.Reflection.MonoField::attrs
int32_t ___attrs_4;
public:
inline static int32_t get_offset_of_klass_0() { return static_cast<int32_t>(offsetof(MonoField_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_fhandle_1() { return static_cast<int32_t>(offsetof(MonoField_t, ___fhandle_1)); }
inline RuntimeFieldHandle_t1871169219 get_fhandle_1() const { return ___fhandle_1; }
inline RuntimeFieldHandle_t1871169219 * get_address_of_fhandle_1() { return &___fhandle_1; }
inline void set_fhandle_1(RuntimeFieldHandle_t1871169219 value)
{
___fhandle_1 = value;
}
inline static int32_t get_offset_of_name_2() { return static_cast<int32_t>(offsetof(MonoField_t, ___name_2)); }
inline String_t* get_name_2() const { return ___name_2; }
inline String_t** get_address_of_name_2() { return &___name_2; }
inline void set_name_2(String_t* value)
{
___name_2 = value;
Il2CppCodeGenWriteBarrier((&___name_2), value);
}
inline static int32_t get_offset_of_type_3() { return static_cast<int32_t>(offsetof(MonoField_t, ___type_3)); }
inline Type_t * get_type_3() const { return ___type_3; }
inline Type_t ** get_address_of_type_3() { return &___type_3; }
inline void set_type_3(Type_t * value)
{
___type_3 = value;
Il2CppCodeGenWriteBarrier((&___type_3), value);
}
inline static int32_t get_offset_of_attrs_4() { return static_cast<int32_t>(offsetof(MonoField_t, ___attrs_4)); }
inline int32_t get_attrs_4() const { return ___attrs_4; }
inline int32_t* get_address_of_attrs_4() { return &___attrs_4; }
inline void set_attrs_4(int32_t value)
{
___attrs_4 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOFIELD_T_H
#ifndef PROPERTYBUILDER_T314297007_H
#define PROPERTYBUILDER_T314297007_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.PropertyBuilder
struct PropertyBuilder_t314297007 : public PropertyInfo_t
{
public:
// System.Reflection.PropertyAttributes System.Reflection.Emit.PropertyBuilder::attrs
int32_t ___attrs_0;
// System.String System.Reflection.Emit.PropertyBuilder::name
String_t* ___name_1;
// System.Type System.Reflection.Emit.PropertyBuilder::type
Type_t * ___type_2;
// System.Reflection.Emit.MethodBuilder System.Reflection.Emit.PropertyBuilder::set_method
MethodBuilder_t2807316753 * ___set_method_3;
// System.Reflection.Emit.MethodBuilder System.Reflection.Emit.PropertyBuilder::get_method
MethodBuilder_t2807316753 * ___get_method_4;
// System.Reflection.Emit.TypeBuilder System.Reflection.Emit.PropertyBuilder::typeb
TypeBuilder_t1073948154 * ___typeb_5;
public:
inline static int32_t get_offset_of_attrs_0() { return static_cast<int32_t>(offsetof(PropertyBuilder_t314297007, ___attrs_0)); }
inline int32_t get_attrs_0() const { return ___attrs_0; }
inline int32_t* get_address_of_attrs_0() { return &___attrs_0; }
inline void set_attrs_0(int32_t value)
{
___attrs_0 = value;
}
inline static int32_t get_offset_of_name_1() { return static_cast<int32_t>(offsetof(PropertyBuilder_t314297007, ___name_1)); }
inline String_t* get_name_1() const { return ___name_1; }
inline String_t** get_address_of_name_1() { return &___name_1; }
inline void set_name_1(String_t* value)
{
___name_1 = value;
Il2CppCodeGenWriteBarrier((&___name_1), value);
}
inline static int32_t get_offset_of_type_2() { return static_cast<int32_t>(offsetof(PropertyBuilder_t314297007, ___type_2)); }
inline Type_t * get_type_2() const { return ___type_2; }
inline Type_t ** get_address_of_type_2() { return &___type_2; }
inline void set_type_2(Type_t * value)
{
___type_2 = value;
Il2CppCodeGenWriteBarrier((&___type_2), value);
}
inline static int32_t get_offset_of_set_method_3() { return static_cast<int32_t>(offsetof(PropertyBuilder_t314297007, ___set_method_3)); }
inline MethodBuilder_t2807316753 * get_set_method_3() const { return ___set_method_3; }
inline MethodBuilder_t2807316753 ** get_address_of_set_method_3() { return &___set_method_3; }
inline void set_set_method_3(MethodBuilder_t2807316753 * value)
{
___set_method_3 = value;
Il2CppCodeGenWriteBarrier((&___set_method_3), value);
}
inline static int32_t get_offset_of_get_method_4() { return static_cast<int32_t>(offsetof(PropertyBuilder_t314297007, ___get_method_4)); }
inline MethodBuilder_t2807316753 * get_get_method_4() const { return ___get_method_4; }
inline MethodBuilder_t2807316753 ** get_address_of_get_method_4() { return &___get_method_4; }
inline void set_get_method_4(MethodBuilder_t2807316753 * value)
{
___get_method_4 = value;
Il2CppCodeGenWriteBarrier((&___get_method_4), value);
}
inline static int32_t get_offset_of_typeb_5() { return static_cast<int32_t>(offsetof(PropertyBuilder_t314297007, ___typeb_5)); }
inline TypeBuilder_t1073948154 * get_typeb_5() const { return ___typeb_5; }
inline TypeBuilder_t1073948154 ** get_address_of_typeb_5() { return &___typeb_5; }
inline void set_typeb_5(TypeBuilder_t1073948154 * value)
{
___typeb_5 = value;
Il2CppCodeGenWriteBarrier((&___typeb_5), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PROPERTYBUILDER_T314297007_H
#ifndef PARAMETERBUILDER_T1137139675_H
#define PARAMETERBUILDER_T1137139675_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ParameterBuilder
struct ParameterBuilder_t1137139675 : public RuntimeObject
{
public:
// System.String System.Reflection.Emit.ParameterBuilder::name
String_t* ___name_0;
// System.Reflection.ParameterAttributes System.Reflection.Emit.ParameterBuilder::attrs
int32_t ___attrs_1;
// System.Int32 System.Reflection.Emit.ParameterBuilder::position
int32_t ___position_2;
public:
inline static int32_t get_offset_of_name_0() { return static_cast<int32_t>(offsetof(ParameterBuilder_t1137139675, ___name_0)); }
inline String_t* get_name_0() const { return ___name_0; }
inline String_t** get_address_of_name_0() { return &___name_0; }
inline void set_name_0(String_t* value)
{
___name_0 = value;
Il2CppCodeGenWriteBarrier((&___name_0), value);
}
inline static int32_t get_offset_of_attrs_1() { return static_cast<int32_t>(offsetof(ParameterBuilder_t1137139675, ___attrs_1)); }
inline int32_t get_attrs_1() const { return ___attrs_1; }
inline int32_t* get_address_of_attrs_1() { return &___attrs_1; }
inline void set_attrs_1(int32_t value)
{
___attrs_1 = value;
}
inline static int32_t get_offset_of_position_2() { return static_cast<int32_t>(offsetof(ParameterBuilder_t1137139675, ___position_2)); }
inline int32_t get_position_2() const { return ___position_2; }
inline int32_t* get_address_of_position_2() { return &___position_2; }
inline void set_position_2(int32_t value)
{
___position_2 = value;
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // PARAMETERBUILDER_T1137139675_H
#ifndef MONOPROPERTY_T_H
#define MONOPROPERTY_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoProperty
struct MonoProperty_t : public PropertyInfo_t
{
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_t3087356066 ___info_2;
// System.Reflection.PInfo System.Reflection.MonoProperty::cached
int32_t ___cached_3;
// System.Reflection.MonoProperty/GetterAdapter System.Reflection.MonoProperty::cached_getter
GetterAdapter_t2155025054 * ___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_t3087356066 get_info_2() const { return ___info_2; }
inline MonoPropertyInfo_t3087356066 * get_address_of_info_2() { return &___info_2; }
inline void set_info_2(MonoPropertyInfo_t3087356066 value)
{
___info_2 = value;
}
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_t2155025054 * get_cached_getter_4() const { return ___cached_getter_4; }
inline GetterAdapter_t2155025054 ** get_address_of_cached_getter_4() { return &___cached_getter_4; }
inline void set_cached_getter_4(GetterAdapter_t2155025054 * value)
{
___cached_getter_4 = value;
Il2CppCodeGenWriteBarrier((&___cached_getter_4), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOPROPERTY_T_H
#ifndef ADDEVENTADAPTER_T1787725097_H
#define ADDEVENTADAPTER_T1787725097_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.EventInfo/AddEventAdapter
struct AddEventAdapter_t1787725097 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ADDEVENTADAPTER_T1787725097_H
#ifndef MODULEBUILDER_T731887691_H
#define MODULEBUILDER_T731887691_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ModuleBuilder
struct ModuleBuilder_t731887691 : public Module_t2987026101
{
public:
// System.UIntPtr System.Reflection.Emit.ModuleBuilder::dynamic_image
uintptr_t ___dynamic_image_10;
// System.Int32 System.Reflection.Emit.ModuleBuilder::num_types
int32_t ___num_types_11;
// System.Reflection.Emit.TypeBuilder[] System.Reflection.Emit.ModuleBuilder::types
TypeBuilderU5BU5D_t786280671* ___types_12;
// System.Reflection.Emit.CustomAttributeBuilder[] System.Reflection.Emit.ModuleBuilder::cattrs
CustomAttributeBuilderU5BU5D_t2951373564* ___cattrs_13;
// System.Byte[] System.Reflection.Emit.ModuleBuilder::guid
ByteU5BU5D_t4116647657* ___guid_14;
// System.Int32 System.Reflection.Emit.ModuleBuilder::table_idx
int32_t ___table_idx_15;
// System.Reflection.Emit.AssemblyBuilder System.Reflection.Emit.ModuleBuilder::assemblyb
AssemblyBuilder_t359885250 * ___assemblyb_16;
// System.Reflection.Emit.MethodBuilder[] System.Reflection.Emit.ModuleBuilder::global_methods
MethodBuilderU5BU5D_t3705301900* ___global_methods_17;
// System.Reflection.Emit.FieldBuilder[] System.Reflection.Emit.ModuleBuilder::global_fields
FieldBuilderU5BU5D_t138311604* ___global_fields_18;
// System.Boolean System.Reflection.Emit.ModuleBuilder::is_main
bool ___is_main_19;
// System.Reflection.Emit.MonoResource[] System.Reflection.Emit.ModuleBuilder::resources
MonoResourceU5BU5D_t979189380* ___resources_20;
// System.Reflection.Emit.TypeBuilder System.Reflection.Emit.ModuleBuilder::global_type
TypeBuilder_t1073948154 * ___global_type_21;
// System.Type System.Reflection.Emit.ModuleBuilder::global_type_created
Type_t * ___global_type_created_22;
// System.Collections.Hashtable System.Reflection.Emit.ModuleBuilder::name_cache
Hashtable_t1853889766 * ___name_cache_23;
// System.Collections.Hashtable System.Reflection.Emit.ModuleBuilder::us_string_cache
Hashtable_t1853889766 * ___us_string_cache_24;
// System.Int32[] System.Reflection.Emit.ModuleBuilder::table_indexes
Int32U5BU5D_t385246372* ___table_indexes_25;
// System.Boolean System.Reflection.Emit.ModuleBuilder::transient
bool ___transient_26;
// System.Reflection.Emit.ModuleBuilderTokenGenerator System.Reflection.Emit.ModuleBuilder::token_gen
ModuleBuilderTokenGenerator_t944435078 * ___token_gen_27;
// System.Collections.Hashtable System.Reflection.Emit.ModuleBuilder::resource_writers
Hashtable_t1853889766 * ___resource_writers_28;
// System.Diagnostics.SymbolStore.ISymbolWriter System.Reflection.Emit.ModuleBuilder::symbolWriter
RuntimeObject* ___symbolWriter_29;
public:
inline static int32_t get_offset_of_dynamic_image_10() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___dynamic_image_10)); }
inline uintptr_t get_dynamic_image_10() const { return ___dynamic_image_10; }
inline uintptr_t* get_address_of_dynamic_image_10() { return &___dynamic_image_10; }
inline void set_dynamic_image_10(uintptr_t value)
{
___dynamic_image_10 = value;
}
inline static int32_t get_offset_of_num_types_11() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___num_types_11)); }
inline int32_t get_num_types_11() const { return ___num_types_11; }
inline int32_t* get_address_of_num_types_11() { return &___num_types_11; }
inline void set_num_types_11(int32_t value)
{
___num_types_11 = value;
}
inline static int32_t get_offset_of_types_12() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___types_12)); }
inline TypeBuilderU5BU5D_t786280671* get_types_12() const { return ___types_12; }
inline TypeBuilderU5BU5D_t786280671** get_address_of_types_12() { return &___types_12; }
inline void set_types_12(TypeBuilderU5BU5D_t786280671* value)
{
___types_12 = value;
Il2CppCodeGenWriteBarrier((&___types_12), value);
}
inline static int32_t get_offset_of_cattrs_13() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___cattrs_13)); }
inline CustomAttributeBuilderU5BU5D_t2951373564* get_cattrs_13() const { return ___cattrs_13; }
inline CustomAttributeBuilderU5BU5D_t2951373564** get_address_of_cattrs_13() { return &___cattrs_13; }
inline void set_cattrs_13(CustomAttributeBuilderU5BU5D_t2951373564* value)
{
___cattrs_13 = value;
Il2CppCodeGenWriteBarrier((&___cattrs_13), value);
}
inline static int32_t get_offset_of_guid_14() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___guid_14)); }
inline ByteU5BU5D_t4116647657* get_guid_14() const { return ___guid_14; }
inline ByteU5BU5D_t4116647657** get_address_of_guid_14() { return &___guid_14; }
inline void set_guid_14(ByteU5BU5D_t4116647657* value)
{
___guid_14 = value;
Il2CppCodeGenWriteBarrier((&___guid_14), value);
}
inline static int32_t get_offset_of_table_idx_15() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___table_idx_15)); }
inline int32_t get_table_idx_15() const { return ___table_idx_15; }
inline int32_t* get_address_of_table_idx_15() { return &___table_idx_15; }
inline void set_table_idx_15(int32_t value)
{
___table_idx_15 = value;
}
inline static int32_t get_offset_of_assemblyb_16() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___assemblyb_16)); }
inline AssemblyBuilder_t359885250 * get_assemblyb_16() const { return ___assemblyb_16; }
inline AssemblyBuilder_t359885250 ** get_address_of_assemblyb_16() { return &___assemblyb_16; }
inline void set_assemblyb_16(AssemblyBuilder_t359885250 * value)
{
___assemblyb_16 = value;
Il2CppCodeGenWriteBarrier((&___assemblyb_16), value);
}
inline static int32_t get_offset_of_global_methods_17() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___global_methods_17)); }
inline MethodBuilderU5BU5D_t3705301900* get_global_methods_17() const { return ___global_methods_17; }
inline MethodBuilderU5BU5D_t3705301900** get_address_of_global_methods_17() { return &___global_methods_17; }
inline void set_global_methods_17(MethodBuilderU5BU5D_t3705301900* value)
{
___global_methods_17 = value;
Il2CppCodeGenWriteBarrier((&___global_methods_17), value);
}
inline static int32_t get_offset_of_global_fields_18() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___global_fields_18)); }
inline FieldBuilderU5BU5D_t138311604* get_global_fields_18() const { return ___global_fields_18; }
inline FieldBuilderU5BU5D_t138311604** get_address_of_global_fields_18() { return &___global_fields_18; }
inline void set_global_fields_18(FieldBuilderU5BU5D_t138311604* value)
{
___global_fields_18 = value;
Il2CppCodeGenWriteBarrier((&___global_fields_18), value);
}
inline static int32_t get_offset_of_is_main_19() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___is_main_19)); }
inline bool get_is_main_19() const { return ___is_main_19; }
inline bool* get_address_of_is_main_19() { return &___is_main_19; }
inline void set_is_main_19(bool value)
{
___is_main_19 = value;
}
inline static int32_t get_offset_of_resources_20() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___resources_20)); }
inline MonoResourceU5BU5D_t979189380* get_resources_20() const { return ___resources_20; }
inline MonoResourceU5BU5D_t979189380** get_address_of_resources_20() { return &___resources_20; }
inline void set_resources_20(MonoResourceU5BU5D_t979189380* value)
{
___resources_20 = value;
Il2CppCodeGenWriteBarrier((&___resources_20), value);
}
inline static int32_t get_offset_of_global_type_21() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___global_type_21)); }
inline TypeBuilder_t1073948154 * get_global_type_21() const { return ___global_type_21; }
inline TypeBuilder_t1073948154 ** get_address_of_global_type_21() { return &___global_type_21; }
inline void set_global_type_21(TypeBuilder_t1073948154 * value)
{
___global_type_21 = value;
Il2CppCodeGenWriteBarrier((&___global_type_21), value);
}
inline static int32_t get_offset_of_global_type_created_22() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___global_type_created_22)); }
inline Type_t * get_global_type_created_22() const { return ___global_type_created_22; }
inline Type_t ** get_address_of_global_type_created_22() { return &___global_type_created_22; }
inline void set_global_type_created_22(Type_t * value)
{
___global_type_created_22 = value;
Il2CppCodeGenWriteBarrier((&___global_type_created_22), value);
}
inline static int32_t get_offset_of_name_cache_23() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___name_cache_23)); }
inline Hashtable_t1853889766 * get_name_cache_23() const { return ___name_cache_23; }
inline Hashtable_t1853889766 ** get_address_of_name_cache_23() { return &___name_cache_23; }
inline void set_name_cache_23(Hashtable_t1853889766 * value)
{
___name_cache_23 = value;
Il2CppCodeGenWriteBarrier((&___name_cache_23), value);
}
inline static int32_t get_offset_of_us_string_cache_24() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___us_string_cache_24)); }
inline Hashtable_t1853889766 * get_us_string_cache_24() const { return ___us_string_cache_24; }
inline Hashtable_t1853889766 ** get_address_of_us_string_cache_24() { return &___us_string_cache_24; }
inline void set_us_string_cache_24(Hashtable_t1853889766 * value)
{
___us_string_cache_24 = value;
Il2CppCodeGenWriteBarrier((&___us_string_cache_24), value);
}
inline static int32_t get_offset_of_table_indexes_25() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___table_indexes_25)); }
inline Int32U5BU5D_t385246372* get_table_indexes_25() const { return ___table_indexes_25; }
inline Int32U5BU5D_t385246372** get_address_of_table_indexes_25() { return &___table_indexes_25; }
inline void set_table_indexes_25(Int32U5BU5D_t385246372* value)
{
___table_indexes_25 = value;
Il2CppCodeGenWriteBarrier((&___table_indexes_25), value);
}
inline static int32_t get_offset_of_transient_26() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___transient_26)); }
inline bool get_transient_26() const { return ___transient_26; }
inline bool* get_address_of_transient_26() { return &___transient_26; }
inline void set_transient_26(bool value)
{
___transient_26 = value;
}
inline static int32_t get_offset_of_token_gen_27() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___token_gen_27)); }
inline ModuleBuilderTokenGenerator_t944435078 * get_token_gen_27() const { return ___token_gen_27; }
inline ModuleBuilderTokenGenerator_t944435078 ** get_address_of_token_gen_27() { return &___token_gen_27; }
inline void set_token_gen_27(ModuleBuilderTokenGenerator_t944435078 * value)
{
___token_gen_27 = value;
Il2CppCodeGenWriteBarrier((&___token_gen_27), value);
}
inline static int32_t get_offset_of_resource_writers_28() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___resource_writers_28)); }
inline Hashtable_t1853889766 * get_resource_writers_28() const { return ___resource_writers_28; }
inline Hashtable_t1853889766 ** get_address_of_resource_writers_28() { return &___resource_writers_28; }
inline void set_resource_writers_28(Hashtable_t1853889766 * value)
{
___resource_writers_28 = value;
Il2CppCodeGenWriteBarrier((&___resource_writers_28), value);
}
inline static int32_t get_offset_of_symbolWriter_29() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691, ___symbolWriter_29)); }
inline RuntimeObject* get_symbolWriter_29() const { return ___symbolWriter_29; }
inline RuntimeObject** get_address_of_symbolWriter_29() { return &___symbolWriter_29; }
inline void set_symbolWriter_29(RuntimeObject* value)
{
___symbolWriter_29 = value;
Il2CppCodeGenWriteBarrier((&___symbolWriter_29), value);
}
};
struct ModuleBuilder_t731887691_StaticFields
{
public:
// System.Char[] System.Reflection.Emit.ModuleBuilder::type_modifiers
CharU5BU5D_t3528271667* ___type_modifiers_30;
public:
inline static int32_t get_offset_of_type_modifiers_30() { return static_cast<int32_t>(offsetof(ModuleBuilder_t731887691_StaticFields, ___type_modifiers_30)); }
inline CharU5BU5D_t3528271667* get_type_modifiers_30() const { return ___type_modifiers_30; }
inline CharU5BU5D_t3528271667** get_address_of_type_modifiers_30() { return &___type_modifiers_30; }
inline void set_type_modifiers_30(CharU5BU5D_t3528271667* value)
{
___type_modifiers_30 = value;
Il2CppCodeGenWriteBarrier((&___type_modifiers_30), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MODULEBUILDER_T731887691_H
#ifndef TYPEBUILDER_T1073948154_H
#define TYPEBUILDER_T1073948154_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.TypeBuilder
struct TypeBuilder_t1073948154 : public Type_t
{
public:
// System.String System.Reflection.Emit.TypeBuilder::tname
String_t* ___tname_8;
// System.String System.Reflection.Emit.TypeBuilder::nspace
String_t* ___nspace_9;
// System.Type System.Reflection.Emit.TypeBuilder::parent
Type_t * ___parent_10;
// System.Type System.Reflection.Emit.TypeBuilder::nesting_type
Type_t * ___nesting_type_11;
// System.Type[] System.Reflection.Emit.TypeBuilder::interfaces
TypeU5BU5D_t3940880105* ___interfaces_12;
// System.Int32 System.Reflection.Emit.TypeBuilder::num_methods
int32_t ___num_methods_13;
// System.Reflection.Emit.MethodBuilder[] System.Reflection.Emit.TypeBuilder::methods
MethodBuilderU5BU5D_t3705301900* ___methods_14;
// System.Reflection.Emit.ConstructorBuilder[] System.Reflection.Emit.TypeBuilder::ctors
ConstructorBuilderU5BU5D_t3223009221* ___ctors_15;
// System.Reflection.Emit.PropertyBuilder[] System.Reflection.Emit.TypeBuilder::properties
PropertyBuilderU5BU5D_t4023329206* ___properties_16;
// System.Int32 System.Reflection.Emit.TypeBuilder::num_fields
int32_t ___num_fields_17;
// System.Reflection.Emit.FieldBuilder[] System.Reflection.Emit.TypeBuilder::fields
FieldBuilderU5BU5D_t138311604* ___fields_18;
// System.Reflection.Emit.EventBuilder[] System.Reflection.Emit.TypeBuilder::events
EventBuilderU5BU5D_t3902749141* ___events_19;
// System.Reflection.Emit.CustomAttributeBuilder[] System.Reflection.Emit.TypeBuilder::cattrs
CustomAttributeBuilderU5BU5D_t2951373564* ___cattrs_20;
// System.Reflection.Emit.TypeBuilder[] System.Reflection.Emit.TypeBuilder::subtypes
TypeBuilderU5BU5D_t786280671* ___subtypes_21;
// System.Reflection.TypeAttributes System.Reflection.Emit.TypeBuilder::attrs
int32_t ___attrs_22;
// System.Int32 System.Reflection.Emit.TypeBuilder::table_idx
int32_t ___table_idx_23;
// System.Reflection.Emit.ModuleBuilder System.Reflection.Emit.TypeBuilder::pmodule
ModuleBuilder_t731887691 * ___pmodule_24;
// System.Int32 System.Reflection.Emit.TypeBuilder::class_size
int32_t ___class_size_25;
// System.Reflection.Emit.PackingSize System.Reflection.Emit.TypeBuilder::packing_size
int32_t ___packing_size_26;
// System.IntPtr System.Reflection.Emit.TypeBuilder::generic_container
intptr_t ___generic_container_27;
// System.Reflection.Emit.GenericTypeParameterBuilder[] System.Reflection.Emit.TypeBuilder::generic_params
GenericTypeParameterBuilderU5BU5D_t3780444109* ___generic_params_28;
// System.Reflection.Emit.RefEmitPermissionSet[] System.Reflection.Emit.TypeBuilder::permissions
RefEmitPermissionSetU5BU5D_t567451178* ___permissions_29;
// System.Type System.Reflection.Emit.TypeBuilder::created
Type_t * ___created_30;
// System.String System.Reflection.Emit.TypeBuilder::fullname
String_t* ___fullname_31;
// System.Boolean System.Reflection.Emit.TypeBuilder::createTypeCalled
bool ___createTypeCalled_32;
// System.Type System.Reflection.Emit.TypeBuilder::underlying_type
Type_t * ___underlying_type_33;
public:
inline static int32_t get_offset_of_tname_8() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___tname_8)); }
inline String_t* get_tname_8() const { return ___tname_8; }
inline String_t** get_address_of_tname_8() { return &___tname_8; }
inline void set_tname_8(String_t* value)
{
___tname_8 = value;
Il2CppCodeGenWriteBarrier((&___tname_8), value);
}
inline static int32_t get_offset_of_nspace_9() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___nspace_9)); }
inline String_t* get_nspace_9() const { return ___nspace_9; }
inline String_t** get_address_of_nspace_9() { return &___nspace_9; }
inline void set_nspace_9(String_t* value)
{
___nspace_9 = value;
Il2CppCodeGenWriteBarrier((&___nspace_9), value);
}
inline static int32_t get_offset_of_parent_10() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___parent_10)); }
inline Type_t * get_parent_10() const { return ___parent_10; }
inline Type_t ** get_address_of_parent_10() { return &___parent_10; }
inline void set_parent_10(Type_t * value)
{
___parent_10 = value;
Il2CppCodeGenWriteBarrier((&___parent_10), value);
}
inline static int32_t get_offset_of_nesting_type_11() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___nesting_type_11)); }
inline Type_t * get_nesting_type_11() const { return ___nesting_type_11; }
inline Type_t ** get_address_of_nesting_type_11() { return &___nesting_type_11; }
inline void set_nesting_type_11(Type_t * value)
{
___nesting_type_11 = value;
Il2CppCodeGenWriteBarrier((&___nesting_type_11), value);
}
inline static int32_t get_offset_of_interfaces_12() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___interfaces_12)); }
inline TypeU5BU5D_t3940880105* get_interfaces_12() const { return ___interfaces_12; }
inline TypeU5BU5D_t3940880105** get_address_of_interfaces_12() { return &___interfaces_12; }
inline void set_interfaces_12(TypeU5BU5D_t3940880105* value)
{
___interfaces_12 = value;
Il2CppCodeGenWriteBarrier((&___interfaces_12), value);
}
inline static int32_t get_offset_of_num_methods_13() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___num_methods_13)); }
inline int32_t get_num_methods_13() const { return ___num_methods_13; }
inline int32_t* get_address_of_num_methods_13() { return &___num_methods_13; }
inline void set_num_methods_13(int32_t value)
{
___num_methods_13 = value;
}
inline static int32_t get_offset_of_methods_14() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___methods_14)); }
inline MethodBuilderU5BU5D_t3705301900* get_methods_14() const { return ___methods_14; }
inline MethodBuilderU5BU5D_t3705301900** get_address_of_methods_14() { return &___methods_14; }
inline void set_methods_14(MethodBuilderU5BU5D_t3705301900* value)
{
___methods_14 = value;
Il2CppCodeGenWriteBarrier((&___methods_14), value);
}
inline static int32_t get_offset_of_ctors_15() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___ctors_15)); }
inline ConstructorBuilderU5BU5D_t3223009221* get_ctors_15() const { return ___ctors_15; }
inline ConstructorBuilderU5BU5D_t3223009221** get_address_of_ctors_15() { return &___ctors_15; }
inline void set_ctors_15(ConstructorBuilderU5BU5D_t3223009221* value)
{
___ctors_15 = value;
Il2CppCodeGenWriteBarrier((&___ctors_15), value);
}
inline static int32_t get_offset_of_properties_16() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___properties_16)); }
inline PropertyBuilderU5BU5D_t4023329206* get_properties_16() const { return ___properties_16; }
inline PropertyBuilderU5BU5D_t4023329206** get_address_of_properties_16() { return &___properties_16; }
inline void set_properties_16(PropertyBuilderU5BU5D_t4023329206* value)
{
___properties_16 = value;
Il2CppCodeGenWriteBarrier((&___properties_16), value);
}
inline static int32_t get_offset_of_num_fields_17() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___num_fields_17)); }
inline int32_t get_num_fields_17() const { return ___num_fields_17; }
inline int32_t* get_address_of_num_fields_17() { return &___num_fields_17; }
inline void set_num_fields_17(int32_t value)
{
___num_fields_17 = value;
}
inline static int32_t get_offset_of_fields_18() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___fields_18)); }
inline FieldBuilderU5BU5D_t138311604* get_fields_18() const { return ___fields_18; }
inline FieldBuilderU5BU5D_t138311604** get_address_of_fields_18() { return &___fields_18; }
inline void set_fields_18(FieldBuilderU5BU5D_t138311604* value)
{
___fields_18 = value;
Il2CppCodeGenWriteBarrier((&___fields_18), value);
}
inline static int32_t get_offset_of_events_19() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___events_19)); }
inline EventBuilderU5BU5D_t3902749141* get_events_19() const { return ___events_19; }
inline EventBuilderU5BU5D_t3902749141** get_address_of_events_19() { return &___events_19; }
inline void set_events_19(EventBuilderU5BU5D_t3902749141* value)
{
___events_19 = value;
Il2CppCodeGenWriteBarrier((&___events_19), value);
}
inline static int32_t get_offset_of_cattrs_20() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___cattrs_20)); }
inline CustomAttributeBuilderU5BU5D_t2951373564* get_cattrs_20() const { return ___cattrs_20; }
inline CustomAttributeBuilderU5BU5D_t2951373564** get_address_of_cattrs_20() { return &___cattrs_20; }
inline void set_cattrs_20(CustomAttributeBuilderU5BU5D_t2951373564* value)
{
___cattrs_20 = value;
Il2CppCodeGenWriteBarrier((&___cattrs_20), value);
}
inline static int32_t get_offset_of_subtypes_21() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___subtypes_21)); }
inline TypeBuilderU5BU5D_t786280671* get_subtypes_21() const { return ___subtypes_21; }
inline TypeBuilderU5BU5D_t786280671** get_address_of_subtypes_21() { return &___subtypes_21; }
inline void set_subtypes_21(TypeBuilderU5BU5D_t786280671* value)
{
___subtypes_21 = value;
Il2CppCodeGenWriteBarrier((&___subtypes_21), value);
}
inline static int32_t get_offset_of_attrs_22() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___attrs_22)); }
inline int32_t get_attrs_22() const { return ___attrs_22; }
inline int32_t* get_address_of_attrs_22() { return &___attrs_22; }
inline void set_attrs_22(int32_t value)
{
___attrs_22 = value;
}
inline static int32_t get_offset_of_table_idx_23() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___table_idx_23)); }
inline int32_t get_table_idx_23() const { return ___table_idx_23; }
inline int32_t* get_address_of_table_idx_23() { return &___table_idx_23; }
inline void set_table_idx_23(int32_t value)
{
___table_idx_23 = value;
}
inline static int32_t get_offset_of_pmodule_24() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___pmodule_24)); }
inline ModuleBuilder_t731887691 * get_pmodule_24() const { return ___pmodule_24; }
inline ModuleBuilder_t731887691 ** get_address_of_pmodule_24() { return &___pmodule_24; }
inline void set_pmodule_24(ModuleBuilder_t731887691 * value)
{
___pmodule_24 = value;
Il2CppCodeGenWriteBarrier((&___pmodule_24), value);
}
inline static int32_t get_offset_of_class_size_25() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___class_size_25)); }
inline int32_t get_class_size_25() const { return ___class_size_25; }
inline int32_t* get_address_of_class_size_25() { return &___class_size_25; }
inline void set_class_size_25(int32_t value)
{
___class_size_25 = value;
}
inline static int32_t get_offset_of_packing_size_26() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___packing_size_26)); }
inline int32_t get_packing_size_26() const { return ___packing_size_26; }
inline int32_t* get_address_of_packing_size_26() { return &___packing_size_26; }
inline void set_packing_size_26(int32_t value)
{
___packing_size_26 = value;
}
inline static int32_t get_offset_of_generic_container_27() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___generic_container_27)); }
inline intptr_t get_generic_container_27() const { return ___generic_container_27; }
inline intptr_t* get_address_of_generic_container_27() { return &___generic_container_27; }
inline void set_generic_container_27(intptr_t value)
{
___generic_container_27 = value;
}
inline static int32_t get_offset_of_generic_params_28() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___generic_params_28)); }
inline GenericTypeParameterBuilderU5BU5D_t3780444109* get_generic_params_28() const { return ___generic_params_28; }
inline GenericTypeParameterBuilderU5BU5D_t3780444109** get_address_of_generic_params_28() { return &___generic_params_28; }
inline void set_generic_params_28(GenericTypeParameterBuilderU5BU5D_t3780444109* value)
{
___generic_params_28 = value;
Il2CppCodeGenWriteBarrier((&___generic_params_28), value);
}
inline static int32_t get_offset_of_permissions_29() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___permissions_29)); }
inline RefEmitPermissionSetU5BU5D_t567451178* get_permissions_29() const { return ___permissions_29; }
inline RefEmitPermissionSetU5BU5D_t567451178** get_address_of_permissions_29() { return &___permissions_29; }
inline void set_permissions_29(RefEmitPermissionSetU5BU5D_t567451178* value)
{
___permissions_29 = value;
Il2CppCodeGenWriteBarrier((&___permissions_29), value);
}
inline static int32_t get_offset_of_created_30() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___created_30)); }
inline Type_t * get_created_30() const { return ___created_30; }
inline Type_t ** get_address_of_created_30() { return &___created_30; }
inline void set_created_30(Type_t * value)
{
___created_30 = value;
Il2CppCodeGenWriteBarrier((&___created_30), value);
}
inline static int32_t get_offset_of_fullname_31() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___fullname_31)); }
inline String_t* get_fullname_31() const { return ___fullname_31; }
inline String_t** get_address_of_fullname_31() { return &___fullname_31; }
inline void set_fullname_31(String_t* value)
{
___fullname_31 = value;
Il2CppCodeGenWriteBarrier((&___fullname_31), value);
}
inline static int32_t get_offset_of_createTypeCalled_32() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___createTypeCalled_32)); }
inline bool get_createTypeCalled_32() const { return ___createTypeCalled_32; }
inline bool* get_address_of_createTypeCalled_32() { return &___createTypeCalled_32; }
inline void set_createTypeCalled_32(bool value)
{
___createTypeCalled_32 = value;
}
inline static int32_t get_offset_of_underlying_type_33() { return static_cast<int32_t>(offsetof(TypeBuilder_t1073948154, ___underlying_type_33)); }
inline Type_t * get_underlying_type_33() const { return ___underlying_type_33; }
inline Type_t ** get_address_of_underlying_type_33() { return &___underlying_type_33; }
inline void set_underlying_type_33(Type_t * value)
{
___underlying_type_33 = value;
Il2CppCodeGenWriteBarrier((&___underlying_type_33), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // TYPEBUILDER_T1073948154_H
#ifndef GENERICTYPEPARAMETERBUILDER_T1988827940_H
#define GENERICTYPEPARAMETERBUILDER_T1988827940_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.GenericTypeParameterBuilder
struct GenericTypeParameterBuilder_t1988827940 : public Type_t
{
public:
// System.Reflection.Emit.TypeBuilder System.Reflection.Emit.GenericTypeParameterBuilder::tbuilder
TypeBuilder_t1073948154 * ___tbuilder_8;
// System.Reflection.Emit.MethodBuilder System.Reflection.Emit.GenericTypeParameterBuilder::mbuilder
MethodBuilder_t2807316753 * ___mbuilder_9;
// System.String System.Reflection.Emit.GenericTypeParameterBuilder::name
String_t* ___name_10;
// System.Type System.Reflection.Emit.GenericTypeParameterBuilder::base_type
Type_t * ___base_type_11;
public:
inline static int32_t get_offset_of_tbuilder_8() { return static_cast<int32_t>(offsetof(GenericTypeParameterBuilder_t1988827940, ___tbuilder_8)); }
inline TypeBuilder_t1073948154 * get_tbuilder_8() const { return ___tbuilder_8; }
inline TypeBuilder_t1073948154 ** get_address_of_tbuilder_8() { return &___tbuilder_8; }
inline void set_tbuilder_8(TypeBuilder_t1073948154 * value)
{
___tbuilder_8 = value;
Il2CppCodeGenWriteBarrier((&___tbuilder_8), value);
}
inline static int32_t get_offset_of_mbuilder_9() { return static_cast<int32_t>(offsetof(GenericTypeParameterBuilder_t1988827940, ___mbuilder_9)); }
inline MethodBuilder_t2807316753 * get_mbuilder_9() const { return ___mbuilder_9; }
inline MethodBuilder_t2807316753 ** get_address_of_mbuilder_9() { return &___mbuilder_9; }
inline void set_mbuilder_9(MethodBuilder_t2807316753 * value)
{
___mbuilder_9 = value;
Il2CppCodeGenWriteBarrier((&___mbuilder_9), value);
}
inline static int32_t get_offset_of_name_10() { return static_cast<int32_t>(offsetof(GenericTypeParameterBuilder_t1988827940, ___name_10)); }
inline String_t* get_name_10() const { return ___name_10; }
inline String_t** get_address_of_name_10() { return &___name_10; }
inline void set_name_10(String_t* value)
{
___name_10 = value;
Il2CppCodeGenWriteBarrier((&___name_10), value);
}
inline static int32_t get_offset_of_base_type_11() { return static_cast<int32_t>(offsetof(GenericTypeParameterBuilder_t1988827940, ___base_type_11)); }
inline Type_t * get_base_type_11() const { return ___base_type_11; }
inline Type_t ** get_address_of_base_type_11() { return &___base_type_11; }
inline void set_base_type_11(Type_t * value)
{
___base_type_11 = value;
Il2CppCodeGenWriteBarrier((&___base_type_11), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GENERICTYPEPARAMETERBUILDER_T1988827940_H
#ifndef ENUMBUILDER_T2400448213_H
#define ENUMBUILDER_T2400448213_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.EnumBuilder
struct EnumBuilder_t2400448213 : public Type_t
{
public:
// System.Reflection.Emit.TypeBuilder System.Reflection.Emit.EnumBuilder::_tb
TypeBuilder_t1073948154 * ____tb_8;
// System.Type System.Reflection.Emit.EnumBuilder::_underlyingType
Type_t * ____underlyingType_9;
public:
inline static int32_t get_offset_of__tb_8() { return static_cast<int32_t>(offsetof(EnumBuilder_t2400448213, ____tb_8)); }
inline TypeBuilder_t1073948154 * get__tb_8() const { return ____tb_8; }
inline TypeBuilder_t1073948154 ** get_address_of__tb_8() { return &____tb_8; }
inline void set__tb_8(TypeBuilder_t1073948154 * value)
{
____tb_8 = value;
Il2CppCodeGenWriteBarrier((&____tb_8), value);
}
inline static int32_t get_offset_of__underlyingType_9() { return static_cast<int32_t>(offsetof(EnumBuilder_t2400448213, ____underlyingType_9)); }
inline Type_t * get__underlyingType_9() const { return ____underlyingType_9; }
inline Type_t ** get_address_of__underlyingType_9() { return &____underlyingType_9; }
inline void set__underlyingType_9(Type_t * value)
{
____underlyingType_9 = value;
Il2CppCodeGenWriteBarrier((&____underlyingType_9), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // ENUMBUILDER_T2400448213_H
#ifndef MONOGENERICMETHOD_T_H
#define MONOGENERICMETHOD_T_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoGenericMethod
struct MonoGenericMethod_t : public MonoMethod_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOGENERICMETHOD_T_H
#ifndef GETTERADAPTER_T2155025054_H
#define GETTERADAPTER_T2155025054_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoProperty/GetterAdapter
struct GetterAdapter_t2155025054 : public MulticastDelegate_t
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // GETTERADAPTER_T2155025054_H
#ifndef DERIVEDTYPE_T4286302013_H
#define DERIVEDTYPE_T4286302013_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.DerivedType
struct DerivedType_t4286302013 : public Type_t
{
public:
// System.Type System.Reflection.Emit.DerivedType::elementType
Type_t * ___elementType_8;
public:
inline static int32_t get_offset_of_elementType_8() { return static_cast<int32_t>(offsetof(DerivedType_t4286302013, ___elementType_8)); }
inline Type_t * get_elementType_8() const { return ___elementType_8; }
inline Type_t ** get_address_of_elementType_8() { return &___elementType_8; }
inline void set_elementType_8(Type_t * value)
{
___elementType_8 = value;
Il2CppCodeGenWriteBarrier((&___elementType_8), value);
}
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // DERIVEDTYPE_T4286302013_H
#ifndef MONOGENERICCMETHOD_T4239028627_H
#define MONOGENERICCMETHOD_T4239028627_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.MonoGenericCMethod
struct MonoGenericCMethod_t4239028627 : public MonoCMethod_t3191134373
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // MONOGENERICCMETHOD_T4239028627_H
#ifndef BYREFTYPE_T2066805327_H
#define BYREFTYPE_T2066805327_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
// System.Reflection.Emit.ByRefType
struct ByRefType_t2066805327 : public DerivedType_t4286302013
{
public:
public:
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
#endif // BYREFTYPE_T2066805327_H
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ignored "-Wunused-variable"
#endif
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize300 = { sizeof (UnexceptionalStreamReader_t2154476246), -1, sizeof(UnexceptionalStreamReader_t2154476246_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable300[2] =
{
UnexceptionalStreamReader_t2154476246_StaticFields::get_offset_of_newline_14(),
UnexceptionalStreamReader_t2154476246_StaticFields::get_offset_of_newlineChar_15(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize301 = { sizeof (UnexceptionalStreamWriter_t2539306459), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize302 = { sizeof (UnmanagedMemoryStream_t4234117669), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable302[8] =
{
UnmanagedMemoryStream_t4234117669::get_offset_of_length_1(),
UnmanagedMemoryStream_t4234117669::get_offset_of_closed_2(),
UnmanagedMemoryStream_t4234117669::get_offset_of_capacity_3(),
UnmanagedMemoryStream_t4234117669::get_offset_of_fileaccess_4(),
UnmanagedMemoryStream_t4234117669::get_offset_of_initial_pointer_5(),
UnmanagedMemoryStream_t4234117669::get_offset_of_initial_position_6(),
UnmanagedMemoryStream_t4234117669::get_offset_of_current_position_7(),
UnmanagedMemoryStream_t4234117669::get_offset_of_Closed_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize303 = { sizeof (NativeResourceType_t2573963468)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable303[5] =
{
NativeResourceType_t2573963468::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize304 = { sizeof (RefEmitPermissionSet_t484390987)+ sizeof (RuntimeObject), sizeof(RefEmitPermissionSet_t484390987_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable304[2] =
{
RefEmitPermissionSet_t484390987::get_offset_of_action_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
RefEmitPermissionSet_t484390987::get_offset_of_pset_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize305 = { sizeof (MonoResource_t4103430009)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable305[6] =
{
MonoResource_t4103430009::get_offset_of_data_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoResource_t4103430009::get_offset_of_name_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoResource_t4103430009::get_offset_of_filename_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoResource_t4103430009::get_offset_of_attrs_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoResource_t4103430009::get_offset_of_offset_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoResource_t4103430009::get_offset_of_stream_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize306 = { sizeof (MonoWin32Resource_t1904229483)+ sizeof (RuntimeObject), sizeof(MonoWin32Resource_t1904229483_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable306[4] =
{
MonoWin32Resource_t1904229483::get_offset_of_res_type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoWin32Resource_t1904229483::get_offset_of_res_id_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoWin32Resource_t1904229483::get_offset_of_lang_id_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoWin32Resource_t1904229483::get_offset_of_data_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize307 = { sizeof (AssemblyBuilder_t359885250), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable307[38] =
{
AssemblyBuilder_t359885250::get_offset_of_dynamic_assembly_10(),
AssemblyBuilder_t359885250::get_offset_of_entry_point_11(),
AssemblyBuilder_t359885250::get_offset_of_modules_12(),
AssemblyBuilder_t359885250::get_offset_of_name_13(),
AssemblyBuilder_t359885250::get_offset_of_dir_14(),
AssemblyBuilder_t359885250::get_offset_of_cattrs_15(),
AssemblyBuilder_t359885250::get_offset_of_resources_16(),
AssemblyBuilder_t359885250::get_offset_of_public_key_17(),
AssemblyBuilder_t359885250::get_offset_of_version_18(),
AssemblyBuilder_t359885250::get_offset_of_culture_19(),
AssemblyBuilder_t359885250::get_offset_of_algid_20(),
AssemblyBuilder_t359885250::get_offset_of_flags_21(),
AssemblyBuilder_t359885250::get_offset_of_pekind_22(),
AssemblyBuilder_t359885250::get_offset_of_delay_sign_23(),
AssemblyBuilder_t359885250::get_offset_of_access_24(),
AssemblyBuilder_t359885250::get_offset_of_loaded_modules_25(),
AssemblyBuilder_t359885250::get_offset_of_win32_resources_26(),
AssemblyBuilder_t359885250::get_offset_of_permissions_minimum_27(),
AssemblyBuilder_t359885250::get_offset_of_permissions_optional_28(),
AssemblyBuilder_t359885250::get_offset_of_permissions_refused_29(),
AssemblyBuilder_t359885250::get_offset_of_peKind_30(),
AssemblyBuilder_t359885250::get_offset_of_machine_31(),
AssemblyBuilder_t359885250::get_offset_of_corlib_internal_32(),
AssemblyBuilder_t359885250::get_offset_of_type_forwarders_33(),
AssemblyBuilder_t359885250::get_offset_of_pktoken_34(),
AssemblyBuilder_t359885250::get_offset_of_corlib_object_type_35(),
AssemblyBuilder_t359885250::get_offset_of_corlib_value_type_36(),
AssemblyBuilder_t359885250::get_offset_of_corlib_enum_type_37(),
AssemblyBuilder_t359885250::get_offset_of_corlib_void_type_38(),
AssemblyBuilder_t359885250::get_offset_of_resource_writers_39(),
AssemblyBuilder_t359885250::get_offset_of_version_res_40(),
AssemblyBuilder_t359885250::get_offset_of_created_41(),
AssemblyBuilder_t359885250::get_offset_of_is_module_only_42(),
AssemblyBuilder_t359885250::get_offset_of_sn_43(),
AssemblyBuilder_t359885250::get_offset_of_native_resource_44(),
AssemblyBuilder_t359885250::get_offset_of_is_compiler_context_45(),
AssemblyBuilder_t359885250::get_offset_of_versioninfo_culture_46(),
AssemblyBuilder_t359885250::get_offset_of_manifest_module_47(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize308 = { sizeof (AssemblyBuilderAccess_t2806254258)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable308[5] =
{
AssemblyBuilderAccess_t2806254258::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize309 = { sizeof (ConstructorBuilder_t2813524108), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable309[11] =
{
ConstructorBuilder_t2813524108::get_offset_of_ilgen_2(),
ConstructorBuilder_t2813524108::get_offset_of_parameters_3(),
ConstructorBuilder_t2813524108::get_offset_of_attrs_4(),
ConstructorBuilder_t2813524108::get_offset_of_iattrs_5(),
ConstructorBuilder_t2813524108::get_offset_of_table_idx_6(),
ConstructorBuilder_t2813524108::get_offset_of_call_conv_7(),
ConstructorBuilder_t2813524108::get_offset_of_type_8(),
ConstructorBuilder_t2813524108::get_offset_of_pinfo_9(),
ConstructorBuilder_t2813524108::get_offset_of_init_locals_10(),
ConstructorBuilder_t2813524108::get_offset_of_paramModReq_11(),
ConstructorBuilder_t2813524108::get_offset_of_paramModOpt_12(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize310 = { sizeof (CustomAttributeBuilder_t2781637217), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize311 = { sizeof (DerivedType_t4286302013), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable311[1] =
{
DerivedType_t4286302013::get_offset_of_elementType_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize312 = { sizeof (ByRefType_t2066805327), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize313 = { sizeof (DynamicMethod_t2537779570), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable313[18] =
{
DynamicMethod_t2537779570::get_offset_of_mhandle_0(),
DynamicMethod_t2537779570::get_offset_of_name_1(),
DynamicMethod_t2537779570::get_offset_of_returnType_2(),
DynamicMethod_t2537779570::get_offset_of_parameters_3(),
DynamicMethod_t2537779570::get_offset_of_attributes_4(),
DynamicMethod_t2537779570::get_offset_of_callingConvention_5(),
DynamicMethod_t2537779570::get_offset_of_module_6(),
DynamicMethod_t2537779570::get_offset_of_skipVisibility_7(),
DynamicMethod_t2537779570::get_offset_of_init_locals_8(),
DynamicMethod_t2537779570::get_offset_of_ilgen_9(),
DynamicMethod_t2537779570::get_offset_of_nrefs_10(),
DynamicMethod_t2537779570::get_offset_of_refs_11(),
DynamicMethod_t2537779570::get_offset_of_referenced_by_12(),
DynamicMethod_t2537779570::get_offset_of_owner_13(),
DynamicMethod_t2537779570::get_offset_of_deleg_14(),
DynamicMethod_t2537779570::get_offset_of_method_15(),
DynamicMethod_t2537779570::get_offset_of_pinfo_16(),
DynamicMethod_t2537779570::get_offset_of_creating_17(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize314 = { sizeof (EnumBuilder_t2400448213), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable314[2] =
{
EnumBuilder_t2400448213::get_offset_of__tb_8(),
EnumBuilder_t2400448213::get_offset_of__underlyingType_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize315 = { sizeof (EventBuilder_t3451532220), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize316 = { sizeof (FieldBuilder_t2627049993), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable316[5] =
{
FieldBuilder_t2627049993::get_offset_of_attrs_0(),
FieldBuilder_t2627049993::get_offset_of_type_1(),
FieldBuilder_t2627049993::get_offset_of_name_2(),
FieldBuilder_t2627049993::get_offset_of_typeb_3(),
FieldBuilder_t2627049993::get_offset_of_marshal_info_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize317 = { sizeof (GenericTypeParameterBuilder_t1988827940), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable317[4] =
{
GenericTypeParameterBuilder_t1988827940::get_offset_of_tbuilder_8(),
GenericTypeParameterBuilder_t1988827940::get_offset_of_mbuilder_9(),
GenericTypeParameterBuilder_t1988827940::get_offset_of_name_10(),
GenericTypeParameterBuilder_t1988827940::get_offset_of_base_type_11(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize318 = { sizeof (ILTokenInfo_t2325775114)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable318[2] =
{
ILTokenInfo_t2325775114::get_offset_of_member_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
ILTokenInfo_t2325775114::get_offset_of_code_pos_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize319 = { 0, -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize320 = { sizeof (ILGenerator_t1388622344), -1, sizeof(ILGenerator_t1388622344_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable320[14] =
{
ILGenerator_t1388622344_StaticFields::get_offset_of_void_type_0(),
ILGenerator_t1388622344::get_offset_of_code_1(),
ILGenerator_t1388622344::get_offset_of_code_len_2(),
ILGenerator_t1388622344::get_offset_of_max_stack_3(),
ILGenerator_t1388622344::get_offset_of_cur_stack_4(),
ILGenerator_t1388622344::get_offset_of_locals_5(),
ILGenerator_t1388622344::get_offset_of_num_token_fixups_6(),
ILGenerator_t1388622344::get_offset_of_token_fixups_7(),
ILGenerator_t1388622344::get_offset_of_labels_8(),
ILGenerator_t1388622344::get_offset_of_num_labels_9(),
ILGenerator_t1388622344::get_offset_of_fixups_10(),
ILGenerator_t1388622344::get_offset_of_num_fixups_11(),
ILGenerator_t1388622344::get_offset_of_module_12(),
ILGenerator_t1388622344::get_offset_of_token_gen_13(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize321 = { sizeof (LabelFixup_t858502054)+ sizeof (RuntimeObject), sizeof(LabelFixup_t858502054 ), 0, 0 };
extern const int32_t g_FieldOffsetTable321[3] =
{
LabelFixup_t858502054::get_offset_of_offset_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
LabelFixup_t858502054::get_offset_of_pos_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
LabelFixup_t858502054::get_offset_of_label_idx_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize322 = { sizeof (LabelData_t360167391)+ sizeof (RuntimeObject), sizeof(LabelData_t360167391 ), 0, 0 };
extern const int32_t g_FieldOffsetTable322[2] =
{
LabelData_t360167391::get_offset_of_addr_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
LabelData_t360167391::get_offset_of_maxStack_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize323 = { sizeof (Label_t2281661643)+ sizeof (RuntimeObject), sizeof(Label_t2281661643 ), 0, 0 };
extern const int32_t g_FieldOffsetTable323[1] =
{
Label_t2281661643::get_offset_of_label_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize324 = { sizeof (LocalBuilder_t3562264111), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable324[1] =
{
LocalBuilder_t3562264111::get_offset_of_ilgen_3(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize325 = { sizeof (MethodBuilder_t2807316753), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable325[27] =
{
MethodBuilder_t2807316753::get_offset_of_mhandle_0(),
MethodBuilder_t2807316753::get_offset_of_rtype_1(),
MethodBuilder_t2807316753::get_offset_of_parameters_2(),
MethodBuilder_t2807316753::get_offset_of_attrs_3(),
MethodBuilder_t2807316753::get_offset_of_iattrs_4(),
MethodBuilder_t2807316753::get_offset_of_name_5(),
MethodBuilder_t2807316753::get_offset_of_table_idx_6(),
MethodBuilder_t2807316753::get_offset_of_code_7(),
MethodBuilder_t2807316753::get_offset_of_ilgen_8(),
MethodBuilder_t2807316753::get_offset_of_type_9(),
MethodBuilder_t2807316753::get_offset_of_pinfo_10(),
MethodBuilder_t2807316753::get_offset_of_cattrs_11(),
MethodBuilder_t2807316753::get_offset_of_override_method_12(),
MethodBuilder_t2807316753::get_offset_of_pi_dll_13(),
MethodBuilder_t2807316753::get_offset_of_pi_entry_14(),
MethodBuilder_t2807316753::get_offset_of_charset_15(),
MethodBuilder_t2807316753::get_offset_of_extra_flags_16(),
MethodBuilder_t2807316753::get_offset_of_native_cc_17(),
MethodBuilder_t2807316753::get_offset_of_call_conv_18(),
MethodBuilder_t2807316753::get_offset_of_init_locals_19(),
MethodBuilder_t2807316753::get_offset_of_generic_container_20(),
MethodBuilder_t2807316753::get_offset_of_generic_params_21(),
MethodBuilder_t2807316753::get_offset_of_returnModReq_22(),
MethodBuilder_t2807316753::get_offset_of_returnModOpt_23(),
MethodBuilder_t2807316753::get_offset_of_paramModReq_24(),
MethodBuilder_t2807316753::get_offset_of_paramModOpt_25(),
MethodBuilder_t2807316753::get_offset_of_permissions_26(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize326 = { sizeof (MethodToken_t4055728386)+ sizeof (RuntimeObject), sizeof(MethodToken_t4055728386 ), sizeof(MethodToken_t4055728386_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable326[2] =
{
MethodToken_t4055728386::get_offset_of_tokValue_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MethodToken_t4055728386_StaticFields::get_offset_of_Empty_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize327 = { sizeof (ModuleBuilder_t731887691), -1, sizeof(ModuleBuilder_t731887691_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable327[21] =
{
ModuleBuilder_t731887691::get_offset_of_dynamic_image_10(),
ModuleBuilder_t731887691::get_offset_of_num_types_11(),
ModuleBuilder_t731887691::get_offset_of_types_12(),
ModuleBuilder_t731887691::get_offset_of_cattrs_13(),
ModuleBuilder_t731887691::get_offset_of_guid_14(),
ModuleBuilder_t731887691::get_offset_of_table_idx_15(),
ModuleBuilder_t731887691::get_offset_of_assemblyb_16(),
ModuleBuilder_t731887691::get_offset_of_global_methods_17(),
ModuleBuilder_t731887691::get_offset_of_global_fields_18(),
ModuleBuilder_t731887691::get_offset_of_is_main_19(),
ModuleBuilder_t731887691::get_offset_of_resources_20(),
ModuleBuilder_t731887691::get_offset_of_global_type_21(),
ModuleBuilder_t731887691::get_offset_of_global_type_created_22(),
ModuleBuilder_t731887691::get_offset_of_name_cache_23(),
ModuleBuilder_t731887691::get_offset_of_us_string_cache_24(),
ModuleBuilder_t731887691::get_offset_of_table_indexes_25(),
ModuleBuilder_t731887691::get_offset_of_transient_26(),
ModuleBuilder_t731887691::get_offset_of_token_gen_27(),
ModuleBuilder_t731887691::get_offset_of_resource_writers_28(),
ModuleBuilder_t731887691::get_offset_of_symbolWriter_29(),
ModuleBuilder_t731887691_StaticFields::get_offset_of_type_modifiers_30(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize328 = { sizeof (ModuleBuilderTokenGenerator_t944435078), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable328[1] =
{
ModuleBuilderTokenGenerator_t944435078::get_offset_of_mb_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize329 = { sizeof (OpCode_t123070264)+ sizeof (RuntimeObject), sizeof(OpCode_t123070264 ), 0, 0 };
extern const int32_t g_FieldOffsetTable329[8] =
{
OpCode_t123070264::get_offset_of_op1_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpCode_t123070264::get_offset_of_op2_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpCode_t123070264::get_offset_of_push_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpCode_t123070264::get_offset_of_pop_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpCode_t123070264::get_offset_of_size_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpCode_t123070264::get_offset_of_type_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpCode_t123070264::get_offset_of_args_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
OpCode_t123070264::get_offset_of_flow_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize330 = { sizeof (OpCodeNames_t3363784580), -1, sizeof(OpCodeNames_t3363784580_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable330[1] =
{
OpCodeNames_t3363784580_StaticFields::get_offset_of_names_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize331 = { sizeof (OpCodes_t126150456), -1, sizeof(OpCodes_t126150456_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable331[226] =
{
OpCodes_t126150456_StaticFields::get_offset_of_Nop_0(),
OpCodes_t126150456_StaticFields::get_offset_of_Break_1(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldarg_0_2(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldarg_1_3(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldarg_2_4(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldarg_3_5(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldloc_0_6(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldloc_1_7(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldloc_2_8(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldloc_3_9(),
OpCodes_t126150456_StaticFields::get_offset_of_Stloc_0_10(),
OpCodes_t126150456_StaticFields::get_offset_of_Stloc_1_11(),
OpCodes_t126150456_StaticFields::get_offset_of_Stloc_2_12(),
OpCodes_t126150456_StaticFields::get_offset_of_Stloc_3_13(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldarg_S_14(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldarga_S_15(),
OpCodes_t126150456_StaticFields::get_offset_of_Starg_S_16(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldloc_S_17(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldloca_S_18(),
OpCodes_t126150456_StaticFields::get_offset_of_Stloc_S_19(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldnull_20(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_M1_21(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_0_22(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_1_23(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_2_24(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_3_25(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_4_26(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_5_27(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_6_28(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_7_29(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_8_30(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_S_31(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I4_32(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_I8_33(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_R4_34(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldc_R8_35(),
OpCodes_t126150456_StaticFields::get_offset_of_Dup_36(),
OpCodes_t126150456_StaticFields::get_offset_of_Pop_37(),
OpCodes_t126150456_StaticFields::get_offset_of_Jmp_38(),
OpCodes_t126150456_StaticFields::get_offset_of_Call_39(),
OpCodes_t126150456_StaticFields::get_offset_of_Calli_40(),
OpCodes_t126150456_StaticFields::get_offset_of_Ret_41(),
OpCodes_t126150456_StaticFields::get_offset_of_Br_S_42(),
OpCodes_t126150456_StaticFields::get_offset_of_Brfalse_S_43(),
OpCodes_t126150456_StaticFields::get_offset_of_Brtrue_S_44(),
OpCodes_t126150456_StaticFields::get_offset_of_Beq_S_45(),
OpCodes_t126150456_StaticFields::get_offset_of_Bge_S_46(),
OpCodes_t126150456_StaticFields::get_offset_of_Bgt_S_47(),
OpCodes_t126150456_StaticFields::get_offset_of_Ble_S_48(),
OpCodes_t126150456_StaticFields::get_offset_of_Blt_S_49(),
OpCodes_t126150456_StaticFields::get_offset_of_Bne_Un_S_50(),
OpCodes_t126150456_StaticFields::get_offset_of_Bge_Un_S_51(),
OpCodes_t126150456_StaticFields::get_offset_of_Bgt_Un_S_52(),
OpCodes_t126150456_StaticFields::get_offset_of_Ble_Un_S_53(),
OpCodes_t126150456_StaticFields::get_offset_of_Blt_Un_S_54(),
OpCodes_t126150456_StaticFields::get_offset_of_Br_55(),
OpCodes_t126150456_StaticFields::get_offset_of_Brfalse_56(),
OpCodes_t126150456_StaticFields::get_offset_of_Brtrue_57(),
OpCodes_t126150456_StaticFields::get_offset_of_Beq_58(),
OpCodes_t126150456_StaticFields::get_offset_of_Bge_59(),
OpCodes_t126150456_StaticFields::get_offset_of_Bgt_60(),
OpCodes_t126150456_StaticFields::get_offset_of_Ble_61(),
OpCodes_t126150456_StaticFields::get_offset_of_Blt_62(),
OpCodes_t126150456_StaticFields::get_offset_of_Bne_Un_63(),
OpCodes_t126150456_StaticFields::get_offset_of_Bge_Un_64(),
OpCodes_t126150456_StaticFields::get_offset_of_Bgt_Un_65(),
OpCodes_t126150456_StaticFields::get_offset_of_Ble_Un_66(),
OpCodes_t126150456_StaticFields::get_offset_of_Blt_Un_67(),
OpCodes_t126150456_StaticFields::get_offset_of_Switch_68(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_I1_69(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_U1_70(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_I2_71(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_U2_72(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_I4_73(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_U4_74(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_I8_75(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_I_76(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_R4_77(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_R8_78(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldind_Ref_79(),
OpCodes_t126150456_StaticFields::get_offset_of_Stind_Ref_80(),
OpCodes_t126150456_StaticFields::get_offset_of_Stind_I1_81(),
OpCodes_t126150456_StaticFields::get_offset_of_Stind_I2_82(),
OpCodes_t126150456_StaticFields::get_offset_of_Stind_I4_83(),
OpCodes_t126150456_StaticFields::get_offset_of_Stind_I8_84(),
OpCodes_t126150456_StaticFields::get_offset_of_Stind_R4_85(),
OpCodes_t126150456_StaticFields::get_offset_of_Stind_R8_86(),
OpCodes_t126150456_StaticFields::get_offset_of_Add_87(),
OpCodes_t126150456_StaticFields::get_offset_of_Sub_88(),
OpCodes_t126150456_StaticFields::get_offset_of_Mul_89(),
OpCodes_t126150456_StaticFields::get_offset_of_Div_90(),
OpCodes_t126150456_StaticFields::get_offset_of_Div_Un_91(),
OpCodes_t126150456_StaticFields::get_offset_of_Rem_92(),
OpCodes_t126150456_StaticFields::get_offset_of_Rem_Un_93(),
OpCodes_t126150456_StaticFields::get_offset_of_And_94(),
OpCodes_t126150456_StaticFields::get_offset_of_Or_95(),
OpCodes_t126150456_StaticFields::get_offset_of_Xor_96(),
OpCodes_t126150456_StaticFields::get_offset_of_Shl_97(),
OpCodes_t126150456_StaticFields::get_offset_of_Shr_98(),
OpCodes_t126150456_StaticFields::get_offset_of_Shr_Un_99(),
OpCodes_t126150456_StaticFields::get_offset_of_Neg_100(),
OpCodes_t126150456_StaticFields::get_offset_of_Not_101(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_I1_102(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_I2_103(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_I4_104(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_I8_105(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_R4_106(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_R8_107(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_U4_108(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_U8_109(),
OpCodes_t126150456_StaticFields::get_offset_of_Callvirt_110(),
OpCodes_t126150456_StaticFields::get_offset_of_Cpobj_111(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldobj_112(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldstr_113(),
OpCodes_t126150456_StaticFields::get_offset_of_Newobj_114(),
OpCodes_t126150456_StaticFields::get_offset_of_Castclass_115(),
OpCodes_t126150456_StaticFields::get_offset_of_Isinst_116(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_R_Un_117(),
OpCodes_t126150456_StaticFields::get_offset_of_Unbox_118(),
OpCodes_t126150456_StaticFields::get_offset_of_Throw_119(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldfld_120(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldflda_121(),
OpCodes_t126150456_StaticFields::get_offset_of_Stfld_122(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldsfld_123(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldsflda_124(),
OpCodes_t126150456_StaticFields::get_offset_of_Stsfld_125(),
OpCodes_t126150456_StaticFields::get_offset_of_Stobj_126(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I1_Un_127(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I2_Un_128(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I4_Un_129(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I8_Un_130(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U1_Un_131(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U2_Un_132(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U4_Un_133(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U8_Un_134(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I_Un_135(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U_Un_136(),
OpCodes_t126150456_StaticFields::get_offset_of_Box_137(),
OpCodes_t126150456_StaticFields::get_offset_of_Newarr_138(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldlen_139(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelema_140(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_I1_141(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_U1_142(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_I2_143(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_U2_144(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_I4_145(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_U4_146(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_I8_147(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_I_148(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_R4_149(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_R8_150(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_Ref_151(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_I_152(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_I1_153(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_I2_154(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_I4_155(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_I8_156(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_R4_157(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_R8_158(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_Ref_159(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldelem_160(),
OpCodes_t126150456_StaticFields::get_offset_of_Stelem_161(),
OpCodes_t126150456_StaticFields::get_offset_of_Unbox_Any_162(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I1_163(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U1_164(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I2_165(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U2_166(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I4_167(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U4_168(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I8_169(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U8_170(),
OpCodes_t126150456_StaticFields::get_offset_of_Refanyval_171(),
OpCodes_t126150456_StaticFields::get_offset_of_Ckfinite_172(),
OpCodes_t126150456_StaticFields::get_offset_of_Mkrefany_173(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldtoken_174(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_U2_175(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_U1_176(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_I_177(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_I_178(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_Ovf_U_179(),
OpCodes_t126150456_StaticFields::get_offset_of_Add_Ovf_180(),
OpCodes_t126150456_StaticFields::get_offset_of_Add_Ovf_Un_181(),
OpCodes_t126150456_StaticFields::get_offset_of_Mul_Ovf_182(),
OpCodes_t126150456_StaticFields::get_offset_of_Mul_Ovf_Un_183(),
OpCodes_t126150456_StaticFields::get_offset_of_Sub_Ovf_184(),
OpCodes_t126150456_StaticFields::get_offset_of_Sub_Ovf_Un_185(),
OpCodes_t126150456_StaticFields::get_offset_of_Endfinally_186(),
OpCodes_t126150456_StaticFields::get_offset_of_Leave_187(),
OpCodes_t126150456_StaticFields::get_offset_of_Leave_S_188(),
OpCodes_t126150456_StaticFields::get_offset_of_Stind_I_189(),
OpCodes_t126150456_StaticFields::get_offset_of_Conv_U_190(),
OpCodes_t126150456_StaticFields::get_offset_of_Prefix7_191(),
OpCodes_t126150456_StaticFields::get_offset_of_Prefix6_192(),
OpCodes_t126150456_StaticFields::get_offset_of_Prefix5_193(),
OpCodes_t126150456_StaticFields::get_offset_of_Prefix4_194(),
OpCodes_t126150456_StaticFields::get_offset_of_Prefix3_195(),
OpCodes_t126150456_StaticFields::get_offset_of_Prefix2_196(),
OpCodes_t126150456_StaticFields::get_offset_of_Prefix1_197(),
OpCodes_t126150456_StaticFields::get_offset_of_Prefixref_198(),
OpCodes_t126150456_StaticFields::get_offset_of_Arglist_199(),
OpCodes_t126150456_StaticFields::get_offset_of_Ceq_200(),
OpCodes_t126150456_StaticFields::get_offset_of_Cgt_201(),
OpCodes_t126150456_StaticFields::get_offset_of_Cgt_Un_202(),
OpCodes_t126150456_StaticFields::get_offset_of_Clt_203(),
OpCodes_t126150456_StaticFields::get_offset_of_Clt_Un_204(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldftn_205(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldvirtftn_206(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldarg_207(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldarga_208(),
OpCodes_t126150456_StaticFields::get_offset_of_Starg_209(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldloc_210(),
OpCodes_t126150456_StaticFields::get_offset_of_Ldloca_211(),
OpCodes_t126150456_StaticFields::get_offset_of_Stloc_212(),
OpCodes_t126150456_StaticFields::get_offset_of_Localloc_213(),
OpCodes_t126150456_StaticFields::get_offset_of_Endfilter_214(),
OpCodes_t126150456_StaticFields::get_offset_of_Unaligned_215(),
OpCodes_t126150456_StaticFields::get_offset_of_Volatile_216(),
OpCodes_t126150456_StaticFields::get_offset_of_Tailcall_217(),
OpCodes_t126150456_StaticFields::get_offset_of_Initobj_218(),
OpCodes_t126150456_StaticFields::get_offset_of_Constrained_219(),
OpCodes_t126150456_StaticFields::get_offset_of_Cpblk_220(),
OpCodes_t126150456_StaticFields::get_offset_of_Initblk_221(),
OpCodes_t126150456_StaticFields::get_offset_of_Rethrow_222(),
OpCodes_t126150456_StaticFields::get_offset_of_Sizeof_223(),
OpCodes_t126150456_StaticFields::get_offset_of_Refanytype_224(),
OpCodes_t126150456_StaticFields::get_offset_of_Readonly_225(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize332 = { sizeof (OperandType_t2622847887)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable332[19] =
{
OperandType_t2622847887::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize333 = { sizeof (PEFileKinds_t3631470751)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable333[4] =
{
PEFileKinds_t3631470751::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize334 = { sizeof (PackingSize_t2976435189)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable334[10] =
{
PackingSize_t2976435189::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize335 = { sizeof (ParameterBuilder_t1137139675), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable335[3] =
{
ParameterBuilder_t1137139675::get_offset_of_name_0(),
ParameterBuilder_t1137139675::get_offset_of_attrs_1(),
ParameterBuilder_t1137139675::get_offset_of_position_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize336 = { sizeof (PropertyBuilder_t314297007), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable336[6] =
{
PropertyBuilder_t314297007::get_offset_of_attrs_0(),
PropertyBuilder_t314297007::get_offset_of_name_1(),
PropertyBuilder_t314297007::get_offset_of_type_2(),
PropertyBuilder_t314297007::get_offset_of_set_method_3(),
PropertyBuilder_t314297007::get_offset_of_get_method_4(),
PropertyBuilder_t314297007::get_offset_of_typeb_5(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize337 = { sizeof (StackBehaviour_t3009528134)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable337[30] =
{
StackBehaviour_t3009528134::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize338 = { sizeof (TypeBuilder_t1073948154), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable338[26] =
{
TypeBuilder_t1073948154::get_offset_of_tname_8(),
TypeBuilder_t1073948154::get_offset_of_nspace_9(),
TypeBuilder_t1073948154::get_offset_of_parent_10(),
TypeBuilder_t1073948154::get_offset_of_nesting_type_11(),
TypeBuilder_t1073948154::get_offset_of_interfaces_12(),
TypeBuilder_t1073948154::get_offset_of_num_methods_13(),
TypeBuilder_t1073948154::get_offset_of_methods_14(),
TypeBuilder_t1073948154::get_offset_of_ctors_15(),
TypeBuilder_t1073948154::get_offset_of_properties_16(),
TypeBuilder_t1073948154::get_offset_of_num_fields_17(),
TypeBuilder_t1073948154::get_offset_of_fields_18(),
TypeBuilder_t1073948154::get_offset_of_events_19(),
TypeBuilder_t1073948154::get_offset_of_cattrs_20(),
TypeBuilder_t1073948154::get_offset_of_subtypes_21(),
TypeBuilder_t1073948154::get_offset_of_attrs_22(),
TypeBuilder_t1073948154::get_offset_of_table_idx_23(),
TypeBuilder_t1073948154::get_offset_of_pmodule_24(),
TypeBuilder_t1073948154::get_offset_of_class_size_25(),
TypeBuilder_t1073948154::get_offset_of_packing_size_26(),
TypeBuilder_t1073948154::get_offset_of_generic_container_27(),
TypeBuilder_t1073948154::get_offset_of_generic_params_28(),
TypeBuilder_t1073948154::get_offset_of_permissions_29(),
TypeBuilder_t1073948154::get_offset_of_created_30(),
TypeBuilder_t1073948154::get_offset_of_fullname_31(),
TypeBuilder_t1073948154::get_offset_of_createTypeCalled_32(),
TypeBuilder_t1073948154::get_offset_of_underlying_type_33(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize339 = { sizeof (UnmanagedMarshal_t984015687), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable339[9] =
{
UnmanagedMarshal_t984015687::get_offset_of_count_0(),
UnmanagedMarshal_t984015687::get_offset_of_t_1(),
UnmanagedMarshal_t984015687::get_offset_of_tbase_2(),
UnmanagedMarshal_t984015687::get_offset_of_guid_3(),
UnmanagedMarshal_t984015687::get_offset_of_mcookie_4(),
UnmanagedMarshal_t984015687::get_offset_of_marshaltype_5(),
UnmanagedMarshal_t984015687::get_offset_of_marshaltyperef_6(),
UnmanagedMarshal_t984015687::get_offset_of_param_num_7(),
UnmanagedMarshal_t984015687::get_offset_of_has_size_8(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize340 = { sizeof (AmbiguousMatchException_t566690781), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize341 = { sizeof (Assembly_t), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable341[10] =
{
Assembly_t::get_offset_of__mono_assembly_0(),
Assembly_t::get_offset_of_resolve_event_holder_1(),
Assembly_t::get_offset_of__evidence_2(),
Assembly_t::get_offset_of__minimum_3(),
Assembly_t::get_offset_of__optional_4(),
Assembly_t::get_offset_of__refuse_5(),
Assembly_t::get_offset_of__granted_6(),
Assembly_t::get_offset_of__denied_7(),
Assembly_t::get_offset_of_fromByteArray_8(),
Assembly_t::get_offset_of_assemblyName_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize342 = { sizeof (ResolveEventHolder_t2120639521), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize343 = { sizeof (AssemblyCompanyAttribute_t909257512), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable343[1] =
{
AssemblyCompanyAttribute_t909257512::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize344 = { sizeof (AssemblyConfigurationAttribute_t2167450097), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable344[1] =
{
AssemblyConfigurationAttribute_t2167450097::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize345 = { sizeof (AssemblyCopyrightAttribute_t836190902), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable345[1] =
{
AssemblyCopyrightAttribute_t836190902::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize346 = { sizeof (AssemblyDefaultAliasAttribute_t2176720766), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable346[1] =
{
AssemblyDefaultAliasAttribute_t2176720766::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize347 = { sizeof (AssemblyDelaySignAttribute_t176441654), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable347[1] =
{
AssemblyDelaySignAttribute_t176441654::get_offset_of_delay_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize348 = { sizeof (AssemblyDescriptionAttribute_t1046996844), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable348[1] =
{
AssemblyDescriptionAttribute_t1046996844::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize349 = { sizeof (AssemblyFileVersionAttribute_t14927972), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable349[1] =
{
AssemblyFileVersionAttribute_t14927972::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize350 = { sizeof (AssemblyInformationalVersionAttribute_t3037764991), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable350[1] =
{
AssemblyInformationalVersionAttribute_t3037764991::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize351 = { sizeof (AssemblyKeyFileAttribute_t2825689142), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable351[1] =
{
AssemblyKeyFileAttribute_t2825689142::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize352 = { sizeof (AssemblyName_t270931938), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable352[15] =
{
AssemblyName_t270931938::get_offset_of_name_0(),
AssemblyName_t270931938::get_offset_of_codebase_1(),
AssemblyName_t270931938::get_offset_of_major_2(),
AssemblyName_t270931938::get_offset_of_minor_3(),
AssemblyName_t270931938::get_offset_of_build_4(),
AssemblyName_t270931938::get_offset_of_revision_5(),
AssemblyName_t270931938::get_offset_of_cultureinfo_6(),
AssemblyName_t270931938::get_offset_of_flags_7(),
AssemblyName_t270931938::get_offset_of_hashalg_8(),
AssemblyName_t270931938::get_offset_of_keypair_9(),
AssemblyName_t270931938::get_offset_of_publicKey_10(),
AssemblyName_t270931938::get_offset_of_keyToken_11(),
AssemblyName_t270931938::get_offset_of_versioncompat_12(),
AssemblyName_t270931938::get_offset_of_version_13(),
AssemblyName_t270931938::get_offset_of_processor_architecture_14(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize353 = { sizeof (AssemblyNameFlags_t3675421470)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable353[6] =
{
AssemblyNameFlags_t3675421470::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize354 = { sizeof (AssemblyProductAttribute_t1000945320), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable354[1] =
{
AssemblyProductAttribute_t1000945320::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize355 = { sizeof (AssemblyTitleAttribute_t1901133402), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable355[1] =
{
AssemblyTitleAttribute_t1901133402::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize356 = { sizeof (AssemblyTrademarkAttribute_t3598190473), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable356[1] =
{
AssemblyTrademarkAttribute_t3598190473::get_offset_of_name_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize357 = { sizeof (Binder_t2999457153), -1, sizeof(Binder_t2999457153_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable357[1] =
{
Binder_t2999457153_StaticFields::get_offset_of_default_binder_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize358 = { sizeof (Default_t2456596213), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize359 = { sizeof (BindingFlags_t2721792723)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable359[21] =
{
BindingFlags_t2721792723::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize360 = { sizeof (CallingConventions_t2253234531)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable360[6] =
{
CallingConventions_t2253234531::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize361 = { sizeof (ConstructorInfo_t5769829), -1, sizeof(ConstructorInfo_t5769829_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable361[2] =
{
ConstructorInfo_t5769829_StaticFields::get_offset_of_ConstructorName_0(),
ConstructorInfo_t5769829_StaticFields::get_offset_of_TypeConstructorName_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize362 = { sizeof (CustomAttributeData_t1084486650), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable362[3] =
{
CustomAttributeData_t1084486650::get_offset_of_ctorInfo_0(),
CustomAttributeData_t1084486650::get_offset_of_ctorArgs_1(),
CustomAttributeData_t1084486650::get_offset_of_namedArgs_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize363 = { sizeof (CustomAttributeNamedArgument_t287865710)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable363[2] =
{
CustomAttributeNamedArgument_t287865710::get_offset_of_typedArgument_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
CustomAttributeNamedArgument_t287865710::get_offset_of_memberInfo_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize364 = { sizeof (CustomAttributeTypedArgument_t2723150157)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable364[2] =
{
CustomAttributeTypedArgument_t2723150157::get_offset_of_argumentType_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
CustomAttributeTypedArgument_t2723150157::get_offset_of_value_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize365 = { sizeof (EventAttributes_t1153671773)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable365[5] =
{
EventAttributes_t1153671773::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize366 = { sizeof (EventInfo_t), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable366[1] =
{
EventInfo_t::get_offset_of_cached_add_event_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize367 = { sizeof (AddEventAdapter_t1787725097), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize368 = { sizeof (FieldAttributes_t400321159)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable368[20] =
{
FieldAttributes_t400321159::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize369 = { sizeof (FieldInfo_t), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize370 = { sizeof (ImageFileMachine_t799743225)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable370[4] =
{
ImageFileMachine_t799743225::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize371 = { sizeof (LocalVariableInfo_t2426779395), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable371[3] =
{
LocalVariableInfo_t2426779395::get_offset_of_type_0(),
LocalVariableInfo_t2426779395::get_offset_of_is_pinned_1(),
LocalVariableInfo_t2426779395::get_offset_of_position_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize372 = { sizeof (MemberInfoSerializationHolder_t1943730831), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable372[5] =
{
MemberInfoSerializationHolder_t1943730831::get_offset_of__memberName_0(),
MemberInfoSerializationHolder_t1943730831::get_offset_of__memberSignature_1(),
MemberInfoSerializationHolder_t1943730831::get_offset_of__memberType_2(),
MemberInfoSerializationHolder_t1943730831::get_offset_of__reflectedType_3(),
MemberInfoSerializationHolder_t1943730831::get_offset_of__genericArguments_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize373 = { sizeof (MemberTypes_t3790569052)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable373[10] =
{
MemberTypes_t3790569052::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize374 = { sizeof (MethodAttributes_t2366443849)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable374[25] =
{
MethodAttributes_t2366443849::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize375 = { sizeof (MethodBase_t), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize376 = { sizeof (MethodImplAttributes_t3646023817)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable376[15] =
{
MethodImplAttributes_t3646023817::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize377 = { sizeof (MethodInfo_t), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize378 = { sizeof (Missing_t508514592), -1, sizeof(Missing_t508514592_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable378[1] =
{
Missing_t508514592_StaticFields::get_offset_of_Value_0(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize379 = { sizeof (Module_t2987026101), -1, sizeof(Module_t2987026101_StaticFields), 0 };
extern const int32_t g_FieldOffsetTable379[10] =
{
0,
Module_t2987026101_StaticFields::get_offset_of_FilterTypeName_1(),
Module_t2987026101_StaticFields::get_offset_of_FilterTypeNameIgnoreCase_2(),
Module_t2987026101::get_offset_of__impl_3(),
Module_t2987026101::get_offset_of_assembly_4(),
Module_t2987026101::get_offset_of_fqname_5(),
Module_t2987026101::get_offset_of_name_6(),
Module_t2987026101::get_offset_of_scopename_7(),
Module_t2987026101::get_offset_of_is_resource_8(),
Module_t2987026101::get_offset_of_token_9(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize380 = { sizeof (MonoEventInfo_t346866618)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable380[8] =
{
MonoEventInfo_t346866618::get_offset_of_declaring_type_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoEventInfo_t346866618::get_offset_of_reflected_type_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoEventInfo_t346866618::get_offset_of_name_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoEventInfo_t346866618::get_offset_of_add_method_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoEventInfo_t346866618::get_offset_of_remove_method_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoEventInfo_t346866618::get_offset_of_raise_method_5() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoEventInfo_t346866618::get_offset_of_attrs_6() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoEventInfo_t346866618::get_offset_of_other_methods_7() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize381 = { sizeof (MonoEvent_t), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable381[2] =
{
MonoEvent_t::get_offset_of_klass_1(),
MonoEvent_t::get_offset_of_handle_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize382 = { sizeof (MonoField_t), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable382[5] =
{
MonoField_t::get_offset_of_klass_0(),
MonoField_t::get_offset_of_fhandle_1(),
MonoField_t::get_offset_of_name_2(),
MonoField_t::get_offset_of_type_3(),
MonoField_t::get_offset_of_attrs_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize383 = { sizeof (MonoGenericMethod_t), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize384 = { sizeof (MonoGenericCMethod_t4239028627), -1, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize385 = { sizeof (MonoMethodInfo_t1248819020)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable385[5] =
{
MonoMethodInfo_t1248819020::get_offset_of_parent_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoMethodInfo_t1248819020::get_offset_of_ret_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoMethodInfo_t1248819020::get_offset_of_attrs_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoMethodInfo_t1248819020::get_offset_of_iattrs_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoMethodInfo_t1248819020::get_offset_of_callconv_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize386 = { sizeof (MonoMethod_t), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable386[3] =
{
MonoMethod_t::get_offset_of_mhandle_0(),
MonoMethod_t::get_offset_of_name_1(),
MonoMethod_t::get_offset_of_reftype_2(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize387 = { sizeof (MonoCMethod_t3191134373), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable387[3] =
{
MonoCMethod_t3191134373::get_offset_of_mhandle_2(),
MonoCMethod_t3191134373::get_offset_of_name_3(),
MonoCMethod_t3191134373::get_offset_of_reftype_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize388 = { sizeof (MonoPropertyInfo_t3087356066)+ sizeof (RuntimeObject), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable388[5] =
{
MonoPropertyInfo_t3087356066::get_offset_of_parent_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoPropertyInfo_t3087356066::get_offset_of_name_1() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoPropertyInfo_t3087356066::get_offset_of_get_method_2() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoPropertyInfo_t3087356066::get_offset_of_set_method_3() + static_cast<int32_t>(sizeof(RuntimeObject)),
MonoPropertyInfo_t3087356066::get_offset_of_attrs_4() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize389 = { sizeof (PInfo_t446749821)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable389[7] =
{
PInfo_t446749821::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize390 = { sizeof (MonoProperty_t), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable390[5] =
{
MonoProperty_t::get_offset_of_klass_0(),
MonoProperty_t::get_offset_of_prop_1(),
MonoProperty_t::get_offset_of_info_2(),
MonoProperty_t::get_offset_of_cached_3(),
MonoProperty_t::get_offset_of_cached_getter_4(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize391 = { sizeof (GetterAdapter_t2155025054), sizeof(Il2CppMethodPointer), 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize392 = { 0, 0, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize393 = { 0, 0, 0, 0 };
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize394 = { sizeof (ParameterAttributes_t1826424051)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable394[12] =
{
ParameterAttributes_t1826424051::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize395 = { sizeof (ParameterInfo_t1861056598), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable395[7] =
{
ParameterInfo_t1861056598::get_offset_of_ClassImpl_0(),
ParameterInfo_t1861056598::get_offset_of_DefaultValueImpl_1(),
ParameterInfo_t1861056598::get_offset_of_MemberImpl_2(),
ParameterInfo_t1861056598::get_offset_of_NameImpl_3(),
ParameterInfo_t1861056598::get_offset_of_PositionImpl_4(),
ParameterInfo_t1861056598::get_offset_of_AttrsImpl_5(),
ParameterInfo_t1861056598::get_offset_of_marshalAs_6(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize396 = { sizeof (ParameterModifier_t1461694466)+ sizeof (RuntimeObject), sizeof(ParameterModifier_t1461694466_marshaled_pinvoke), 0, 0 };
extern const int32_t g_FieldOffsetTable396[1] =
{
ParameterModifier_t1461694466::get_offset_of__byref_0() + static_cast<int32_t>(sizeof(RuntimeObject)),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize397 = { sizeof (Pointer_t2088917139), -1, 0, 0 };
extern const int32_t g_FieldOffsetTable397[2] =
{
Pointer_t2088917139::get_offset_of_data_0(),
Pointer_t2088917139::get_offset_of_type_1(),
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize398 = { sizeof (PortableExecutableKinds_t1191923110)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable398[6] =
{
PortableExecutableKinds_t1191923110::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
extern const Il2CppTypeDefinitionSizes g_typeDefinitionSize399 = { sizeof (ProcessorArchitecture_t305929193)+ sizeof (RuntimeObject), sizeof(int32_t), 0, 0 };
extern const int32_t g_FieldOffsetTable399[6] =
{
ProcessorArchitecture_t305929193::get_offset_of_value___1() + static_cast<int32_t>(sizeof(RuntimeObject)),
0,
0,
0,
0,
0,
};
#ifdef __clang__
#pragma clang diagnostic pop
#endif
| [
"azilby@gmail.com"
] | azilby@gmail.com |
cfa203e0d937c7b8e03af79c37a257cd5b3733b8 | e40d5e30fb375589aa22efe2a4258f45cee99ce8 | /src/rabid.cpp | 1a00a7cf46195aea51a1c14b8bd1f0060d6b313a | [] | no_license | mironside/rabid | dfc0868a43b01fd4453981f50739af092e9889fe | 70c7d4c27202b518a9412ae8a9a29ab6097c39c0 | refs/heads/master | 2016-09-10T11:23:09.351459 | 2013-04-23T16:15:55 | 2013-04-23T16:15:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,926 | cpp | /**
@file rabid.cpp
@author Christopher Olsen
@date Fri Mar 25 02:00:40 2005
Copyright (C) 2004 Christopher A Olsen
*/
#include "rabid.h"
#include "common/console.h"
#include "common/commandSystem.h"
#include "common/cvarSystem.h"
#include "render/meshSystem/meshSystem.h"
#include "render/materialSystem/materialSystem.h"
#include "render/materialSystem/material.h"
#include "common/common.h"
#include "render/renderer.h"
#include "common/timer.h"
#include "common/fileSystem/fileSystem.h"
#include "common/timer.h"
#include "math/vector3.h"
#include "math/transformation.h"
#include "render/renderDevice.h"
#include "render/materialSystem/texture.h"
#include "common/defMgr.h"
#include "libsn/vector.h"
#include "public/def.h"
#include "libsn/dict.h"
#include "render/surface.h"
#include "common/keys.h"
#include "math/matrix3.h"
#include <assert.h>
#include <stdio.h>
// global interfaces
Console* g_console = 0;
ICVarSystem* g_cvarSystem = 0;
CommandSystem* g_commandSystem = 0;
IFileSystem* g_fileSystem = 0;
MaterialSystem* g_materialSystem = 0;
IMeshSystem* g_meshSystem = 0;
Common* g_common = 0;
IRenderer* g_renderer = 0;
Timer g_timer;
DefMgr* g_defMgr = 0;
extern IRenderDevice* g_renderDevice;
Material* logo = 0;
CVar r_profile("r_profile", "0");
CVar cl_camx("cl_camx", "0");
CVar cl_camy("cl_camy", "0");
CVar cl_camz("cl_camz", "50");
CVar cl_camrotx("cl_camrotx", "0");
CVar cl_camroty("cl_camroty", "0");
CVar cl_camrotz("cl_camrotz", "0");
CVar cl_surf("cl_surf", "0");
CVar r_resid("r_resid", "0");
CVar r_showbrightest("r_showbrightest", "1");
CVar npasses("npasses", "1");
CVar done("done", "1");
snVector<Surface*> surfaces;
snVector<Light*> lights;
typedef enum
{
B_FORWARD,
B_BACKWARD,
B_LEFT,
B_RIGHT,
B_RENDER,
B_LIGHT_MODE,
B_TOGGLE_BRIGHTEST,
NUM_KEYS
} eKeys;
char bindings[NUM_KEYS] = {'w', 's', 'a', 'd', ' ', K_TAB, 'b'};
char keyState[NUM_KEYS];
enum {GM_PRESS, GM_RELEASE, GM_MOUSEMOVE};
typedef struct gameMsg_s
{
int type;
int data;
} gameMsg_t;
int RabidEngine::initialized = RabidEngine::Initialize();
int RabidEngine::Initialize()
{
App::Run = &WindowedApp::Run;
theApp = new RabidEngine();
initialized = true;
return initialized;
}
RabidEngine::RabidEngine() :
WindowedApp("Rabid", 0,0, 800, 600, 0)
{
memset(keyState, 0, NUM_KEYS * sizeof(char));
}
RabidEngine::~RabidEngine()
{
}
int RabidEngine::LoadMap(const char* filename)
{
IDef* mapDef = g_defMgr->GetDef(filename);
if(!mapDef)
{
g_common->Print("\x007Map %s NOT FOUND!", filename);
return 0;
}
assert(mapDef);
const snVector<IDef*>& sections = mapDef->GetComponents();
for(unsigned int i = 0; i < sections.Size(); i++)
{
// SURFACE
if(strcmp(sections[i]->GetType(), "surface") == 0)
{
Surface* s = new Surface();
surfaces.PushBack(s);
const snDict& d = sections[i]->GetDict();
if(!d.ExistsVec3Vec("vertices"))
{
printf("Surface contains no vertices... SKIPPING!\n");
continue;
}
if(!d.ExistsVec2Vec("texcoords"))
{
printf("Surface contains no vertices... SKIPPING!\n");
continue;
}
const snVector<Vector3f>& vertices = d["vertices"].GetVec3Vec();
const snVector<Vector2f>& texcoords = d["texcoords"].GetVec2Vec();
const char* mat = "axis";
if(d.ExistsString("material"))
mat = d["material"].GetString();
else
printf("Surface material undefined!\n");
s->Create(mat, vertices, texcoords);
}
// LIGHT
else if(strcmp(sections[i]->GetType(), "light") == 0)
{
Surface* s = new Surface();
const snDict& d = sections[i]->GetDict();
float intensity = 1.0;
if(d.ExistsFloat("intensity"))
intensity = d["intensity"].GetFloat();
if(!d.ExistsVec3Vec("vertices"))
{
printf("Surface contains no vertices... SKIPPING!\n");
continue;
}
if(!d.ExistsVec2Vec("texcoords"))
{
printf("Surface contains no vertices... SKIPPING!\n");
continue;
}
const snVector<Vector3f>& vertices = d["vertices"].GetVec3Vec();
const snVector<Vector2f>& texcoords = d["texcoords"].GetVec2Vec();
s->CreateLight(vertices, texcoords, intensity);
surfaces.PushBack(s);
}
}
return 1;
}
bool RabidEngine::OnInitialize(int argc, char** argv)
{
LOG_START("rabid_log.html");
g_fileSystem = (IFileSystem*)new FileSystem();
g_fileSystem->AddPath();
g_defMgr = new DefMgr();
g_cvarSystem = new CVarSystem();
g_cvarSystem->Initialize();
CVar::RegisterStaticCVars();
g_console = new Console();
g_console->SetScreenDimensions(GetWidth(), GetHeight());
g_commandSystem = new CommandSystem();
g_commandSystem->Initialize();
g_common = new Common();
g_renderer = CreateRenderer("GL");
g_renderer->SetViewport(0,0, GetWidth(), GetHeight());
g_common->Print("\x009### Rabid Hardware Radiosity Engine");
g_common->Print("\x009### Based on the Catharsis Game Engine");
g_common->Print("\x009### Christopher Olsen");
g_common->Print("\x005### \x007SPACE\x005 distributes light ###");
g_common->Print("\x005### \x007TAB\x005 switches light view modes ###");
g_common->Print("\x005### \x007""B\x005 toggles the brightest surface ###");
LoadMap("test.map");
cl_camrotx.SetFloat(0.0);
cl_camroty.SetFloat(0.0);
cl_camrotz.SetFloat(0.0);
logo = g_materialSystem->GetMaterial("logo");
return true;
}
bool RabidEngine::OnTerminate()
{
delete g_renderer;
delete g_fileSystem;
delete g_cvarSystem;
delete g_commandSystem;
delete g_console;
delete g_common;
return true;
}
void RabidEngine::OnIdle()
{
g_timer.Update();
const float dt = g_timer.GetTimeChange();
g_console->Update(dt);
Transformation view;
view.Rotate().FromEulerXYZ(cl_camrotx.GetFloat(),
cl_camroty.GetFloat(),
cl_camrotz.GetFloat());
// move
const Vector3f forward = -view.Rotate().GetColumn(2);
const Vector3f right = view.Rotate().GetColumn(0);
const float vel = 50.0 * dt;
if(keyState[B_FORWARD])
{
cl_camx.SetFloat(cl_camx.GetFloat() + forward.x * vel);
cl_camy.SetFloat(cl_camy.GetFloat() + forward.y * vel);
cl_camz.SetFloat(cl_camz.GetFloat() + forward.z * vel);
}
if(keyState[B_BACKWARD])
{
cl_camx.SetFloat(cl_camx.GetFloat() + -forward.x * vel);
cl_camy.SetFloat(cl_camy.GetFloat() + -forward.y * vel);
cl_camz.SetFloat(cl_camz.GetFloat() + -forward.z * vel);
}
if(keyState[B_RIGHT])
{
cl_camx.SetFloat(cl_camx.GetFloat() + right.x * vel);
cl_camy.SetFloat(cl_camy.GetFloat() + right.y * vel);
cl_camz.SetFloat(cl_camz.GetFloat() + right.z * vel);
}
if(keyState[B_LEFT])
{
cl_camx.SetFloat(cl_camx.GetFloat() + -right.x * vel);
cl_camy.SetFloat(cl_camy.GetFloat() + -right.y * vel);
cl_camz.SetFloat(cl_camz.GetFloat() + -right.z * vel);
}
if(keyState[B_RENDER])
{
done.Set("0");
keyState[B_RENDER] = 0;
}
if(keyState[B_LIGHT_MODE])
{
if(r_resid.GetBool())
r_resid.Set("0");
else
r_resid.Set("1");
keyState[B_LIGHT_MODE] = 0;
}
if(keyState[B_TOGGLE_BRIGHTEST])
{
if(r_showbrightest.GetBool())
r_showbrightest.Set("0");
else
r_showbrightest.Set("1");
keyState[B_TOGGLE_BRIGHTEST] = 0;
}
static int pass;
static int surf = -1;
static int brightest;
static int patches;
if(done.GetBool())
{
}
else
{
if(pass == 0)
{
// clear accumulation buffers
for(unsigned int i = 0; i < surfaces.Size(); i++)
{
// if(surfaces[i]->GetType() != S_LIGHT)
// surfaces[i]->ClearAccum();
}
}
if(surf >= (int)surfaces.Size())
{
surf = -2;
pass++;
done.Set("1");
}
else if(surf == -1)
{
// Find Brightest Surface
float maxPower = 0.0;
for(unsigned int i = 0; i < surfaces.Size(); i++)
{
float p = surfaces[i]->GetPower();
if(p > maxPower)
{
brightest = i;
maxPower = p;
}
}
for(int i = 0; i < lights.Size(); i++)
delete lights[i];
lights.Resize(0);
surfaces[brightest]->CreateLights(lights);
}
else
{
Surface* lsurf = surfaces[surf];
bool skip = false;
// lights can't receive light
if(lsurf->GetType() == S_LIGHT)
skip = true;
// surface can light itself
if(!skip && surf == brightest)
{
if(r_resid.GetBool())
lsurf->CopyResidualToLightMap();
skip = true;
}
if(!skip)
{
// Render each sub-light's contribution
for(unsigned int l = 0; l < lights.Size(); l++)
{
Vector3f& p = lights[l]->p;
Vector3f& d = lights[l]->d;
float I = lights[l]->I;
// light is on wrong side of surface
if(Dot(p - lsurf->c, lsurf->N) < 0.1)
continue;
g_renderer->SetLight(0, p.x, p.y, p.z);
g_renderer->SetLightDir(0, d.x, d.y, d.z);
g_renderer->SetLightIntensity(0, I);
g_renderer->SetLightFraction(0, 1.0 / (float)lights.Size());
lsurf->Frame(p);
lsurf->CreateLightMap(p, d, surfaces);
lsurf->AccumulateResidualLight();
lsurf->AccumulateLight();
g_renderer->SetViewMatrix(0);
patches += lsurf->GetNumPatches();
}
r_resid.Set(r_resid.GetBool() ? "1" : "0");
}
}
surf++;
}
if(r_resid.Changed())
{
for(int i = 0; i < surfaces.Size(); i++)
{
Surface* lsurf = surfaces[i];
lsurf->Frame(lsurf->c + lsurf->N*10.0);
if(r_resid.GetBool())
lsurf->CopyResidualToLightMap();
else
lsurf->CopyAccumToLightMap();
}
}
// Render normal view
view.Translate() = Vector3f(cl_camx.GetFloat(),
cl_camy.GetFloat(),
cl_camz.GetFloat());
view = view.Inverse();
g_renderer->SetViewport(0,0, GetWidth(),GetHeight());
g_renderer->SetViewMatrix(view);
g_renderer->SetProjectionMatrix(0);
g_renderer->SetClearColor(0.25f, 0.25f, 0.35f, 1.0f);
g_renderer->BindMaterial(0);
g_renderer->Clear(R_COLOR_BUFFER | R_DEPTH_BUFFER);
g_renderer->SetColor(1,1,1);
int bsurf = 0;
float maxPower = 0.0;
for(unsigned int i = 0; i < surfaces.Size(); i++)
{
float p = surfaces[i]->GetPower();
if(p > maxPower)
{
bsurf = i;
maxPower = p;
}
}
// draw all surfaces normally
for(unsigned int i = 0; i < surfaces.Size(); i++)
{
if(r_showbrightest.GetBool())
{
if(i == bsurf)
g_renderDevice->SetColor(1.0, 1.0, 0.7);
else
g_renderDevice->SetColor(1,1,1);
}
surfaces[i]->Render();
}
g_console->Draw(g_renderer);
g_renderer->DrawTextP(15, 50, 16, r_resid.GetBool() ? "Residual" : "Accumulation");
g_renderer->DrawTextP(15, 30, 16, "Step: %d", pass);
g_renderer->DrawTextP(15, 10, 16, "Patches: %d", patches);
g_materialSystem->BindMaterial(logo);
g_renderer->DrawRect(GetWidth()-200, 0, 200, 50, 0,0,1,1);
g_renderer->Flip();
}
void RabidEngine::Resize(int newWidth, int newHeight)
{
WindowedApp::Resize(newWidth, newHeight);
if(g_console)
g_console->SetScreenDimensions(GetWidth(), GetHeight());
if(g_renderer)
g_renderer->SetViewport(0,0, GetWidth(), GetHeight());
}
bool RabidEngine::OnKeyPress(int key)
{
if(WindowedApp::OnKeyPress(key))
return true;
if(key == '`')
{
g_console->Toggle();
g_console->Active() ? ReleaseMouse() : CaptureMouse();
return true;
}
if(g_console->Active())
{
return(g_console->OnKeyPress(key) != 0);
}
for(unsigned int i = 0; i < NUM_KEYS; i++)
{
if(bindings[i] == key)
keyState[i] = 1;
}
return false;
}
bool RabidEngine::OnKeyRelease(int key)
{
if(WindowedApp::OnKeyRelease(key))
return true;
if(g_console->Active())
{
return (g_console->OnKeyRelease(key) != 0);
}
for(unsigned int i = 0; i < NUM_KEYS; i++)
{
if(bindings[i] == key)
keyState[i] = 0;
}
return false;
}
bool RabidEngine::OnMouseMove(int dx, int dy)
{
if(!g_console->Active())
{
{
cl_camroty.SetFloat(cl_camroty.GetFloat() - dx);
cl_camrotx.SetFloat(cl_camrotx.GetFloat() - dy);
while(cl_camroty.GetFloat() > 360.0f)
cl_camroty.SetFloat(cl_camroty.GetFloat() - 360.0f);
while(cl_camroty.GetFloat() < 0.0f)
cl_camroty.SetFloat(cl_camroty.GetFloat() + 360.0f);
if(cl_camrotx.GetFloat() > 90)
cl_camrotx.SetFloat(90.0);
if(cl_camrotx.GetFloat() < -90)
cl_camrotx.SetFloat(-90.0);
}
return true;
}
return false;
}
| [
"chrisaolsen@gmail.com"
] | chrisaolsen@gmail.com |
d944d6171e9673ad139d1a345a20ca98a371f19e | 53cab9b585bcf81ba350e0148e268df077385fea | /r2017/src/Commands/WaitForPivotPositionCommand.h | d19df6c96941195032adcdb6f3134f6dc9fd8417 | [] | no_license | Frc2481/frc-2017 | 99653ec3d260b7533887640f02609f456e3bea0d | 8e37880f7c25d1a56e2c7d30e8b8a5b3a0ea3aad | refs/heads/master | 2021-03-19T08:58:57.360987 | 2017-07-21T23:45:25 | 2017-07-21T23:45:25 | 79,522,810 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 723 | h | #ifndef WaitForPivotPositionCommand_H
#define WaitForPivotPositionCommand_H
#include "../CommandBase.h"
class WaitForPivotPositionCommand : public CommandBase {
private:
double m_setpoint;
bool m_direction;
public:
WaitForPivotPositionCommand(double setpoint){
m_setpoint = setpoint;
}
void Initialize(){
if(m_gearIntake->GetPivotPos() < m_setpoint){
m_direction = false;
}
else if(m_gearIntake->GetPivotPos() > m_setpoint){
m_direction = true;
}
}
void Execute(){}
bool IsFinished(){
return (m_direction == true && m_gearIntake->GetPivotPos() < m_setpoint)
|| (m_direction == false && m_gearIntake->GetPivotPos() > m_setpoint);
}
void End(){}
};
#endif // WaitForPivotPositionCommand_H
| [
"Kyle@team2481.com"
] | Kyle@team2481.com |
3997bc74f07964faa0b804c6551babb9e51b20be | 0541c7c593a8701a0a229c8c61946380887989cc | /北京大学程序设计与算法专项课程_Coursera/BinarySearch-verA_AverageCostTest.cpp | 1154970723cf0ca83bca63fe65cf10ea20df3b65 | [] | no_license | Noctis-Xu/Coursera-PKU_Programming-Design-and-Algorithms_Specializations | 3bd0029a176e7e51888479f80a4d039ce4f339a8 | 7af9f34d1a304324457b054e95c1cb0d7470ffd7 | refs/heads/master | 2022-12-26T13:15:37.923374 | 2020-09-24T11:27:22 | 2020-09-24T11:27:22 | 246,984,534 | 0 | 0 | null | null | null | null | EUC-JP | C++ | false | false | 2,917 | cpp | //#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <iomanip>
#include <stdio.h>
#include <stdlib.h> //rand()
#include <time.h> //clock()
#include <Windows.h> //time(0), Sleep()
using namespace std;
int len; //A.length
int counter = 0; //count the while loop execution times in binary search
int randomSeed = time(0);
int nonRecursiveBinarySearch(int* A, const int key) {
int low = 0;
int high = len - 1;
int middle;
while (low <= high) {
counter++;
middle = (low + high + 1) / 2;
if (key < A[middle])
high = middle - 1;
else if (A[middle] < key) {
low = middle + 1;
}
else return middle;
}
return -1;
}
void randomArray(int* A, const int len, const int left, const int right) {
//the integer number is generated in [left,right], both inclusive
srand(randomSeed); //set the seed
randomSeed = randomSeed + 1000;
for (int i = 0; i < len; ++i) {
A[i] = left + rand() % (right - left + 1);
}
}
void printArray_0_9(int* A) { //print A[0..9]
for (int i = 0; i < 10; i++) {
cout << A[i] << ',';
}
cout << endl;
}
int main() {
//Sample
cout << endl;
int a1[] = { 3,4,4,4,4,5 };
len = sizeof(a1) / sizeof(a1[0]);
cout << "Sample array: ";
for (int i = 0; i < len; i++) {
cout << a1[i] << ',';
}
cout << endl;
int index;
counter = 0;
index = nonRecursiveBinarySearch(a1, 3);
cout << "The key=3 is at " << index;
cout << " counter: " << counter << endl;
counter = 0;
index = nonRecursiveBinarySearch(a1, 4);
cout << "The key=4 is at " << index;
cout << " counter: " << counter << endl;
counter = 0;
index = nonRecursiveBinarySearch(a1, 6);
cout << "The key=6 is at " << index;
cout << " counter: " << counter << endl;
cout << endl;
//Testing
int key;
int cases = 100000; //test how many cases
int counterSum; //the sum of all counters for total cases
double counterAvg; //the average cost
cout << "testing cases for a given n: " << cases << endl;
printf("input size n |%-15s|%-s\n", "average cost", "lg(n)");
cout << "!!!!!!!!!!!!!!!!!!!!!!!!!!" << endl;
for (int n = 4, lgn = 2; n < 100000000; n = n * 2, lgn++) {
len = n;
printf("%-13d|", len);
int* a = new int[len];
for (int i = 0; i < len; i++) {
a[i] = i;
}
counterSum = 0;
for (int i = 0; i < cases; i++) {
srand(randomSeed);
randomSeed = randomSeed + 1000;
key = rand(); //key is between [0,RAND_MAX], which is [0, 32767].
//cout << "key: " << key << endl; //for debugging
counter = 0;
nonRecursiveBinarySearch(a, key);
//cout <<"counter: "<< counter << endl; //for debugging
counterSum = counterSum + counter;
}
counterAvg = (counterSum + 0.0) / cases;
//printf("Average cost: %-10.4f, lg(n)=%d\n", counterAvg, lgn);
printf("%-15.5f|%d\n", counterAvg, lgn);
cout << "!!!!!!!!!!!!!!!!!!!!!!!!!!" << endl;
delete[]a;
}
}
| [
"xuboyang1j@126.com"
] | xuboyang1j@126.com |
158db3288116117caeb5609e3c012f95e1220c32 | e0cd22a3dbf1589cee37c33374607ed2ce66e95e | /cpp/opensourcesrcs/ace/ace/Dynamic_Service.cpp | eae6902e623ab69c4e2e222f81bb4dbe69b72f0c | [
"BSD-3-Clause"
] | permissive | CodeOpsTech/DesignPatternsCpp | 1335402e2c88a4b8715430210ec153af7bb733be | 2c67495ffdc65443fae98b2879f7b608e3562876 | refs/heads/master | 2021-01-11T19:19:48.498940 | 2017-07-19T02:52:56 | 2017-07-19T02:52:56 | 79,355,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 507 | cpp | // Dynamic_Service.cpp
// Dynamic_Service.cpp,v 4.15 2000/11/19 18:42:08 coryan Exp
#ifndef ACE_DYNAMIC_SERVICE_C
#define ACE_DYNAMIC_SERVICE_C
#include "ace/Dynamic_Service.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#if !defined (__ACE_INLINE__)
#include "ace/Dynamic_Service.i"
#endif /* __ACE_INLINE__ */
ACE_RCSID(ace, Dynamic_Service, "Dynamic_Service.cpp,v 4.15 2000/11/19 18:42:08 coryan Exp")
#endif /* ACE_DYNAMIC_SERVICE_C */
| [
"ganesh@codeops.tech"
] | ganesh@codeops.tech |
ec60aca0a79f7135ac6ada5ad701d2fcf1c3b072 | ac1166807cb3adb3126da7c3d41d334d7b41ca4b | /trinketloader/images.cpp | 31aa1ea0fb5eff3d974028bb6952c071b873c52c | [] | no_license | hollyhudson/pendant | 7c86692de135220c108e686dd9835f76fc4edb5b | 39d76ba3d5fbdb9c5f3eb8441dcc0de058784ff0 | refs/heads/master | 2021-05-03T13:08:04.652669 | 2016-06-14T15:51:13 | 2016-06-14T15:51:13 | 54,750,960 | 0 | 0 | null | 2016-03-25T22:25:02 | 2016-03-25T22:25:01 | null | UTF-8 | C++ | false | false | 9,148 | cpp | #include "optiLoader.h"
image_t PROGMEM image_328 = {
{"blankfull.hex"},
{"attiny85"},
0x930B, /* Signature bytes for attimny85 */
{0, 0xF1, 0xD5, 0x06}, // pre program fuses (prot/lock, low, high, ext)
{0, 0, 0, 0}, // post program fuses
{0x3F, 0xFF, 0xFF, 0x07}, // fuse mask
8192, // size of chip flash in bytes
64, // size in bytes of flash page
{
":100000007FCA7FCA7FCA7FCA7FCA7FCA7FCA7FCAA8\n"
":100010007FCAF89400C0000000000000000000004B\n"
":1000200000000000000000000000000000000000D0\n"
":1000300000000000000000000000000000000000C0\n"
":1015000033C05FC08BC05DC05CC05BC05AC059C0F7\n"
":1015100058C057C056C055C054C053C052C009022D\n"
":1015200012000101008032090400000000000000E8\n"
":1015300012011001FF00000881179F0C0501010234\n"
":10154000000110035400720069006E006B0065001A\n"
":1015500074001203410064006100660072007500AF\n"
":10156000690074000403090411241FBECFE5D2E012\n"
":10157000DEBFCDBF84B7877F84BF88E10FB6F89404\n"
":1015800081BD11BC0FBE91E080E80FB6F89486BD16\n"
":1015900096BD0FBE0AEA0F9310E0A0E6B0E0E4EDBE\n"
":1015A000FFE102C005900D92A236B107D9F721E004\n"
":1015B000A2E6B0E001C01D92A732B207E1F7E7D37F\n"
":1015C00007C59ECFA82FB92F80E090E041E050EAF8\n"
":1015D000609530E009C02D9182279795879510F08E\n"
":1015E00084279527305EC8F36F5FA8F30895EADF7C\n"
":1015F0008D939D930895A6E088279927AA9569F071\n"
":101600000197E1F3B399FCCFB39BFECF81E099271B\n"
":10161000A6B3019611F0A871D9F70895CF93CFB76B\n"
":10162000CF93C0915F02CA3A21F0CF91CFBFCF9143\n"
":1016300065CFCC27C395B39BE9F7B39B0BC0B39B96\n"
":1016400009C0B39B07C0B39B05C0B39B03C0B39B4A\n"
":1016500001C0D3C00F92DF93C0910A01DD27CF5E96\n"
":10166000DE4F012EB39B03C0DF910F90E6CF2F9387\n"
":101670000F931F934F932FEF4F6F06B303FB20F988\n"
":101680005F933F9350E03BE065C016B301265029BD\n"
":1016900053FDC89556B3012703FB25F92F7306B3F5\n"
":1016A000B1F05027102713FB26F906B22230F0F0D4\n"
":1016B00000C016B3012703FB27F90126502906B203\n"
":1016C0002430E8F54F77206816B30000F6CF502796\n"
":1016D0004F7D206206B2102F000000C006B3002626\n"
":1016E0005029102713FB26F906B2E2CF4F7B06B331\n"
":1016F000206400C0DACF01265029187106B269F1C2\n"
":101700004E7F2160012F16B328C0002650294D7F3F\n"
":1017100006B22260102F29C0012650294B7F06B245\n"
":101720002460012F2DC016B301265029477F286061\n"
":10173000000006B22EC04F7E06B3206130C04227A3\n"
":1017400006B3499300265029102706B24FEF13FB2A\n"
":1017500020F9297F16B379F2187159F10126502921\n"
":1017600006B2012703FB21F9237F06B371F200269D\n"
":1017700050293150D0F006B2102713FB22F9277EF2\n"
":1017800016B351F201265029012703FB06B223F9B3\n"
":101790002F7C49F2000006B3102713FB24F9002622\n"
":1017A000502906B22F7939F270CF10E21ABF002704\n"
":1017B00017C03B503195C31BD04010E21ABF0881BF\n"
":1017C000033CF9F00B34E9F0209108011981110F65\n"
":1017D0001213EDCF093651F10D3211F0013E39F7F8\n"
":1017E00000930F013F915F914F911F910F912F91A6\n"
":1017F000DF910F90CAB7C5FD1DCFCF91CFBFCF915D\n"
":10180000189520910F01222369F310910D011123E6\n"
":1018100021F5343022F130930D012093090110910C\n"
":101820000A013BE0311B30930A0119C000910D0100\n"
":1018300001309CF40AE53091610034FD11C0009341\n"
":101840006100CDEFD0E010C0052710E000C021C03E\n"
":10185000052710E0C89508BB14C03AE501C032ED79\n"
":10186000032EC0E0D0E032E017B31861C39A08B38A\n"
":1018700017BB58E120E84FEF20FF052708BB27954D\n"
":1018800017951C3F28F700004552B0F720FF0527A9\n"
":10189000279508BB17951C3FB8F629913A9561F733\n"
":1018A000077E10910E01110F08BBC250D04011F0FD\n"
":1018B0001093080110E21ABF086017B3177E402F7B\n"
":1018C000477E54E05A95F1F708BB17BB48BB8ACF57\n"
":1018D0002091F8003091F9002D3F3441B8F421E017\n"
":1018E0002093F500F894E091F800F091F9000C01D4\n"
":1018F00020935700E895112478948091F8009091F6\n"
":10190000F90002969093F9008093F8000895809171\n"
":10191000F500882309F43DC08091F8009091F9000A\n"
":101920008130954108F035C0F8948091F80090918D\n"
":10193000F900823C944118F1809166009091670013\n"
":101940008F579A409F70906CEEEFF4E121E00C010C\n"
":1019500020935700E895112480916E0090916F00BC\n"
":101960008C579A409F70906CECEFF4E10C0120933F\n"
":101970005700E8951124789481E080936400E09109\n"
":10198000F800F091F900329785E080935700E895D0\n"
":1019900078941092F5000895FF920F931F93CF93C0\n"
":1019A000DF9380910D01835087FD47C190910A011B\n"
":1019B000ACE0B0E0A91BB109AF5EBE4F41E040937F\n"
":1019C0006200909109019D3209F0F7C0883009F05A\n"
":1019D00032C183EC8093FD008AE580936100109210\n"
":1019E000FC005C91852F807609F477C01092F2009C\n"
":1019F0001092F4001092F30011963C91119731303F\n"
":101A000009F4CDC0363021F481E08093FB00B7C1EA\n"
":101A1000373009F042C04093FB0088EE90E090938D\n"
":101A20000C0180930B0113969C9113979093EA00FD\n"
":101A30001092EB0012968C911297803379F49111E9\n"
":101A40009CC11496EC911497F0E0EE0FFF1F81E219\n"
":101A500080935700E491E093EB008FC18C3A89F4B6\n"
":101A6000903809F08AC114968C911497811185C120\n"
":101A700015968C911597811180C181E08093E700C4\n"
":101A80007CC18C3409F079C115968C911597811120\n"
":101A900074C181E08093E60070C1383009F4B4CF9E\n"
":101AA00014968D919C9115979093F9008093F8006E\n"
":101AB00016962C9116972093F00087EF830F8430B1\n"
":101AC00008F05DC14093FA003093F1003A3009F418\n"
":101AD0004CC181E08093FB0048C112969C91129703\n"
":101AE0001092060111968C911197811106C01092E7\n"
":101AF000070186E091E022E04DC0853019F4909313\n"
":101B00000E013AC0863091F513968C91139781306F\n"
":101B100019F480E395E104C0823041F48EE195E14F\n"
":101B200090930C0180930B0122E11CC08330C9F417\n"
":101B3000911108C084E695E190930C0180930B010C\n"
":101B400024E010C0913019F482E595E1E9CF92309C\n"
":101B500041F482E495E190930C0180930B0120E124\n"
":101B600001C020E080E48093FC001AC0883079F046\n"
":101B7000893031F49093100186E091E020E00AC0B2\n"
":101B800021E08A3009F020E086E091E003C080E1A6\n"
":101B900091E021E090930C0180930B0101C021E0C2\n"
":101BA00017968C911797811105C016968C91821704\n"
":101BB00008F4282F209360003EC09091FC0097FF0E\n"
":101BC0003AC09091F000182F981708F4192F092F98\n"
":101BD000011B0093F0001092FB008091F1008A300D\n"
":101BE00029F0011128C01092600025C0FA2ECA2FDA\n"
":101BF000DB2F8C2F8F198117A0F78091F80090911F\n"
":101C0000F9008034910590F421E020936500FC01F7\n"
":101C1000EE0FFF1FEA59FF4F28813981318320835E\n"
":101C200002969093F9008093F80003C0888199810F\n"
":101C30004FDE2296DECF10920D018091610084FF6D\n"
":101C40007BC0809160008F3F09F476C0182F8930E7\n"
":101C500008F018E0811B809360008091FD0098E8F7\n"
":101C600089278093FD00112309F45AC08091FC005C\n"
":101C700087FF38C08091F000811708F4182F811B6E\n"
":101C80008093F0003091F100E091F800F091F900BC\n"
":101C900020E0AEEFB0E0211700F53B3009F4FFCFB4\n"
":101CA0003930D9F7E034F10560F4EF01CC0FDD1FD6\n"
":101CB000CA59DF4F888199818D939D932E5F32960B\n"
":101CC000EACFEC3F84E1F80710F08FEF01C0849178\n"
":101CD0008C9311962F5F3196DECFF093F900E0934D\n"
":101CE000F8001EC0E0910B01F0910C0186FF0BC0C3\n"
":101CF0008EEF90E0DC0124912D933196212F280F57\n"
":101D00002A13F9CF09C08EEF90E0DC0121912D93C9\n"
":101D1000212F280F2A13FACFF0930C01E0930B0127\n"
":101D2000612F8EEF90E063DC1C5F1C3019F08FEFA9\n"
":101D3000809360001093610084E196B3987131F450\n"
":101D40008150D9F710920E0110920801C1E0811163\n"
":101D5000C0E0809163008C17A1F0C11103C0F8941A\n"
":101D6000F1D07894C09363000CC057FF04C080E8A2\n"
":101D70008093FC001FCF2FEFFACF24E011CF20E09B\n"
":101D80000FCFDF91CF911F910F91FF900895C1B7B1\n"
":101D9000AC9A8BB780628BBFBB9A2FE132E18AE0AD\n"
":101DA000215030408040E1F700C00000BB9878949B\n"
":101DB000F3DD8091E700882321F182E090E09093A9\n"
":101DC000F7008093F60013C0CF018F739927892BFA\n"
":101DD00021F483E080935700E895DEDD8091F600E2\n"
":101DE0009091F70002969093F7008093F600E091AF\n"
":101DF000F600F091F700E11595E1F90728F310924C\n"
":101E0000E7008091E600882329F0C6DD80DD10928E\n"
":101E1000E600C2DD80916200882341F08091FB00E2\n"
":101E2000811104C08091FA008111C2CF8EEC90E044\n"
":101E30000197F1F78091F3009091F400019690934F\n"
":101E4000F4008093F3002091F200009711F42F5FCB\n"
":101E500000C02093F20030916200311105C0813240\n"
":101E60003EE4930708F059C03091FB00332321F082\n"
":101E70008131974208F051C080916200882309F4B3\n"
":101E800097CF8091FA00811193CF233008F490CF3F\n"
":101E900044C080916400811148C08CEF94E190931C\n"
":101EA000F9008093F80081E08093F50030DD3DC0BB\n"
":101EB000DF01AA0FBB1FAA59BF4F8D919C919F01B3\n"
":101EC0002B7F232B29F4FB5E859194918058954FAD\n"
":101ED000FFDCE091F800F091F900E034F10540F307\n"
":101EE00016DD10925F0217BA13BE1ABC03C081B789\n"
":101EF0008F5F81BF81B78C17D0F303C081B781504A\n"
":101F000081BF81B7C817D0F391E080E80FB6F8948D\n"
":101F100086BD96BD0FBEF3CA13C015BA1BBEF8949A\n"
":101F2000809165008111B5CFDCCFE0E0F0E083E087\n"
":101F300080935700E8951092F9001092F800C9CFED\n"
":101F400080E090E0DF92EF92FF920F931F93CF9388\n"
":101F5000DF9390E080E80FB6F89486BD96BD0FBE83\n"
":101F600008E010E0F12C80E8E82EDF2CDE0CD1BE7A\n"
":101F700042DBEC01C43389E0D8070CF4FD2CE69475\n"
":101F80000150110991F71F2D8FEF8F0D81BF21B7E0\n"
":101F900030E0812F90E001968217930784F02BDBCD\n"
":101FA0008453994097FF03C09195819591098C17AF\n"
":101FB0009D0714F4F1B6EC0181B78F5FE7CFF1BE56\n"
":101FC000DF91CF911F910F91FF90EF90DF900895D7\n"
":041FD000F894FFCFB3\n"
":021FD400FF5AB2\n"
//":0400000300001500E4\n"
":00000001FF\n"
}
};
/*
* Table of defined images
*/
image_t *images[] = {
&image_328,
};
uint8_t NUMIMAGES = sizeof(images)/sizeof(images[0]);
| [
"hudson@osresearch.net"
] | hudson@osresearch.net |
623d7a2ac6bdceb3a615c35240ebd83bebc3a51f | 71d04fc79610465fceb2ccd5fae59bae18029175 | /src/main/cpp/auton/primitives/DriveToTarget.cpp | b6c2a5d476fc7e9108ea9d27b9da40f2bbed9026 | [
"MIT"
] | permissive | Team302/Training2020 | dce59937f20e1951a859120315c807b5326bc085 | 144cb24e5674c857c45fe4544ab42f27e07371f9 | refs/heads/master | 2023-01-01T21:12:07.843761 | 2020-10-15T00:30:59 | 2020-10-15T00:30:59 | 302,164,231 | 0 | 0 | MIT | 2020-10-15T00:37:49 | 2020-10-07T21:26:41 | HTML | UTF-8 | C++ | false | false | 3,154 | cpp |
//====================================================================================================================================================
// Copyright 2020 Lake Orion Robotics FIRST Team 302
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
// OR OTHER DEALINGS IN THE SOFTWARE.
//====================================================================================================================================================
// C++ Includes
#include <memory>
#include <string>
// FRC includes
#include <frc/Timer.h>
// Team 302 includes
#include <auton/primitives/DoNothing.h>
#include <auton/PrimitiveParams.h>
#include <auton/primitives/IPrimitive.h>
#include <subsys/MechanismFactory.h>
#include <controllers/ControlModes.h>
#include <subsys/IMechanism.h>
#include <utils/Logger.h>
// Third Party Includes
using namespace std;
using namespace frc;
#include <auton/primitives/DriveDistance.h>
#include <auton/primitives/DriveToTarget.h>
#include <auton/PrimitiveParams.h>
#include <hw/factories/DistanceSensorFactory.h>
#include <hw/interfaces/IDragonDistanceSensor.h>
DriveToTarget::DriveToTarget() :
m_sensor( nullptr ),
m_underDistanceCounts( 0 ),
m_minTimeToRun( 0 )
{
auto factory = DistanceSensorFactory::GetFactory();
if ( factory != nullptr )
{
// m_sensor = factory->GetSensor( IDragonSensor::SENSOR_USAGE::FORWARD_SENSOR );
}
}
void DriveToTarget::Init
(
PrimitiveParams* params
)
{
if ( m_sensor != nullptr )
{
params->SetDistance( m_sensor->GetDistance() );
}
else
{
printf("heyyy that lidar is nullptr \n");
}
m_minTimeToRun = 0.3;
m_underDistanceCounts = 0;
DriveDistance::Init( params );
}
void DriveToTarget::Run()
{
DriveDistance::Run();
if (m_minTimeToRun <= 0) {
if ( m_sensor->GetDistance() <= MIN_CUBE_DISTANCE )
{
m_underDistanceCounts++;
}
}
m_minTimeToRun -= IPrimitive::LOOP_LENGTH;
}
bool DriveToTarget::IsDone()
{
bool done = m_underDistanceCounts >= UNDER_DISTANCE_COUNT_THRESHOLD;
return ( DriveDistance::IsDone() || done );
}
| [
"joe.witcpalek@gmail.com"
] | joe.witcpalek@gmail.com |
d4b8767872fdae98fbd8720e2c21b48adbb23bcb | f5b38977a922766bc542e24434f8d37ad6e35235 | /src/main/native/windows/memory_pressure_jni.cc | 4edd94e9c2ab7b5b216a7ebfe811bf4226036407 | [
"Apache-2.0"
] | permissive | kaymarie26/bazel | f6c02fd37d51c77b24b40aa6aa192d1df0cfddd7 | 363522a926ef7d94a64d5acfc887b729c75af383 | refs/heads/master | 2022-11-26T04:33:01.259239 | 2020-07-30T10:03:02 | 2020-07-30T10:04:17 | 283,742,932 | 2 | 0 | Apache-2.0 | 2020-07-30T10:36:14 | 2020-07-30T10:36:13 | null | UTF-8 | C++ | false | false | 1,495 | cc | // Copyright 2019 The Bazel 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.
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
#include "src/main/native/jni.h"
/*
* Class: Java_com_google_devtools_build_lib_platform_MemoryPressureCounter
* Method: warningCountJNI
* Signature: ()I
*/
extern "C" JNIEXPORT jint JNICALL
Java_com_google_devtools_build_lib_platform_MemoryPressureCounter_warningCountJNI(
JNIEnv *, jclass) {
// Currently not implemented.
return 0;
}
/*
* Class: Java_com_google_devtools_build_lib_platform_MemoryPressureCounter
* Method: criticalCountJNI
* Signature: ()I
*/
extern "C" JNIEXPORT jint JNICALL
Java_com_google_devtools_build_lib_platform_MemoryPressureCounter_criticalCountJNI(
JNIEnv *, jclass) {
// Currently not implemented.
// https://docs.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-creatememoryresourcenotification
return 0;
}
| [
"copybara-worker@google.com"
] | copybara-worker@google.com |
4eb625dfdc0097fcd4f819b19c8fd1e9fd4c24a9 | 2bafb3dd6a2499e86a9b838e5133ceefb22f044b | /questions/cses/dynamic programming/dice.cpp | 864bf74a19cdae7b22b68b7db3ce0c6379a9fc8a | [] | no_license | vibhav011/Competitive-Programming | 3589660382d1ea9edea99a98a365f9b4aed5830e | 136a8a9a79cbed9e52ba1549cc0c9a841465fd48 | refs/heads/master | 2022-07-06T18:58:48.985418 | 2022-06-25T18:50:42 | 2022-06-25T18:50:42 | 248,518,659 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 706 | cpp | #include <bits/stdc++.h>
#define ll long long int
#define pll pair<ll, ll>
#define pii pair<int, int>
#define ff first
#define ss second
#define mp make_pair
#define pb push_back
using namespace std;
ll MOD = 1e9+7;
ll pwr(ll x, ll y) {
ll res = 1;
x = x%MOD;
while (y > 0) {
if (y&1) res = (res*x)%MOD;
y = y>>1;
x = (x*x)%MOD;
}
return res;
}
inline ll addmod(ll a, ll b){
return ((a+b)%MOD);
}
inline ll mulmod(ll a, ll b){
return ((a*b)%MOD);
}
int main () {
int n; cin >> n;
int ans[n+1];
ans[0] = 1;
for (int i = 1; i <= n; i++) {
ans[i] = 0;
for (int j = 1; j <= 6; j++) {
if (i-j < 0) break;
ans[i] = addmod(ans[i], ans[i-j]);
}
}
cout << ans[n] << endl;
}
| [
"vibhav200601@gmail.com"
] | vibhav200601@gmail.com |
c378f26dadb956d0b8c421ca970e4e046c75ef92 | 36579e820f5c07cd1fe796abc777f23f32efeb10 | /src/chrome/browser/android/vr/vr_controller.cc | 28b7aaf999dedf7969b0ebf5c9dd81590fd6b552 | [
"BSD-3-Clause"
] | permissive | sokolovp/BraveMining | 089ea9940ee6e6cb8108b106198e66c62049d27b | 7040cdee80f6f7176bea0e92f8f3435abce3e0ae | refs/heads/master | 2020-03-20T00:52:22.001918 | 2018-06-12T11:33:31 | 2018-06-12T11:33:31 | 137,058,944 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 17,522 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/vr/vr_controller.h"
#include <algorithm>
#include <utility>
#include "base/logging.h"
#include "base/numerics/math_constants.h"
#include "base/numerics/ranges.h"
#include "third_party/WebKit/public/platform/WebGestureEvent.h"
#include "third_party/WebKit/public/platform/WebInputEvent.h"
#include "third_party/gvr-android-sdk/src/libraries/headers/vr/gvr/capi/include/gvr.h"
#include "third_party/gvr-android-sdk/src/libraries/headers/vr/gvr/capi/include/gvr_controller.h"
#include "ui/gfx/transform.h"
namespace vr {
namespace {
constexpr float kDisplacementScaleFactor = 300.0f;
// A slop represents a small rectangular region around the first touch point of
// a gesture.
// If the user does not move outside of the slop, no gesture is detected.
// Gestures start to be detected when the user moves outside of the slop.
// Vertical distance from the border to the center of slop.
constexpr float kSlopVertical = 0.185f;
// Horizontal distance from the border to the center of slop.
constexpr float kSlopHorizontal = 0.17f;
// Minimum distance needed in at least one direction to call two vectors
// not equal. Also, minimum time distance needed to call two timestamps
// not equal.
constexpr float kDelta = 1.0e-7f;
constexpr float kCutoffHz = 10.0f;
constexpr float kRC = 1.0f / (2.0f * base::kPiFloat * kCutoffHz);
constexpr float kNanoSecondsPerSecond = 1.0e9f;
constexpr int kMaxNumOfExtrapolations = 2;
// Distance from the center of the controller to start rendering the laser.
constexpr float kLaserStartDisplacement = 0.045;
constexpr float kFadeDistanceFromFace = 0.34f;
constexpr float kDeltaAlpha = 3.0f;
void ClampTouchpadPosition(gfx::Vector2dF* position) {
position->set_x(base::ClampToRange(position->x(), 0.0f, 1.0f));
position->set_y(base::ClampToRange(position->y(), 0.0f, 1.0f));
}
float DeltaTimeSeconds(int64_t last_timestamp_nanos) {
return (gvr::GvrApi::GetTimePointNow().monotonic_system_time_nanos -
last_timestamp_nanos) /
kNanoSecondsPerSecond;
}
gvr::ControllerButton PlatformToGvrButton(PlatformController::ButtonType type) {
switch (type) {
case PlatformController::kButtonHome:
return gvr::kControllerButtonHome;
case PlatformController::kButtonMenu:
return gvr::kControllerButtonApp;
case PlatformController::kButtonSelect:
return gvr::kControllerButtonClick;
default:
return gvr::kControllerButtonNone;
}
}
} // namespace
VrController::VrController(gvr_context* gvr_context) {
DVLOG(1) << __FUNCTION__ << "=" << this;
CHECK(gvr_context != nullptr) << "invalid gvr_context";
controller_api_ = std::make_unique<gvr::ControllerApi>();
controller_state_ = std::make_unique<gvr::ControllerState>();
gvr_api_ = gvr::GvrApi::WrapNonOwned(gvr_context);
int32_t options = gvr::ControllerApi::DefaultOptions();
options |= GVR_CONTROLLER_ENABLE_ARM_MODEL;
// Enable non-default options - WebVR needs gyro and linear acceleration, and
// since VrShell implements GvrGamepadDataProvider we need this always.
options |= GVR_CONTROLLER_ENABLE_GYRO;
options |= GVR_CONTROLLER_ENABLE_ACCEL;
CHECK(controller_api_->Init(options, gvr_context));
controller_api_->Resume();
handedness_ = gvr_api_->GetUserPrefs().GetControllerHandedness();
Reset();
last_timestamp_nanos_ =
gvr::GvrApi::GetTimePointNow().monotonic_system_time_nanos;
}
VrController::~VrController() {
DVLOG(1) << __FUNCTION__ << "=" << this;
}
void VrController::OnResume() {
if (controller_api_) {
controller_api_->Resume();
handedness_ = gvr_api_->GetUserPrefs().GetControllerHandedness();
}
}
void VrController::OnPause() {
if (controller_api_)
controller_api_->Pause();
}
device::GvrGamepadData VrController::GetGamepadData() {
device::GvrGamepadData pad = {};
pad.connected = IsConnected();
pad.timestamp = controller_state_->GetLastOrientationTimestamp();
if (pad.connected) {
pad.touch_pos.set_x(TouchPosX());
pad.touch_pos.set_y(TouchPosY());
pad.orientation = Orientation();
// Use orientation to rotate acceleration/gyro into seated space.
gfx::Transform pose_mat(Orientation());
const gvr::Vec3f& accel = controller_state_->GetAccel();
const gvr::Vec3f& gyro = controller_state_->GetGyro();
pad.accel = gfx::Vector3dF(accel.x, accel.y, accel.z);
pose_mat.TransformVector(&pad.accel);
pad.gyro = gfx::Vector3dF(gyro.x, gyro.y, gyro.z);
pose_mat.TransformVector(&pad.gyro);
pad.is_touching = controller_state_->IsTouching();
pad.controller_button_pressed =
controller_state_->GetButtonState(GVR_CONTROLLER_BUTTON_CLICK);
pad.right_handed = handedness_ == GVR_CONTROLLER_RIGHT_HANDED;
}
return pad;
}
bool VrController::IsTouching() {
return controller_state_->IsTouching();
}
float VrController::TouchPosX() {
return controller_state_->GetTouchPos().x;
}
float VrController::TouchPosY() {
return controller_state_->GetTouchPos().y;
}
bool VrController::IsButtonDown(PlatformController::ButtonType type) const {
return controller_state_->GetButtonState(PlatformToGvrButton(type));
}
base::TimeTicks VrController::GetLastOrientationTimestamp() const {
// controller_state_->GetLast*Timestamp() returns timestamps in a
// different timebase from base::TimeTicks::Now(), so we can't use the
// timestamps in any meaningful way in the rest of Chrome.
// TODO(mthiesse): Use controller_state_->GetLastOrientationTimestamp() when
// b/62818778 is resolved.
return base::TimeTicks::Now();
}
base::TimeTicks VrController::GetLastTouchTimestamp() const {
// TODO(mthiesse): Use controller_state_->GetLastTouchTimestamp() when
// b/62818778 is resolved.
return base::TimeTicks::Now();
}
base::TimeTicks VrController::GetLastButtonTimestamp() const {
// TODO(mthiesse): Use controller_state_->GetLastButtonTimestamp() when
// b/62818778 is resolved.
return base::TimeTicks::Now();
}
PlatformController::Handedness VrController::GetHandedness() const {
return handedness_ == GVR_CONTROLLER_RIGHT_HANDED
? PlatformController::kRightHanded
: PlatformController::kLeftHanded;
}
bool VrController::GetRecentered() const {
return controller_state_->GetRecentered();
}
gfx::Quaternion VrController::Orientation() const {
const gvr::Quatf& orientation = controller_state_->GetOrientation();
return gfx::Quaternion(orientation.qx, orientation.qy, orientation.qz,
orientation.qw);
}
gfx::Point3F VrController::Position() const {
gvr::Vec3f position = controller_state_->GetPosition();
return gfx::Point3F(position.x, position.y, position.z);
}
void VrController::GetTransform(gfx::Transform* out) const {
*out = gfx::Transform(Orientation());
gvr::Vec3f position = controller_state_->GetPosition();
out->matrix().postTranslate(position.x, position.y, position.z);
}
float VrController::GetOpacity() const {
return alpha_value_;
}
gfx::Point3F VrController::GetPointerStart() const {
gfx::Vector3dF pointer_direction{0.0f, -sin(kErgoAngleOffset),
-cos(kErgoAngleOffset)};
gfx::Transform rotation_mat(Orientation());
rotation_mat.TransformVector(&pointer_direction);
return Position() +
gfx::ScaleVector3d(pointer_direction, kLaserStartDisplacement);
}
bool VrController::TouchDownHappened() {
return controller_state_->GetTouchDown();
}
bool VrController::TouchUpHappened() {
return controller_state_->GetTouchUp();
}
bool VrController::ButtonDownHappened(gvr::ControllerButton button) {
return controller_state_->GetButtonDown(button);
}
bool VrController::ButtonUpHappened(gvr::ControllerButton button) {
return controller_state_->GetButtonUp(button);
}
bool VrController::ButtonState(gvr::ControllerButton button) const {
return controller_state_->GetButtonState(button);
}
bool VrController::IsConnected() {
return controller_state_->GetConnectionState() == gvr::kControllerConnected;
}
void VrController::UpdateState(const gvr::Mat4f& head_direction) {
controller_api_->ApplyArmModel(handedness_, gvr::kArmModelBehaviorFollowGaze,
head_direction);
const int32_t old_status = controller_state_->GetApiStatus();
const int32_t old_connection_state = controller_state_->GetConnectionState();
// Read current controller state.
controller_state_->Update(*controller_api_);
// Print new API status and connection state, if they changed.
if (controller_state_->GetApiStatus() != old_status ||
controller_state_->GetConnectionState() != old_connection_state) {
VLOG(1) << "Controller Connection status: "
<< gvr_controller_connection_state_to_string(
controller_state_->GetConnectionState());
}
UpdateAlpha();
}
void VrController::UpdateTouchInfo() {
CHECK(touch_info_ != nullptr) << "touch_info_ not initialized properly.";
const bool effectively_scrolling =
(IsTouching() && state_ == SCROLLING) || state_ == POST_SCROLL;
if (effectively_scrolling &&
(controller_state_->GetLastTouchTimestamp() == last_touch_timestamp_ ||
(cur_touch_point_->position == prev_touch_point_->position &&
extrapolated_touch_ < kMaxNumOfExtrapolations))) {
extrapolated_touch_++;
touch_position_changed_ = true;
// Fill the touch_info
float duration = DeltaTimeSeconds(last_timestamp_nanos_);
touch_info_->touch_point.position.set_x(cur_touch_point_->position.x() +
overall_velocity_.x() * duration);
touch_info_->touch_point.position.set_y(cur_touch_point_->position.y() +
overall_velocity_.y() * duration);
} else {
if (extrapolated_touch_ == kMaxNumOfExtrapolations) {
overall_velocity_ = {0, 0};
}
extrapolated_touch_ = 0;
}
last_touch_timestamp_ = controller_state_->GetLastTouchTimestamp();
last_timestamp_nanos_ =
gvr::GvrApi::GetTimePointNow().monotonic_system_time_nanos;
}
std::unique_ptr<GestureList> VrController::DetectGestures() {
auto gesture_list = std::make_unique<GestureList>();
auto gesture = std::make_unique<blink::WebGestureEvent>();
if (controller_state_->GetConnectionState() != gvr::kControllerConnected) {
gesture_list->push_back(std::move(gesture));
return gesture_list;
}
touch_position_changed_ = UpdateCurrentTouchpoint();
UpdateTouchInfo();
if (touch_position_changed_)
UpdateOverallVelocity();
UpdateGestureFromTouchInfo(gesture.get());
gesture->source_device = blink::kWebGestureDeviceTouchpad;
gesture_list->push_back(std::move(gesture));
if (gesture_list->back()->GetType() ==
blink::WebInputEvent::kGestureScrollEnd) {
Reset();
}
return gesture_list;
}
void VrController::UpdateGestureFromTouchInfo(blink::WebGestureEvent* gesture) {
gesture->SetTimeStampSeconds(
(GetLastTouchTimestamp() - base::TimeTicks()).InSecondsF());
switch (state_) {
// User has not put finger on touch pad.
case WAITING:
HandleWaitingState(gesture);
break;
// User has not started a gesture (by moving out of slop).
case TOUCHING:
HandleDetectingState(gesture);
break;
// User is scrolling on touchpad
case SCROLLING:
HandleScrollingState(gesture);
break;
// The user has finished scrolling, but we'll hallucinate a few points
// before really finishing.
case POST_SCROLL:
HandlePostScrollingState(gesture);
break;
default:
NOTREACHED();
break;
}
}
void VrController::UpdateGestureWithScrollDelta(
blink::WebGestureEvent* gesture) {
gesture->data.scroll_update.delta_x =
displacement_.x() * kDisplacementScaleFactor;
gesture->data.scroll_update.delta_y =
displacement_.y() * kDisplacementScaleFactor;
}
void VrController::HandleWaitingState(blink::WebGestureEvent* gesture) {
// User puts finger on touch pad (or when the touch down for current gesture
// is missed, initiate gesture from current touch point).
if (touch_info_->touch_down || touch_info_->is_touching) {
// update initial touchpoint
*init_touch_point_ = touch_info_->touch_point;
// update current touchpoint
*cur_touch_point_ = touch_info_->touch_point;
state_ = TOUCHING;
gesture->SetType(blink::WebInputEvent::kGestureFlingCancel);
gesture->data.fling_cancel.prevent_boosting = false;
}
}
void VrController::HandleDetectingState(blink::WebGestureEvent* gesture) {
// User lifts up finger from touch pad.
if (touch_info_->touch_up || !(touch_info_->is_touching)) {
Reset();
return;
}
// Touch position is changed, the touch point moves outside of slop,
// and the Controller's button is not down.
if (touch_position_changed_ && touch_info_->is_touching &&
!InSlop(touch_info_->touch_point.position) &&
!ButtonState(gvr::kControllerButtonClick)) {
state_ = SCROLLING;
gesture->SetType(blink::WebInputEvent::kGestureScrollBegin);
UpdateGestureParameters();
gesture->data.scroll_begin.delta_x_hint =
displacement_.x() * kDisplacementScaleFactor;
gesture->data.scroll_begin.delta_y_hint =
displacement_.y() * kDisplacementScaleFactor;
gesture->data.scroll_begin.delta_hint_units =
blink::WebGestureEvent::ScrollUnits::kPrecisePixels;
}
}
void VrController::HandlePostScrollingState(blink::WebGestureEvent* gesture) {
if (extrapolated_touch_ > kMaxNumOfExtrapolations ||
ButtonDownHappened(gvr::kControllerButtonClick)) {
gesture->SetType(blink::WebInputEvent::kGestureScrollEnd);
UpdateGestureParameters();
if (touch_info_->touch_down || touch_info_->is_touching) {
HandleWaitingState(gesture);
}
} else {
gesture->SetType(blink::WebInputEvent::kGestureScrollUpdate);
UpdateGestureParameters();
UpdateGestureWithScrollDelta(gesture);
}
}
void VrController::HandleScrollingState(blink::WebGestureEvent* gesture) {
if (touch_info_->touch_up || !(touch_info_->is_touching)) {
state_ = POST_SCROLL;
} else if (ButtonDownHappened(gvr::kControllerButtonClick)) {
// Gesture ends.
gesture->SetType(blink::WebInputEvent::kGestureScrollEnd);
UpdateGestureParameters();
} else if (touch_position_changed_) {
// User continues scrolling and there is a change in touch position.
gesture->SetType(blink::WebInputEvent::kGestureScrollUpdate);
UpdateGestureParameters();
UpdateGestureWithScrollDelta(gesture);
last_velocity_ = overall_velocity_;
}
}
bool VrController::InSlop(const gfx::Vector2dF touch_position) {
return (std::abs(touch_position.x() - init_touch_point_->position.x()) <
kSlopHorizontal) &&
(std::abs(touch_position.y() - init_touch_point_->position.y()) <
kSlopVertical);
}
void VrController::Reset() {
// Reset state.
state_ = WAITING;
// Reset the pointers.
prev_touch_point_.reset(new TouchPoint);
cur_touch_point_.reset(new TouchPoint);
init_touch_point_.reset(new TouchPoint);
touch_info_.reset(new TouchInfo);
overall_velocity_ = {0, 0};
last_velocity_ = {0, 0};
}
void VrController::UpdateGestureParameters() {
displacement_ =
touch_info_->touch_point.position - prev_touch_point_->position;
}
bool VrController::UpdateCurrentTouchpoint() {
touch_info_->touch_up = TouchUpHappened();
touch_info_->touch_down = TouchDownHappened();
touch_info_->is_touching = IsTouching();
touch_info_->touch_point.position.set_x(TouchPosX());
touch_info_->touch_point.position.set_y(TouchPosY());
ClampTouchpadPosition(&touch_info_->touch_point.position);
touch_info_->touch_point.timestamp =
gvr::GvrApi::GetTimePointNow().monotonic_system_time_nanos;
if (IsTouching() || TouchUpHappened()) {
// Update the touch point when the touch position has changed.
if (cur_touch_point_->position != touch_info_->touch_point.position) {
prev_touch_point_.swap(cur_touch_point_);
cur_touch_point_.reset(new TouchPoint);
cur_touch_point_->position = touch_info_->touch_point.position;
cur_touch_point_->timestamp = touch_info_->touch_point.timestamp;
return true;
}
}
return false;
}
void VrController::UpdateOverallVelocity() {
float duration =
(touch_info_->touch_point.timestamp - prev_touch_point_->timestamp) /
kNanoSecondsPerSecond;
// If the timestamp does not change, do not update velocity.
if (duration < kDelta)
return;
const gfx::Vector2dF& displacement =
touch_info_->touch_point.position - prev_touch_point_->position;
const gfx::Vector2dF& velocity = ScaleVector2d(displacement, (1 / duration));
float weight = duration / (kRC + duration);
overall_velocity_ = ScaleVector2d(overall_velocity_, (1 - weight)) +
ScaleVector2d(velocity, weight);
}
void VrController::UpdateAlpha() {
float distance_to_face = (Position() - gfx::Point3F()).Length();
float alpha_change = kDeltaAlpha * DeltaTimeSeconds(last_timestamp_nanos_);
alpha_value_ = base::ClampToRange(distance_to_face < kFadeDistanceFromFace
? alpha_value_ - alpha_change
: alpha_value_ + alpha_change,
0.0f, 1.0f);
}
} // namespace vr
| [
"sokolov.p@gmail.com"
] | sokolov.p@gmail.com |
f02b4993422cc6e860bd6c5872bd52d7016c9004 | 7a914f1d1e7a4b4d9757145cac8376bf1f7099d4 | /jsk_recognition/jsk_pcl_ros/include/jsk_pcl_ros/target_adaptive_tracking.h | 46255777daf71a0ec85259476b2e78a1acdda433 | [
"Apache-2.0"
] | permissive | usdot-fhwa-stol/autoware.ai | eed15471180f92900413b1a20213263b40acdb3f | 35c2be547269f2843de2ad907cec85abcf598577 | refs/heads/carma-develop | 2023-08-14T07:59:11.546253 | 2023-08-01T20:51:01 | 2023-08-01T20:51:01 | 186,024,768 | 2 | 12 | Apache-2.0 | 2023-08-01T20:51:02 | 2019-05-10T17:03:33 | C++ | UTF-8 | C++ | false | false | 10,553 | h |
#ifndef _TARGET_ADAPTIVE_TRACKING_H_
#define _TARGET_ADAPTIVE_TRACKING_H_
#include <string>
#include <ros/ros.h>
#include <ros/console.h>
#include <message_filters/subscriber.h>
#include <message_filters/synchronizer.h>
#include <message_filters/sync_policies/approximate_time.h>
#include <sensor_msgs/Image.h>
#include <sensor_msgs/image_encodings.h>
#include <sensor_msgs/PointCloud2.h>
#include <cv_bridge/cv_bridge.h>
#include <opencv2/core/core.hpp>
#include <opencv2/opencv.hpp>
#include <boost/thread/mutex.hpp>
#include <pcl_conversions/pcl_conversions.h>
#include <pcl/point_cloud.h>
#include <pcl/point_types.h>
#include <pcl/io/pcd_io.h>
#include <pcl/correspondence.h>
#include <pcl/recognition/cg/hough_3d.h>
#include <pcl/recognition/cg/geometric_consistency.h>
#include <pcl/kdtree/kdtree_flann.h>
#include <pcl/kdtree/impl/kdtree_flann.hpp>
#include <pcl/common/transforms.h>
#include <pcl/filters/extract_indices.h>
#include <pcl/segmentation/segment_differences.h>
#include <pcl/octree/octree.h>
#include <pcl/surface/concave_hull.h>
#include <pcl/segmentation/extract_clusters.h>
#include <pcl/filters/filter.h>
#include <pcl/common/centroid.h>
#include <pcl/features/fpfh_omp.h>
#include <pcl/features/vfh.h>
#include <pcl/features/gfpfh.h>
#include <pcl/features/pfh.h>
#include <pcl/features/cvfh.h>
#include <pcl/features/normal_3d_omp.h>
#include <pcl/tracking/tracking.h>
#include <pcl/common/common.h>
#include <pcl/registration/distances.h>
#include <pcl/filters/passthrough.h>
#include <pcl/segmentation/supervoxel_clustering.h>
#include <tf/transform_listener.h>
#include <tf/transform_broadcaster.h>
#include <tf_conversions/tf_eigen.h>
#include <geometry_msgs/Pose.h>
#include <geometry_msgs/PoseStamped.h>
#include <std_msgs/Header.h>
#include <dynamic_reconfigure/server.h>
#include <jsk_recognition_msgs/ClusterPointIndices.h>
#include <jsk_topic_tools/diagnostic_nodelet.h>
#include <jsk_pcl_ros/pcl_conversion_util.h>
#include <jsk_pcl_ros/TargetAdaptiveTrackingConfig.h>
namespace jsk_pcl_ros
{
class TargetAdaptiveTracking: public jsk_topic_tools::DiagnosticNodelet
{
typedef pcl::PointXYZRGB PointT;
struct AdjacentInfo
{
uint32_t voxel_index;
std::map<uint32_t, std::vector<uint32_t> > adjacent_voxel_indices;
};
struct ReferenceModel
{
pcl::PointCloud<PointT>::Ptr cluster_cloud;
cv::Mat cluster_vfh_hist;
cv::Mat cluster_color_hist;
AdjacentInfo cluster_neigbors;
pcl::PointCloud<pcl::Normal>::Ptr cluster_normals;
Eigen::Vector4f cluster_centroid;
Eigen::Vector3f centroid_distance;
cv::Mat neigbour_pfh;
int query_index;
bool flag;
uint32_t supervoxel_index;
std::vector<int> history_window;
int match_counter;
};
private:
typedef std::vector<ReferenceModel> Models;
typedef boost::shared_ptr<Models> ModelsPtr;
typedef pcl::tracking::ParticleXYZRPY PointXYZRPY;
typedef std::vector<PointXYZRPY> MotionHistory;
typedef message_filters::sync_policies::ApproximateTime<
sensor_msgs::PointCloud2,
geometry_msgs::PoseStamped> SyncPolicy;
message_filters::Subscriber<sensor_msgs::PointCloud2> sub_cloud_;
message_filters::Subscriber<geometry_msgs::PoseStamped> sub_pose_;
boost::shared_ptr<message_filters::Synchronizer<SyncPolicy> >sync_;
typedef message_filters::sync_policies::ApproximateTime<
sensor_msgs::PointCloud2,
sensor_msgs::PointCloud2,
geometry_msgs::PoseStamped> ObjectSyncPolicy;
message_filters::Subscriber<sensor_msgs::PointCloud2> sub_obj_cloud_;
message_filters::Subscriber<sensor_msgs::PointCloud2> sub_bkgd_cloud_;
message_filters::Subscriber<geometry_msgs::PoseStamped> sub_obj_pose_;
boost::shared_ptr<
message_filters::Synchronizer<ObjectSyncPolicy> >obj_sync_;
// ros::NodeHandle pnh_;
ros::Publisher pub_cloud_;
ros::Publisher pub_templ_;
ros::Publisher pub_sindices_;
ros::Publisher pub_scloud_;
ros::Publisher pub_normal_;
ros::Publisher pub_tdp_;
ros::Publisher pub_inliers_;
ros::Publisher pub_centroids_;
ros::Publisher pub_pose_;
ros::Publisher pub_prob_;
int init_counter_;
ModelsPtr object_reference_;
ModelsPtr background_reference_;
MotionHistory motion_history_;
int update_counter_;
Eigen::Vector4f current_pose_;
Eigen::Vector4f previous_pose_;
PointXYZRPY tracker_pose_;
tf::Transform previous_transform_;
pcl::PointCloud<PointT>::Ptr previous_template_;
float growth_rate_;
float previous_distance_;
bool use_tf_;
std::string parent_frame_id_;
std::string child_frame_id_;
double color_importance_;
double spatial_importance_;
double normal_importance_;
double voxel_resolution_;
double seed_resolution_;
bool use_transform_;
int min_cluster_size_;
float threshold_;
int bin_size_;
float eps_distance_;
int eps_min_samples_;
float vfh_scaling_;
float color_scaling_;
float structure_scaling_;
bool update_tracker_reference_;
bool update_filter_template_;
int history_window_size_;
boost::mutex mutex_;
typedef jsk_pcl_ros::TargetAdaptiveTrackingConfig Config;
virtual void configCallback(Config &, uint32_t);
boost::shared_ptr<dynamic_reconfigure::Server<Config> > srv_;
protected:
virtual void onInit();
virtual void subscribe();
virtual void unsubscribe();
public:
TargetAdaptiveTracking();
virtual void callback(
const sensor_msgs::PointCloud2::ConstPtr &,
const geometry_msgs::PoseStamped::ConstPtr &);
virtual void objInitCallback(
const sensor_msgs::PointCloud2::ConstPtr &,
const sensor_msgs::PointCloud2::ConstPtr &,
const geometry_msgs::PoseStamped::ConstPtr &);
virtual std::vector<pcl::PointIndices::Ptr>
clusterPointIndicesToPointIndices(
const jsk_recognition_msgs::ClusterPointIndicesConstPtr &);
void estimatedPFPose(
const geometry_msgs::PoseStamped::ConstPtr &, PointXYZRPY &);
void voxelizeAndProcessPointCloud(
const pcl::PointCloud<PointT>::Ptr cloud,
const std::map <uint32_t, pcl::Supervoxel<PointT>::Ptr> &,
const std::multimap<uint32_t, uint32_t> &,
std::vector<AdjacentInfo> &,
ModelsPtr &, bool = true, bool = true, bool = true, bool = false);
void targetDescriptiveSurfelsEstimationAndUpdate(
pcl::PointCloud<PointT>::Ptr, const Eigen::Affine3f &,
const TargetAdaptiveTracking::PointXYZRPY &,
const std_msgs::Header);
template<class T>
T targetCandidateToReferenceLikelihood(
const ReferenceModel &, const pcl::PointCloud<PointT>::Ptr,
const pcl::PointCloud<pcl::Normal>::Ptr, const Eigen::Vector4f &,
ReferenceModel * = NULL);
template<class T>
T localVoxelConvexityLikelihood(
Eigen::Vector4f, Eigen::Vector4f, Eigen::Vector4f, Eigen::Vector4f);
template<class T>
void estimatePointCloudNormals(
const pcl::PointCloud<PointT>::Ptr, pcl::PointCloud<pcl::Normal>::Ptr,
T = 0.05f, bool = false) const;
void computeCloudClusterRPYHistogram(
const pcl::PointCloud<PointT>::Ptr,
const pcl::PointCloud<pcl::Normal>::Ptr, cv::Mat &) const;
void computeColorHistogram(
const pcl::PointCloud<PointT>::Ptr, cv::Mat &, const int = 16,
const int = 16, bool = true) const;
void computePointFPFH(
const pcl::PointCloud<PointT>::Ptr,
pcl::PointCloud<pcl::Normal>::Ptr, cv::Mat &, bool = true) const;
void compute3DCentroids(
const pcl::PointCloud<PointT>::Ptr, Eigen::Vector4f &) const;
Eigen::Vector4f cloudMeanNormal(
const pcl::PointCloud<pcl::Normal>::Ptr, bool = true);
float computeCoherency(const float, const float);
pcl::PointXYZRGBNormal convertVector4fToPointXyzRgbNormal(
const Eigen::Vector4f &, const Eigen::Vector4f &, const cv::Scalar);
template<typename T>
void getRotationMatrixFromRPY(
const PointXYZRPY &, Eigen::Matrix<T, 3, 3> &);
void computeLocalPairwiseFeautures(
const std::map <uint32_t, pcl::Supervoxel<PointT>::Ptr> &,
const std::map<uint32_t, std::vector<uint32_t> >&,
cv::Mat &, const int = 3);
void processVoxelForReferenceModel(
const std::map <uint32_t, pcl::Supervoxel<PointT>::Ptr>,
const std::multimap<uint32_t, uint32_t>,
const uint32_t, TargetAdaptiveTracking::ReferenceModel *);
void transformModelPrimitives(
const ModelsPtr &, ModelsPtr, const Eigen::Affine3f &);
float templateCloudFilterLenght(
const pcl::PointCloud<PointT>::Ptr);
bool filterPointCloud(
pcl::PointCloud<PointT>::Ptr,
const Eigen::Vector4f, const ModelsPtr, const float);
void processInitCloud(
const pcl::PointCloud<PointT>::Ptr, ModelsPtr);
void backgroundReferenceLikelihood(
const ModelsPtr, const ModelsPtr, std::map<uint32_t, float>);
void filterCloudForBoundingBoxViz(
pcl::PointCloud<PointT>::Ptr, const ModelsPtr, const float = 0.6f);
void computeScatterMatrix(
const pcl::PointCloud<PointT>::Ptr,
const Eigen::Vector4f);
template<typename T, typename U, typename V>
cv::Scalar plotJetColour(T, U, V);
void supervoxelSegmentation(
const pcl::PointCloud<PointT>::Ptr,
std::map<uint32_t, pcl::Supervoxel<PointT>::Ptr > &,
std::multimap<uint32_t, uint32_t> &);
void supervoxelSegmentation(
const pcl::PointCloud<PointT>::Ptr,
std::map<uint32_t, pcl::Supervoxel<PointT>::Ptr > &,
std::multimap<uint32_t, uint32_t> &, const float);
void publishSupervoxel(
const std::map<uint32_t, pcl::Supervoxel<PointT>::Ptr>,
sensor_msgs::PointCloud2 &,
jsk_recognition_msgs::ClusterPointIndices &,
const std_msgs::Header &);
void targetDescriptiveSurfelsIndices(
const jsk_recognition_msgs::ClusterPointIndices &,
const std::vector<uint32_t> &,
jsk_recognition_msgs::ClusterPointIndices &);
};
}
#endif // _TARGET_ADAPTIVE_TRACKING_H_
| [
"Michael.McConnell-2@leidos.com"
] | Michael.McConnell-2@leidos.com |
1be4c2bbd8864da16515a6425c2b7dccf3d7d681 | 490923eb35803c92a1dc931e51e8c5eee635b628 | /KValgorithm/Herm(64,k)_KV/Herm(64,k)_KV - 2015.12.28.cpp | 2fdfae51d9a15e0cb4b641772055a0d63fed8e76 | [] | no_license | codywsy/Simulation-by-C | 60814a934bc191fcbe5adfda99216c02eef3ef20 | 6ac645452447357b3d63a3a80b2004b916918bd3 | refs/heads/master | 2021-01-21T14:08:33.144358 | 2017-10-21T14:24:28 | 2017-10-21T14:24:28 | 54,982,938 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 56,302 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "FiniteFieldBasisGF(16).h"
#include "FiniteFieldBasisCal.h"
//#define _NoReduction_
//#define _PolyCoeffNumUncom_
//#define _PolyCoeffNumFac_
#define myWay
//#define checkMulpMatrix
#define checkInter
#define checkFac
//#define printCoeffTable_file
//#define printDemodulation
//#define printfMonotable
//#define printfMulpMatrix
//global define
#define w 4
#define weiz 34
#define lm 1 //design length
#define able_correct 14
#define pointNum 2
#define interval 1
//*****need to be modify_first**************
//coefficientSearch()
#define max_m 3 //design large enough to cover, dependent on the value of lm
#define max_alpha 8 //alpha < max_m, designing alpha large enough to cover all the m_ij of Mulplicity Matrix
#define tableSize_a 160 //more than max_a, can be achieved by the hint of coefficientSearch()
#define tableSize_alpha 160 //more than max_alpha, can be achieved by the hint of coefficientSearch()
//zerobasie()
#define zb_alpha 160 //size+1, larger than tableSize_alpha, according to the maxDeg_x and maxDeg_y of PbMax, we can judge the max num Zb we need
#define zb_Ysize (zb_alpha/(w+1)+1) //this term must be changed when alpha greater than (w+1)
#define zb_Xsize (w+1)
//cal_max_a()
#define N 700
//*****************************************
/*
//tgorder()
#define tg_size 275 //more than k, tg_size represent the probably used pole basis num, (w+1)*w/2 + (w+1) * ( (w+interpoly_Ysize)-w+1 )
//mono_table()
#define weight_Zsize 4
#define weight_XYsize 275 //equals to the tg_size
#define mono_ordinSize 700 //choose the value with debugging
#define monoTable_Zsize (lm+1) //equals to the interpoly_Zsize
#define monoTable_Ysize 67 //large than interpoly_Ysize
#define monoTable_Xsize (w+1) //large than the interpoly_Xsize
#define monoTable_totalSize 350 //>index of term[max(deg_y)][w] in the pole basis + 1, nearly equals to tg_size
//polebasis()
*/
//*****need to be modify_second**************
//tgorder()
#define tg_size 815 //more than k, tg_size represent the probably used pole basis num, (w+1)*w/2 + (w+1) * ( (w+interpoly_Ysize)-w+1 )
//mono_table()
#define weight_Zsize 35
#define weight_XYsize 815 //equals to the tg_size
#define mono_ordinSize 855 //choose the value with debugging
#define monoTable_Zsize (lm+1) //equals to the interpoly_Zsize
#define monoTable_Ysize 166 //large than interpoly_Ysize, but we should avoid to the array crossing the border
#define monoTable_Xsize (w+1) //large than the interpoly_Xsize
#define monoTable_totalSize 815 //>index of term[max(deg_y)][w] in the pole basis + 1, nearly equals to tg_size
//*******************
//*****need to be modify_third**************
//interpolation()
#define init_polyNum (w*(lm+1)) //change with diff lm, the poly num of the init polyGroup
#define interpoly_Zsize (lm+1) //maxValue of z is lm=1, so the Zsize should add 1 more.
#define interpoly_Ysize 160 //maxdeg of y is (w-1) + w*(iterNum_max/(w+1)), so the Ysize should add 1 more.
#define interpoly_Xsize (w+1) //maxdeg of x is w, so the Xsize should add 1 more.
//factorization()
#define facpoly_Zsize (lm+1)// same as the interpoly_Zsize
#define facpoly_Ysize 160 // same as the interpoly_Ysize
#define facpoly_Xsize (w+1) // same as the interpoly_Xsize
//rcs()
#define rcspoly_Ysize 171 //degY+1, degY = interpoly_Ysize + max(j_1) + w*( (max(i_1)+w)/(w+1) )
#define rcspoly_Xsize 9 //degX+1, degX = max(i_1) + w
#define faiMax_Ysize 7 //change with diff w and k, the max degY of probably used polebasis
#define faiMax_Xsize 4 //change with diff w and k, the max degX of probably used polebasis
//expoly()-->expanded polynomial
#define expoly_Ysize (faiMax_Ysize+1)
#define expoly_Xsize (faiMax_Xsize+1)
//*******************
//******varible*********
//main()
unsigned long int seq_num; //number of input binary sequences
float SNR,N0;
double BER, FER;
float pi=3.141593; // pai
int iterNum=0; //iteration num
int bi_message[k*p], message[k]; //transmitted messge[k]
int codeword[n], bi_codeword[n*p]; //codewords
float tx_symbol[p*n][2], rx_symbol[p*n][2], sgm;
float RM[q][n]; //Reliability Matrix
int MM[q][n]; //Multiplicity Matrix
//polebasis()
//zerobasis
int zb[zb_alpha][zb_Ysize][zb_Xsize];
//coefficientSearch
int coeff_table[n][tableSize_alpha][tableSize_a]; //n points
//findpoint()
int point[n][2]; //rational points[2][w^3], [0]->x, [1]->y
//tgorder()
int tg_order[tg_size][2]; //[promise the tg order beyond (w, max(deg_y))][2]
//mono_table()
int mono_order[monoTable_Zsize][monoTable_Ysize][monoTable_Xsize]; //mono_order[z-deg+1][y-deg][x-deg+1], y-deg is greater than w-1+nw/(w+1)
int gmatrix[k][n]; //generator matrix[k][n]
int dec_message[k],dec_codeword[n],dec_bicodeword[n*p]; //decoding result
//MatrixConvert()
int s=0; //large enough to make the circle of MatrixConvert() keep moving
//interpolation
int bi_rxword[p*n], rxword[n]; //received wordss
int epcount1, epcount2, testCount1, testCount2, testCount1_com;
int Q_interpoly[init_polyNum][interpoly_Zsize][interpoly_Ysize][interpoly_Xsize]; //chosen interpolated polynomial [z-deg+1][max(deg_y)+1][w+1]
int uu; //factorisation step index
int l, listNum; //candidate output index
//factorization() and rcs()
int Q[k][facpoly_Zsize][facpoly_Ysize][facpoly_Xsize]; //sequtial deduction polynomial [number of fac steps=k][rs][y_size][w+1], y_size> maxdeg_y]+rs*(deg_¦µ(k-1))
int rootlist[k][lm+1]; //the list of roots [number of fac steps=k][expected number of roots in each solution, 5>rs]
int output[lm+1][k]; //the list of candidate message [expeced number of candidate message, >rs][length of message, k]
int expoly[2][expoly_Ysize][expoly_Xsize]; //expanded polynomial in [z+f_k-1-u*pb_k-1-u]^rs, expoly[rs][3>(max(deg_y) in encoding functions)*(rs-1)][3>(max(deg_x) in encoding functions)*(rs-1)]
//****debug**********
#ifdef checkFac
int Deg_iterNum, Deg_poly, codewordScore;
#endif
//some var about choosing incorrectly
unsigned long int seq_num_Now; //record the seq_num at the moment
unsigned long int DecSucc_SeqNum, ChosenWrong_SeqNum; //record the seq_num should be decoding success in genius mode
double CWR; //record the rate of chosen uncorrectly
//some var about computation complexity
unsigned long int addNum, mulNum, addNum_temp, mulNum_temp;
int flag_addNum=0, flag_mulNum=0;
//*******************
//**********function**********
void findpoints(void);
void mono_table(void);
void polyexp(int, int, int);
void polyexp1(int, int, int, int);
//void zerobasis(void);
void polebasis(void);
void tgorder(void);
//void coefficient(void);
//void test_vec_contruction(void);
void interpolation(void);
void factorisation(void);
void rcs(int);
void choose(void);
void generator(void);
void encoder(int message_temp[], int codeword_temp[]);
void modulation(void);
void channel(void);
void demodulation(void);
float PDF(int,int);
//*****************
void MatrixConvert(void);
int cal_max_a();
int gama(int);
void zerobasis(int, int LM_zb[][2]);
void coefficientSearch(int effTable[][tableSize_alpha][tableSize_a]);
//****************
int cal_delta(int interpoint[], int, int, int);
float comb(float, float);
void main()
{
int i, u, m, num, value;
float start, finish;
unsigned long int j,v;
unsigned int mask=1;
long int error,ferror;
double progress;
double channelError_count, successError_count;
double addNum_count, mulNum_count, totalNum_count;
FILE *fp;
if((fp=fopen("Herm(64,29)_KV_l=2.txt","a"))==NULL)
{
printf("Can't open the data.txt\n");
exit(0);
}
fclose(fp);
findpoints();
/* //***debug******
printf("findpoint function:\n");
for(i=0;i<n;i++)
printf("affine point[%d]=(%d,%d)\n",i,point[i][0],point[i][1]);
*/ //***************
tgorder();
/* //****debug*****
printf("\n\ntgorder of polebasis:\n");
for(i=0;i<n;i++)
printf("fai_%d=x^%d*y^%d\n",i,tg_order[i][0],tg_order[i][1]);
*/ //**************
mono_table();
generator();
//****debug******
/* printf("\n\ngenerator:\n");
for(i=0;i<n;i++)
printf("\tp%d",i);
for(u=0;u<k;u++)
{
printf("\nfai%d",u);
for(i=0;i<n;i++)
printf("\t%d",gmatrix[u][i]);
}
printf("\n\n");
*/ //***************
//**the part of coefficient search
//initilaization
for(i=0;i<n;i++)
for(u=0;u<tableSize_alpha;u++)
for(m=0;m<tableSize_a;m++)
{
coeff_table[i][u][m] = -1;
}
coefficientSearch(coeff_table);
//********************************
srand(1977);
//*****input data from basic_input.txt*********
FILE * fp_input = fopen("basic_input.txt","r");
if(fp_input!=NULL) {
fscanf(fp_input,"start SNR:%f\n", &start);
fscanf(fp_input,"finish SNR:%f\n", &finish);
fscanf(fp_input,"seq_num:%ld", &seq_num);
fclose(fp_input);
}else{
printf("\n\ncan't read the basic_input file\n\n");
}
printf("start SNR: %0.2f\n\n", start);
printf("finish SNR: %0.2f\n\n", finish);
printf("seq_num: %d\n", seq_num);
//*******************************
for(SNR=start; SNR<=finish; SNR=SNR+interval)
{
N0=(1.0/((float)k/(float)n))/pow(10.0, SNR/10.0);
sgm=sqrt(N0/2);
error=0;
ferror=0;
channelError_count=0.0;
successError_count=0.0;
v=0;
DecSucc_SeqNum=0;
ChosenWrong_SeqNum=0;
CWR=0.0;
addNum_count=0.0;
mulNum_count=0.0;
totalNum_count=0.0;
flag_addNum=1;
flag_mulNum=1;
for(j=1;j<=seq_num;j++)
{
addNum=0;
mulNum=0;
//*****debug*****
seq_num_Now=j;
//***************
//generate binary input sequence
for(u=0;u<k*p;u++) //k*4
bi_message[u]=rand()%2;
//convert to decimal input sequence
for(i=0;i<k;i++)
{
num=1;
message[i]=0;
for(u=0;u<p;u++)
{
message[i]=message[i]+(bi_message[p*i+u]*num);
num=num*2;
}
}
//****debug*****
// message[0]=0; message[1]=0; message[2]=0; message[3]=0;
//**************
encoder(message,codeword);
//convert to binary
for(u=0;u<n*p;u++) //n*4
bi_codeword[u]=0;
for(u=0;u<n;u++) //n
{
value=codeword[u];
mask=1;
for(m=0;m<p;m++)
{
if((value & mask)>0)
bi_codeword[p*u+m]=1;
else
bi_codeword[p*u+m]=0;
mask=mask<<1;
}
}
//modulation
modulation();
//channel
channel();
//demodulation
demodulation();
//MatrixConvert
iterNum = 0;
MatrixConvert();
//LIST DECODER
//test vector construction
// test_vec_contruction();
//interpolation
interpolation();
//factorisation
factorisation();
//choose
choose();
//bit error rate calculation
int temp=error;
for(u=0;u<n*p;u++) //n*4
{
if(dec_bicodeword[u]!=bi_codeword[u])
error++;
}
//frame error rate calculation
if( error>temp )
ferror++;
else if(error==temp) //decoding success
{
//calculate the aver error of decoding success situation
v++;
// successError_count = successError_count + (epcount1-successError_count)/(double)(v);
}
//channelError_count = channelError_count + (epcount1-channelError_count)/(double)(j);
addNum_count = addNum_count + (addNum-addNum_count)/(double)(j);
mulNum_count = mulNum_count + (mulNum-mulNum_count)/(double)(j);
totalNum_count = addNum_count + mulNum_count;
progress=(double)(j*100)/(double)seq_num;
BER=(double)(error)/(double)(n*p*j);
FER=(double)(ferror)/(double)(j);
CWR=(double)(ChosenWrong_SeqNum)/(double)(DecSucc_SeqNum);
printf("Progress=%0.1f, SNR=%2.2f, Bit Errors=%2.1d, BER=%E, Frame Errors=%2.1d, FER=%E, addNum=%0.2f, mulNum=%0.2f, total_num=%0.2f, Choice Errors=%2.1d, CWR=%E\r", progress, SNR, error, BER, ferror, FER, addNum_count, mulNum_count, totalNum_count, ChosenWrong_SeqNum, CWR);
if(ferror>309)
break;
}
if(ferror>309)
{
BER=(double)error/(double)(n*p*j);
FER=(double)(ferror)/(double)(j);
}
else
{
BER=(double)error/(double)(n*p*seq_num);
FER=(double)(ferror)/(double)(seq_num);
}
printf("Progress=%0.1f, SNR=%2.2f, Bit Errors=%2.1d, BER=%E, Frame Errors=%2.1d, FER=%E, addNum=%0.2f, mulNum=%0.2f, total_num=%0.2f, Choice Errors=%2.1d, CWR=%E\n", progress, SNR, error, BER, ferror, FER, addNum_count, mulNum_count, totalNum_count, ChosenWrong_SeqNum, CWR);
fp=fopen("Herm(64,29)_KV_l=2.txt","a");
fprintf(fp,"Progress=%0.1f, SNR=%2.2f, Bit Errors=%2.1d, BER=%E, Frame Errors=%2.1d, FER=%E, addNum=%0.2f, mulNum=%0.2f, total_num=%0.2f, Choice Errors=%2.1d, CWR=%E\n", progress, SNR, error, BER, ferror, FER, addNum_count, mulNum_count, totalNum_count, ChosenWrong_SeqNum, CWR);
fclose(fp);
flag_addNum=0;
flag_mulNum=0;
}
}
void modulation(void)
{
int i;
//BPSK
for(i=0;i<n*p;i++)
{
tx_symbol[i][0]=-2*bi_codeword[i]+1;
tx_symbol[i][1]=0;
}
}
void channel(void)
{
int i, j;
float u, r, g;
//add noise
for(i=0;i<n*p;i++)
{
for(j=0;j<2;j++) //Inphase + Quadrature
{
u=(float)rand()/(float)RAND_MAX;
if(u==1.0)
u=0.999999;
r=sgm*sqrt(2.0*log(1.0/(1.0-u)));
u=(float)rand()/(float)RAND_MAX;
if(u==1.0)
u=0.999999;
g=(float)r*cos(2*pi*u);
rx_symbol[i][j]=tx_symbol[i][j]+g;
}
}
}
void demodulation(void)
{
int i,j,u,v;
float sum,proba[pointNum];
float Pr[p][2];
//initializ
for(u=0;u<q;u++)
for(v=0;v<n;v++)
RM[u][v]=0;
//cal PDF
for(i=0;i<n;i++)
{
for(j=0;j<p;j++)
{
sum=0;
for(u=0;u<pointNum;u++)
{
proba[u]=PDF(i*p+j,u);
sum+=proba[u];
}
Pr[j][0]=proba[0]/sum; //proba-->00 0
Pr[j][1]=proba[1]/sum; //proba-->01 1
}
j=0;
// for(int z=0;z<pointNum;z++)
// for(u=0;u<pointNum;u++)
for(v=0;v<pointNum;v++)
for(int x=0;x<pointNum;x++)
for(int y=0;y<pointNum;y++)
for(int h=0;h<pointNum;h++)
{
RM[j][i]=(Pr[0][h]*Pr[1][y]*Pr[2][x]*Pr[3][v]);
j++;
}
}
#ifdef printDemodulation
//*****debug**********
printf("\n\ncodeword");
for(v=0;v<n;v++)
printf("\t%d",codeword[v]);
/* printf("\n\nrxword\t");
for(v=0;v<n;v++)
printf("\t%d",rxword[v]);
printf("\n\n");
for(v=0;v<n*p/4;v++)
printf("\t(%f,%f,%f,%f)",rx_symbol[v*2+0][0],rx_symbol[v*2+0][1],rx_symbol[v*2+1][0],rx_symbol[v*2+1][0]);
*/
printf("\n\n");
for(u=0;u<q;u++)
{
printf("\n");
printf("\t%d",root[u]);
for(v=0;v<n;v++)
printf("\t%f",RM[u][v]);
}
printf("\n\n");
//*******************
#endif
}
float PDF(int i,int u)
{
float temp1,temp2,temp3;
float constell_point[2][2]={ {1,0},{-1,0} }; // S1{1,0}-->0,S2{-1,0}-->1
temp3= 1.0/(pi*N0);
temp1= pow( (rx_symbol[i][0]-constell_point[u][0]) ,2) + pow( (rx_symbol[i][1]-constell_point[u][1]) ,2);
temp2= temp3*exp(-temp1/N0); // 0.5 is the normalization coefficient
return temp2;
}
void MatrixConvert( )
{
int i, j, u, v, index_i, index_j, lM, flag_iterNum;
unsigned long int degree_iterNum, iterNum_temp;
float RM_temp[q][n], tempRM, max_temp;
int MulpMatrix[q][n], tempMM;
//initialization
for(i=0;i<n;i++)
for(j=0;j<q;j++)
{
RM_temp[j][i] = RM[j][i];
MulpMatrix[j][i] = 0;
MM[j][i] = 0;
}
s = 3000; //important part, must be check
lM = 0;
//start
while( s>0 && lM<=lm )
{
max_temp = 0.0;
index_j = -1;
index_i = -1;
//find the maximal entry factor in RM
for(i=0;i<n;i++)
for(j=0;j<q;j++)
{
if( max_temp < RM_temp[j][i] )
{
// sumNum1 += 4;
max_temp = RM_temp[j][i];
index_j = j;
index_i = i;
#ifdef myWay
// sumNum2 += 5;
//because the sum of a cloumn of RM is equal to 1. so
//for a cloumn, if there is a factor larger than 0.5, that must
//be the largest one of the cloumn
if( max_temp > 0.5 )
{
// sumNum2 += 4;
max_temp = RM_temp[j][i];
index_j = j;
index_i = i;
break; //jump out the cloumn circle
}
#endif
}
}
//update
RM_temp[index_j][index_i] = RM_temp[index_j][index_i] / (MulpMatrix[index_j][index_i]+2);
MulpMatrix[index_j][index_i] += 1;
s -= 1;
#ifdef checkMulpMatrix
fp=fopen("TestResult.txt","a");
fprintf(fp, "\nindex_j = %d\tindex_i = %d\ts=%d", index_j, index_i, s);
fprintf(fp, "\n\nMM:\n");
for(j=0;j<q;j++)
{
for(i=0;i<n;i++)
{
fprintf(fp, "%d\t",MulpMatrix[j][i]);
}
fprintf(fp,"\n");
}
fprintf(fp,"\n");
// printf("\n\nsumNum1=%d\tsumNum2=%d", sumNum1, sumNum2);
fclose(fp);
#endif
//cal CM
iterNum_temp = 0;
for(j=0;j<q;j++)
for(i=0;i<n;i++)
{
iterNum_temp +=( MulpMatrix[j][i] * (MulpMatrix[j][i]+1));
}
iterNum_temp = iterNum_temp/2;
//cal the deg(1,wz) corresponding to CM
degree_iterNum = 0;
flag_iterNum = 1; //make the search part more effciency
for(u=0; u<(lm+1) && flag_iterNum ;u++)
for(j=0; j<monoTable_Ysize && flag_iterNum ;j++)
for(i=0; i<monoTable_Xsize && flag_iterNum ;i++)
if ( mono_order[u][j][i] == iterNum_temp ) //here refering to the size of mono_table
{
degree_iterNum = i*w + j*(w+1) + u*weiz;
flag_iterNum = 0;
}
//cal lM
lM = degree_iterNum/weiz;
}
//transform to the MM[q][n]
for(j=0;j<q;j++)
for(i=0;i<n;i++)
{
MM[j][i] = MulpMatrix[j][i];
}
iterNum = iterNum_temp; //Cm
#ifdef checkFac
//cal degree_iterNum
Deg_iterNum = 10000;
Deg_iterNum = degree_iterNum;
//cal codewordScore
codewordScore = 0;
for(i=0;i<n;i++)
{
for(j=0;j<q;j++)
if( codeword[i]==root[j] )
{
codewordScore += MulpMatrix[j][i];
}
}
#endif
#ifdef printfMulpMatrix
int Max_m_intable=0;
printf("\n\nMM:\n");
for(j=0;j<q;j++)
{
for(i=0;i<n;i++)
{
printf("%d\t",MulpMatrix[j][i]);
if(Max_m_intable<MulpMatrix[j][i])
{
Max_m_intable=MulpMatrix[j][i];
}
}
printf("\n");
}
printf("\n the max_m in table is %d\n", Max_m_intable);
// printf("\n\nsumNum1=%d\tsumNum2=%d", sumNum1, sumNum2);
#endif
}
void interpolation()
{
int i, j, u, v, z, temp, temp1, temp2, lod_temp, index_temp, degree_temp[init_polyNum];
int lod[init_polyNum], delta[init_polyNum], J[init_polyNum], act[init_polyNum];
int lod_min, j_min, mulpi, alpha, beta, xi;
int interpoint[q*n][3], interpoint_num; //(pointIndex,ri,mij),the maximum num of interpoints is n*q
int f[interpoly_Zsize][interpoly_Ysize][interpoly_Xsize]; //temp for poly[j_min]
int g1[interpoly_Zsize][interpoly_Ysize][interpoly_Xsize+1], g2[interpoly_Zsize][interpoly_Ysize][interpoly_Xsize];
#ifdef checkInter
int f_2[interpoly_Zsize][interpoly_Ysize][interpoly_Xsize];
for(i=0;i<interpoly_Zsize;i++)
for(u=0;u<interpoly_Ysize;u++)
for(v=0;v<interpoly_Xsize;v++)
f_2[i][u][v]=0;
#endif
//initiliazation
for(j=0;j<q*n;j++)
for(i=0;i<3;i++)
{
interpoint[j][i] = 0;
}
for(j=0;j<init_polyNum;j++)
for(i=0;i<interpoly_Zsize;i++)
for(u=0;u<interpoly_Ysize;u++)
for(v=0;v<interpoly_Xsize;v++)
{
Q_interpoly[j][i][u][v] = 0;
}
//start to interpolation
//set the interpoint
interpoint_num = 0;
for(i=0;i<n;i++)
for(j=0;j<q;j++)
if( MM[j][i] != 0 )
{
interpoint[interpoint_num][0] = i; //pointIndex
interpoint[interpoint_num][1] = root[j]; //ri
interpoint[interpoint_num][2] = MM[j][i]; //mij
interpoint_num ++;
}
/* //****debug***********
interpoint_num = 0;
for(i=0;i<n;i++)
for(j=0;j<q;j++)
if( MM[j][i] != 0 && i!=1 )
{
interpoint[interpoint_num][0] = i; //pointIndex
interpoint[interpoint_num][1] = root[j]; //ri
interpoint[interpoint_num][2] = MM[j][i]; //mij
interpoint_num ++;
}
interpoint[interpoint_num][0] = 1;
interpoint[interpoint_num][1] = root[3];
interpoint[interpoint_num][2] = 2;
interpoint_num++;
*/ //************************
//set Group initialization
for(i=0;i<(lm+1);i++) //rs
for(j=0;j<w;j++) //w
Q_interpoly[w*i+j][i][j][0]=1; //j+w*i
//interpolation main progress
for(i=0;i<interpoint_num;i++)
{
mulpi = interpoint[i][2]; //multiplicity
for(alpha=0;alpha<mulpi;alpha++)
for(beta=0;beta<(mulpi-alpha);beta++)
{
//Calculate each polynomial's leading order
for(j=0;j<init_polyNum;j++)
{
lod_temp=0;
lod[j]=0;
for(u=0;u<interpoly_Zsize;u++)
for(v=0;v<interpoly_Ysize;v++)
for(z=0;z<interpoly_Xsize;z++)
if( Q_interpoly[j][u][v][z] != 0 )
{
lod_temp = mono_order[u][v][z];
if(lod_temp>lod[j])
{
lod[j]=lod_temp;
}
}
}
#ifndef _NoReduction_
//Initialise the eliminator array act[num_poly]
for(j=0;j<init_polyNum;j++) //num_poly
{
if(lod[j]<=iterNum) //C=n when multiplicity = 1
act[j]=1;
else
act[j]=0;
}
#else
for(j=0;j<init_polyNum;j++) //num_poly
act[j] = 1;
#endif
//Calculate the hasse derivative mapping of each polynomials
j_min = -1;
for(j=0;j<init_polyNum;j++) //wrt each polynomial
{
J[j] = 0;
delta[j] = 0;
if( act[j]==1 ) //for polynomials with leading order less of equal to C
{
delta[j] = cal_delta(interpoint[i],j,alpha,beta); //(interpoint, polyIndex, alpha, beta)
}
if(delta[j]!=0)
{
J[j]=1; //record those polynomial with a nonzero hasse derivative mapping
lod_min = lod[j];
j_min = j;
}
}
//Identify the minimal polynomial with a nonzero Hasse derivative evaluation
for(j=0;j<init_polyNum;j++) //num_polys
{
if(J[j]==1 && lod[j]<lod_min)
{
lod_min=lod[j];
j_min=j;
}
}
//printf("\nj_min=%d\n", j_min);
//update poly group
if(j_min!=-1)
{
//f = Q_interpoly[j_min]
for(u=0;u<interpoly_Zsize;u++) //rs
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
{
f[u][v][z] = Q_interpoly[j_min][u][v][z];
}
//Modify nonzero polynomials
for(j=0;j<init_polyNum;j++)
{
if(J[j]==1)
{
if( j!=j_min )
{
//delta*g_k+delta_k*f
for(u=0;u<interpoly_Zsize;u++) //rs
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
{
if( Q_interpoly[j][u][v][z]!=0 )
{
temp1 = mul(delta[j_min],Q_interpoly[j][u][v][z]);
}
else
temp1 = 0;
if( f[u][v][z]!=0 )
{
temp2 = mul(delta[j],f[u][v][z]);
}
else
temp2 = 0;
if( temp1!=0 || temp2!=0 )
{
Q_interpoly[j][u][v][z]=add(temp1,temp2);
}
else
Q_interpoly[j][u][v][z] = 0;
}
}
else if(j==j_min)
{
for(u=0;u<interpoly_Zsize;u++) //rs
{
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
{
for(z=0;z<(interpoly_Xsize+1);z++) //w+2
{
g1[u][v][z]=0;
}
for(z=0;z<interpoly_Xsize;z++) //w+1
{
g2[u][v][z]=0;
}
}
}
//g1=x*f
for(u=0;u<interpoly_Zsize;u++) //rs
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
if(Q_interpoly[j][u][v][z]!=0)
{
g1[u][v][z+1]=Q_interpoly[j][u][v][z];
}
//convert x^w+1=y^w+y, difference with diff code
for(u=0;u<interpoly_Zsize;u++) //rs
{
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
{
if(g1[u][v][w+1]!=0) //refering to two finitefield add
{
g1[u][v+1][0]=add(g1[u][v+1][0],g1[u][v][w+1]);
g1[u][v+w][0]=add(g1[u][v+w][0],g1[u][v][w+1]);
g1[u][v][w+1]=0;
}
}
}
//g2=xi*f
index_temp = interpoint[i][0];
xi = point[index_temp][0];
for(u=0;u<interpoly_Zsize;u++) //rs
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
if(Q_interpoly[j][u][v][z]!=0)
{
g2[u][v][z] = mul( xi,Q_interpoly[j][u][v][z] );
}
//Q_interpoly=g1+g2
for(u=0;u<interpoly_Zsize;u++) //rs
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
if( g1[u][v][z]!=0 || g2[u][v][z]!=0 )
{
Q_interpoly[j][u][v][z] = add( g1[u][v][z],g2[u][v][z] );
}
else
Q_interpoly[j][u][v][z] = 0;
}
}
}
}
#ifdef checkInter
/* int delta_temp;
//detecting if the polynomial is changed by overflow
if(J[3]==0 && i!=0) //no need to modify
{
//printf("\nQ[0]_interpoint[%d]\talpha=%d,beta=%d\n", i, alpha, beta);
for(int u_index=0;u_index<interpoly_Zsize;u_index++) //rs
for(int v_index=0;v_index<interpoly_Ysize;v_index++) //max(deg_y)+1
for(int z_index=0;z_index<interpoly_Xsize;z_index++) //w+1
if(Q_interpoly[3][u_index][v_index][z_index] != f_2[u_index][v_index][z_index])
{
printf("\nQ[0][%d][%d][%d]=%d\tf_2[%d][%d][%d]=%d", u_index, v_index, z_index, Q_interpoly[3][u_index][v_index][z_index], u_index, v_index, z_index, f_2[u_index][v_index][z_index]);
printf("\tinterpoint_[%d]\talpha=%d\tbeta=%d\t", i, alpha, beta);
}
//printf("\n\n");
}
for(int u_index=0;u_index<interpoly_Zsize;u_index++) //rs
for(int v_index=0;v_index<interpoly_Ysize;v_index++) //max(deg_y)+1
for(int z_index=0;z_index<interpoly_Xsize;z_index++) //w+1
{
f_2[u_index][v_index][z_index] = Q_interpoly[3][u_index][v_index][z_index];
}
for(int t_index=0; t_index<=i; t_index++)
{
for(int polyIndex_temp=0; polyIndex_temp<init_polyNum ; polyIndex_temp++)
if( lod[polyIndex_temp] <= iterNum )
{
delta_temp = -1;
delta_temp = cal_delta(interpoint[t_index],polyIndex_temp,0,0);
if(delta_temp!=0)
{
printf("\n\n[mode1]Q_interpoly_%d in point[%d](alpha=%d,beta=%d) has interpolation error\n", polyIndex_temp, t_index, alpha, beta);
}
delta_temp = 0;
int z_value, y_value, x_value;
z_value = interpoint[t_index][1];;
y_value = point[ interpoint[t_index][0] ][1];
x_value = point[ interpoint[t_index][0] ][0];
for(int u_index=0;u_index<interpoly_Zsize;u_index++) //z
for(int v_index=0;v_index<interpoly_Ysize;v_index++) //y
for(int z_index=0;z_index<interpoly_Xsize;z_index++) //x
if(Q_interpoly[polyIndex_temp][u_index][v_index][z_index]!=0)
{
temp = power(z_value,u_index);
temp = mul(temp, power(y_value,v_index));
temp = mul(temp, power(x_value,z_index));
temp = mul(temp, Q_interpoly[polyIndex_temp][u_index][v_index][z_index]);
delta_temp = add( delta_temp,temp );
}
if(delta_temp!=0)
{
printf("\n[mode2]Q_interpoly_%d in point[%d](alpha=%d,beta=%d) has interpolation error\n", polyIndex_temp, t_index, alpha, beta);
}
}
}
*/ #endif
}
//#ifdef checkInter
// int delta_temp;
//
// index_temp=0;
// j = index_temp;
// for(u=0;u<=i;u++)
// {
// mulpi = interpoint[u][2]; //multiplicity
// for(alpha=0;alpha<mulpi;alpha++)
// for(beta=0;beta<(mulpi-alpha);beta++)
// {
// delta_temp = -1;
// delta_temp = cal_delta(interpoint[u],j,alpha,beta);
//
// if(delta_temp!=0)
// {
// printf("\n\nQ_interpoly in point[%d](alpha=%d,beta=%d) has interpolation error\n\n", u, alpha, beta);
// }
// }
// }
//#endif
}
//find out the poly for factorization
//calculate the degree of poly
for(j=0;j<init_polyNum;j++)
{
temp = -1;
degree_temp[j] = 0;
for(u=0;u<interpoly_Zsize;u++) //rs
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
if( Q_interpoly[j][u][v][z]!=0 )
if( temp < mono_order[u][v][z] )
{
temp = mono_order[u][v][z];
}
degree_temp[j] = temp ;
}
//choose the min dgree
index_temp = 0;
temp = degree_temp[0];
for(j=1;j<init_polyNum;j++)
if( (temp>degree_temp[j]) && (degree_temp[j]<=iterNum) )
{
temp = degree_temp[j];
index_temp = j;
}
//initialization poly for factorization
for(j=0;j<k;j++) //number of fac steps=k
for(u=0;u<facpoly_Zsize;u++) //rs
for(v=0;v<facpoly_Ysize;v++) //y_size
for(z=0;z<facpoly_Xsize;z++) //w+1
Q[j][u][v][z]=0;
for(u=0;u<interpoly_Zsize;u++) //rs
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
Q[0][u][v][z]=Q_interpoly[index_temp][u][v][z];
#ifdef checkFac
Deg_poly = degree_temp[index_temp];
#endif
#ifdef checkInter
int delta_temp;
flag_addNum=0;
flag_mulNum=0;
j = index_temp;
for(i=0;i<interpoint_num;i++)
{
mulpi = interpoint[i][2]; //multiplicity
for(alpha=0;alpha<mulpi;alpha++)
for(beta=0;beta<(mulpi-alpha);beta++)
{
delta_temp = -1;
delta_temp = cal_delta(interpoint[i],j,alpha,beta);
if(delta_temp!=0)
{
printf("\n\nQ_interpoly in point[%d](alpha=%d,beta=%d) has interpolation error\n\n", i, alpha, beta);
}
}
}
flag_addNum=1;
flag_mulNum=1;
#endif
}
void factorisation() //output: output[lm+1][k], listNum
{
int i, j, u, v, z;
//initialization
for(u=0;u<k;u++) //number of fac steps=k
for(v=0;v<lm+1;v++) //5>rs=expected number of roots
rootlist[u][v]=-1;
for(u=0;u<lm+1;u++) //5>(rs-1)=expected number of output lists
for(v=0;v<k;v++) //k
output[u][v]=-1;
//Initialisation of factorisation
uu=0; //recursive deduction index
l=0; //candidate output index
#ifdef _PolyCoeffNumFac_
int NumTemp0=0, NumTemp1=0;
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
if(Q_interpoly[i][0][v][z]!=0)
NumTemp0++;
for(v=0;v<interpoly_Ysize;v++) //max(deg_y)+1
for(z=0;z<interpoly_Xsize;z++) //w+1
if(Q_interpoly[i][1][v][z]!=0)
NumTemp1++;
NumTemp0 += 0;
NumTemp1 += 0;
//*********************
#endif
//recursive coefficient search
rcs(uu);
listNum = l;
}
void rcs(int uu)
{
int i, j, u, v, m, z, t, r, i_1, j_1, i_2, j_2, a, b, leadMono, leadMono_temp, alpha, act, temp;
int lc[lm+1], q_temp[lm+1][rcspoly_Ysize][rcspoly_Xsize]; //q_temp[z-deg+1][y_size>max(deg_y)+1+(rs-1)*(max(deg_y) in encoding functions)][14>w+(rs-1)*w], lc[rs]--leading coefficient polynomial
int d1,d2,index_flag;
int rcspoly_Ysize_1,rcspoly_Xsize_1; //the q_temp size of the first step of factorization
//array size initialization
rcspoly_Ysize_1= faiMax_Ysize + interpoly_Ysize + 1;
rcspoly_Xsize_1= faiMax_Xsize + w + 1;
leadMono=0; leadMono_temp=0; //leading monomial index
act=0; //judge value for recursive search of each f_k-1-u
//find pb_k-1-uu
j_1 = tg_order[k-1-uu][1];
i_1 = tg_order[k-1-uu][0];
//initialise q_temp
for(i=0;i<lm+1;i++) //rs
for(j=0;j<rcspoly_Ysize;j++)
for(u=0;u<rcspoly_Xsize;u++)
q_temp[i][j][u]=0;
//Calculate q_temp[pb_k-1-u]=q[u][pb_k-1-u]
for(i=0;i<facpoly_Zsize;i++) //rs
{
for(j=0;j<facpoly_Ysize;j++) //y_size=max(deg_y) in encoding function*(rs-1), and 31>=max(deg_y)+1
{
for(u=0;u<facpoly_Xsize;u++) //
{
q_temp[i][j+i*j_1][u+i*i_1] = Q[uu][i][j][u]; //this time, q_temp size is [rs+1][maxY(j_1)+maxY(Q)][maxX(i_1)+maxX(Q)]
}
}
}
//convert x^w+1=y^w+y, difference with diff code
d1=0;
d2=0;
//*****debug*****
if( rcspoly_Xsize_1 < (w+1) )
printf("\n\nrcs() has error\n\n");
//**************
//*****************************
//for(i=0;i<lm+1;i++) //rs
// {
// for(j=0;j<rcspoly_Ysize_1;j++) //y_size=degY+1
// {
// for(u=(w+1);u<rcspoly_Xsize_1;u++) //w+1, 5>w*(rs-1)+w
// {
// if(q_temp[i][j][u]!=0) //refering to two finitefield
// {
// d1=u/(w+1); //d1 in (8,4) is less than 2;
// d2=u%(w+1); //u%(w+1)
// //should add a funciton to calculate the poly (z+hixiyi)^j
// q_temp[i][j+d1*w][d2]= add(q_temp[i][j+d1*w][d2], q_temp[i][j][u]); //this time, q_temp size is [rs+1][1+last_maxY(q_temp)+w*(last_maxX(q_temp)/(w+1))][w+1]
// q_temp[i][j+d1][d2] = add(q_temp[i][j+d1][d2], q_temp[i][j][u]);
// q_temp[i][j][u] = 0;
// }
// //q_temp[i][j][u] = 0;
//
// }
// }
// }
//******************
//x^(w+1)=y^w+y
for(i=0;i<lm+1;i++) //rs
{
index_flag = rcspoly_Xsize_1-1; //the max deg_x for q_temp
while( index_flag>w )
{
temp = index_flag-(w+1); // deg_x - (w+1)
for(j=0;j<rcspoly_Ysize_1;j++)
if( q_temp[i][j][index_flag]!=0 )
{
q_temp[i][j+1][temp] = add( q_temp[i][j+1][temp],q_temp[i][j][index_flag] ); //y^1
q_temp[i][j+w][temp] = add( q_temp[i][j+w][temp],q_temp[i][j][index_flag] ); //y^(w+1)
q_temp[i][j][index_flag] = 0;
}
index_flag = index_flag-1;
}
}
//*****************
leadMono=-1;
for(i=0;i<lm+1;i++) //rs
{
for(j=0;j<rcspoly_Ysize;j++) //y_size
{
for(u=0;u<w+1;u++) //w+1
{
if(q_temp[i][j][u]!=0)
{
if( leadMono <= mono_order[0][j][u] )
{
leadMono = mono_order[0][j][u];
j_2=j; //record the leading monomial's y degree
i_2=u; //record the leading monomial's x degree
}
}
}
}
}
//find the leading coefficient polynomial lc[rs]
for(i=0;i<lm+1;i++) //rs
{
lc[i]=0;
for(j=0;j<rcspoly_Ysize;j++) //y_size
{
for(u=0;u<w+1;u++) //w+1
{
if(q_temp[i][j][u]!=0 && j==j_2 && u==i_2)
lc[i]=q_temp[i][j][u];
}
}
}
u = 0; //root index
act = 0;
//find the roots of leading coefficient polynomial lc[rs]
for(i=0;i<q;i++) //number of elements in GF(4)
{
b=0;
for(j=0;j<lm+1;j++) //rs
{
a=mul(lc[j], power(root[i], j));
b=add(a, b);
}
if(b==0)
{
act=1;
rootlist[uu][u]=root[i];
u++;
#ifndef _NoReduction_
break; //jump out of the loop
#endif
}
}
//For each distinct root of rootlist[u]
if(act==1) //act==1 means there is at least one root in rootlist[u];
{
for(i=0;i<lm+1;i++) //2>rs
{
if(rootlist[uu][i]!=-1)
{
alpha=rootlist[uu][i];
output[l][k-1-uu]=alpha; //output[l][k-1-uu]
//printf("current outputs");
if(uu==(k-1)) //when u=k-1, output candidate polynomial
{
for(j=0;j<k;j++) //k
{
if(output[l][j]==-1) //this judgement is used to make sure the outputList is ever not be used
output[l][j]=output[l-1][j];
}
l++; //locate next candidate output
}
else //update the q[uu+1]
{
//Initialise q_temp
for(j=0;j<lm+1;j++) //rs
for(u=0;u<rcspoly_Ysize;u++) //y_size
for(m=0;m<rcspoly_Xsize;m++) //3>w*(rs-1)+w
q_temp[j][u][m]=0;
//q_temp=q[uu][z+f_k-1-u*pb_k-1-u]
for(j=0;j<lm+1;j++) //rs
{
//calculate (z+f_k-1-u*pb_k-1-u)^j
if(j==0)
{
for(u=0;u<lm+1;u++)
for(m=0;m<expoly_Ysize;m++)
for(z=0;z<expoly_Xsize;z++)
expoly[u][m][z]=0;
expoly[0][0][0]=1;
}
else if(j>0)
polyexp1(alpha, i_1, j_1, j);
//calculate q[uu][z+f_k-1-u*pb_k-1-u]
for(u=0;u<lm+1;u++) //rs
{
for(m=0;m<expoly_Ysize;m++) //18>(max(deg_y) in encoding functions)*(rs-1)
{
for(z=0;z<expoly_Xsize;z++) //10>(max(deg_x) in encoding functions)*(rs-1)
{
if(expoly[u][m][z]!=0)
{
for(v=0;v<facpoly_Ysize;v++) //y_size
{
for(t=0;t<facpoly_Xsize;t++) //w+1
{
if(Q[uu][j][v][t]!=0)
{
temp = mul(expoly[u][m][z], Q[uu][j][v][t]);
q_temp[u][v+m][t+z] = add( q_temp[u][v+m][t+z],temp );
}
// caution overflow problem of q_temp
// here q_temp, ysize=exploy_Ysize+facpoly_Ysize-2+1=9, xsize=expoly_Xsize+facpoly_Xsize-2+1=6
}
}
}
}
}
}
}
//convert x^w+1=y^w+y, difference with diff code
d1=0;
d2=0;
for(j=0;j<lm+1;j++) //rs
{
for(u=0;u<rcspoly_Ysize;u++) //10 y_size
{
for(m=w+1;m<rcspoly_Xsize;m++) //w+1, 14>w*(rs-1)+w
{
if(q_temp[j][u][m]!=0) //refering to two finitefield add
{
d1=m/(w+1); //d1 in (8,4) is less than 2;
d2=m%(w+1); //u%(w+1)
q_temp[j][u+d1*w][d2] = add(q_temp[j][u+d1*w][d2], q_temp[j][u][m]);
q_temp[j][u+d1][d2] = add(q_temp[j][u+d1][d2], q_temp[j][u][m]);
q_temp[j][u][m] = 0;
}
}
}
}
r=uu+1;
//q[u+1]=q_temp
for(j=0;j<lm+1;j++) //rs
for(u=0;u<facpoly_Ysize;u++) //y_size
for(m=0;m<facpoly_Xsize;m++) //w+1
Q[r][j][u][m]=q_temp[j][u][m];
//printf("q[u+1]");
//next coefficient searching
rcs(r);
}
}
}
}
}
void polyexp1(int c, int i, int j, int deg_z)
{
int u, m, z; //p1[rs+1][18>(max(deg_y) in encoding functions)*(rs-1)][10>(max(deg_x) in encoding functions)*(rs-1)], p2[rs][26=18+max(deg_y) in encoding functions][14=10+max(deg_x) in encoding functions]
//Initialisations
for(u=0;u<lm+1;u++) //rs
for(m=0;m<expoly_Ysize;m++) //18>(max(deg_y) in encoding functions)*(rs-1)
for(z=0;z<expoly_Xsize;z++) //10>(max(deg_x) in encoding functions)*(rs-1)
expoly[u][m][z]=0;
if(deg_z==0)
expoly[0][0][0]=1;
else if(deg_z>0) //because deg_z is equal to or less than 1, so deg_z>0 <-> deg_z==1
{
expoly[1][0][0]=1;
expoly[0][j][i]=c;
}
}
void choose()
{
int i, j, u, v, value, flag, min_index;
unsigned int mask=1;
float proba[lm+1], proba_temp, temp;
int codeword_temp[n];
//normal mode
//Initialise hamming distance counter
for(u=0;u<lm+1;u++)
proba[u]=-1.0;
proba_temp=0.0;
flag = 0;
min_index = -1;
if( listNum!=0 )
{
for(j=0;j<listNum;j++)
{
//reencoding
encoder(output[j],codeword_temp);
//calculate the posteriori probablity
temp = 1.0;
for(u=0;u<n;u++)
{
for(v=0;v<q;v++)
if(codeword_temp[u]==root[v])
temp = temp*RM[v][u];
}
if( proba_temp <= temp )
{
proba_temp = temp;
min_index = j;
for(v=0;v<n;v++)
dec_codeword[v] = codeword_temp[v];
flag = 1; //exist at less one valid solution
}
}
}
//output the decoding result
if(flag==0) //listNum == 0
{
//search dec_codeword[n] from RM
for(v=0;v<n;v++)
{
temp = 0.0;
for(u=0;u<q;u++)
if( temp<RM[u][v] )
{
temp = RM[u][v];
dec_codeword[v] = root[u];
}
}
//nonbinary --> binary
for(u=0;u<n;u++)
{
value=dec_codeword[u];
mask=1;
for(v=0;v<p;v++)
{
if((value & mask)>0)
dec_bicodeword[p*u+v]=1;
else
dec_bicodeword[p*u+v]=0;
mask=mask<<1;
}
}
}
else if(flag==1) //exist a valid solution
{
//nonbinary --> binary
for(u=0;u<n;u++)
{
value=dec_codeword[u];
mask=1;
for(v=0;v<p;v++)
{
if((value & mask)>0)
dec_bicodeword[p*u+v]=1;
else
dec_bicodeword[p*u+v]=0;
mask=mask<<1;
}
}
}
#ifdef checkFac
if( flag==0 && (codewordScore>Deg_iterNum) ) //Sm(c) > delta(Cm)
printf("\n\n this frame fac error by iterNum!!\\n\n");
if( flag==0 && (codewordScore>Deg_poly) ) //Sm(C) > deg(Q)
printf("\n\n this frame fac error by poly!!\\n\n");
#endif
#ifdef _Complexity_
//****debug********
printf("\n\nCcho=%d\tmul=%d\tadd=%d\n\n", (addNum+mulNum-addNum_temp-mulNum_temp), (mulNum-mulNum_temp), (addNum-addNum_temp));
addNum_temp = addNum;
mulNum_temp = mulNum;
//*****************
#endif
//******************
flag = 0;
int count_temp;
for(j=0;j<lm+1;j++)
{
count_temp=0;
for(u=0;u<k;u++)
if(output[j][u]==message[u])
{
count_temp++;
}
if(count_temp==k)
{
flag=1;
DecSucc_SeqNum++;
if( min_index>=0 ) //min_index==-1 represent there is no valid solution
if( min_index!=j )
{
ChosenWrong_SeqNum++;
}
break;
}
}
//*********************
//Check Herm(64, 39)'s working perperty
epcount2=0;
for(u=0;u<n;u++)
if(codeword[u]!=dec_codeword[u])
epcount2++;
//printf("\nepcount2=%d\n", epcount2);
//******debug*******
//caculate the testCount2
testCount2=0;
for(j=0;j<k;j++)
if( message[j]!=output[0][j] )
testCount2++;
/* //****debug**********
if( epcount1<=able_correct && epcount2!=0) //this seq_num has chosen the wrong one
{
printf("\n\nDecoding is error\n\n");
}
*/
}
void findpoints()
{
int i, j, u, a1, a2, a3, x, y;
//Initialisation
for(j=0;j<n;j++) //w^3
for(i=0;i<2;i++)
point[j][i]=0;
//find points over x^3-y^2-y=0
u=0;
for(i=0;i<q;i++) //number of elements in GF(q)
{
x=root[i];
for(j=0;j<q;j++) //number of elements in GF(q)
{
y=root[j];
a1=power(x, w+1);
a2=power(y, w);
a3=y;
if(add(a3, add(a1, a2))==0)
{
point[u][0]=x;
point[u][1]=y;
u++;
}
}
}
}
void tgorder()
{
int i, j, u, index_temp;
for(j=0;j<tg_size;j++)
for(i=0;i<2;i++)
tg_order[j][i]=-1;
//judge the index's scale of coresponding tgsize
/*pesudo code (index = deg_x + deg_y)
if( 0 <= index < w ) tgsize = (index+2) * (index+1) / 2
else if( w <= index ) tgsize = w*(w+1)/2 + (w+1)*(index-w+1)
*/
index_temp = 164; //according to the last formualtion to calculate out
j=0;
for(i=0;i<=index_temp;i++)
for(u=i;u>=0;u--)
if(u<=w)
{
tg_order[j][0]=u; // 0<deg_x<=w
tg_order[j][1]=i-u; // 0<deg_y
j++;
}
}
void generator()
{
int i, j;
for(i=0;i<k;i++)
for(j=0;j<n;j++) //n
gmatrix[i][j]=0;
//generator matrix
for(i=0;i<k;i++) //k
for(j=0;j<n;j++) //n
gmatrix[i][j]=mul(power(point[j][0], tg_order[i][0]), power(point[j][1], tg_order[i][1]));
}
void mono_table()
{
int i, j, u, v, z, weight[weight_Zsize][weight_XYsize], mono_order_1[monoTable_Zsize][weight_XYsize]; //26=(100/weight(z))+1, 100=pre-set size, promise term[rs-1][max(deg_y)][w] is convered, so does every term in array[rs][max(deg_y)+1][w+1]
//Initialisation
for(i=0;i<monoTable_Zsize;i++) //(230/weight(z))+1
{
for(j=0;j<weight_XYsize;j++) //pre-set size, promise term[rs-1][max(deg_y)][w] is convered, so does every term in array[rs][y_size][w+1].
{
weight[i][j]=-1;
mono_order_1[i][j]=-1;
}
}
for(i=0;i<monoTable_Zsize;i++) // rs
for(j=0;j<monoTable_Ysize;j++) //max(deg_y)+1
for(u=0;u<monoTable_Xsize;u++) //w+1
mono_order[i][j][u]=-1;
//weight of monomial over function x^(w+1)-y^w-y=0
for(i=0;i<weight_Zsize;i++)
{
if(i==0)
for(j=0;j<weight_XYsize;j++)
weight[i][j]=tg_order[j][0]*w + tg_order[j][1]*(w+1);
else if(i>0)
for(j=0;j<weight_XYsize;j++)
weight[i][j]= weiz*i + weight[0][j];
}
//construction 2-dimensional mono table
z=0;
for(v=0;v<mono_ordinSize;v++) //for each possible weight until weight(term[rs-1][max(deg_y)+1][w-1])+1, note term[rs-1][max(deg_y)+1][w-1] is the term next to term[rs-1][max(deg_y)][w]
{
for(i=0;i<monoTable_Zsize;i++) //230/weight(z)
{
for(j=0;j<weight_XYsize;j++) //230, >the index of the largest term with deg(z)=0, and weight=weight(term[rs-1][max(deg_y)+1][w-1])
{
if(weight[i][j]==v)
{
mono_order_1[i][j]=z;
z++;
break;
}
}
}
}
// 2-dimensional table transform into 3-dimensional table
for(u=0;u<monoTable_Zsize;u++) //rs
for(z=0;z<monoTable_totalSize;z++) //>index of term[max(deg_y)][w] in the pole basis + 1
mono_order[u][tg_order[z][1]][tg_order[z][0]]=mono_order_1[u][z];
#ifdef printfMonotable
//**********debug********
for(j=0;j<weight_XYsize;j++)
printf("\t%d",j);
printf("\n");
for(i=0;i<weight_Zsize;i++)
{
printf("\n");
for(j=0;j<weight_XYsize;j++)
printf("\t%d",weight[i][j]);
}
printf("\n\n");
for(i=0;i<monoTable_Zsize;i++)
{
printf("\n");
for(j=0;j<weight_XYsize;j++)
printf("\t%d",mono_order_1[i][j]);
}
printf("\nMonmial basis is:\n");
for(i=0;i<monoTable_Zsize;i++)
{
printf("\n\nZ=%d",i);
for(z=0;z<monoTable_Xsize;z++)
printf("\t%d ",z);
printf("\n\n");
for(j=0;j<monoTable_Ysize;j++)
{
printf("\n%d",j);
for(z=0;z<monoTable_Xsize;z++)
printf("\t%d ", mono_order[i][j][z]);
}
}
//******************
#endif
}
void encoder(int message_temp[], int codeword_temp[])
{
int i, j;
for(i=0;i<n;i++) //n
{
codeword_temp[i]=0;
for(j=0;j<k;j++) //k
codeword_temp[i]=add(codeword_temp[i], mul(message_temp[j], gmatrix[j][i]));
}
}
int cal_delta(int point_temp[3], int j,int alpha,int beta) //(interpoint, poly_index, alpha, beta)
{
int i, u, v, indexSum, flag;
int a, b, ri;
int delta, delta_temp1, delta_temp2;
ri = point_temp[1];
delta = 0;
for(i=0;i<interpoly_Zsize;i++)
for(u=0;u<interpoly_Ysize;u++)
for(v=0;v<interpoly_Xsize;v++)
if( (Q_interpoly[j][i][u][v]!=0) && (i>=beta) ) //i is the degree of z
{
//search a from x^v and y^u
indexSum = u+v;
if( indexSum < w )
{
a = (indexSum+1) * indexSum / 2 + u + 1;
a = a - 1; //index should begin from 0
}
else if( indexSum >= w)
{
a = (w+1)*w/2 + (indexSum-w)*(w+1) + (w-v+1);
a = a - 1;
}
//debug: if a will exceed the size of coeff_table
if( a>tableSize_a )
printf("\n\n cal_delta_part has errors\n\n");
//search the coefficient
if( coeff_table[point_temp[0]][alpha][a] != 0 )
{
b = i;
flag = (int)comb(b,beta);
// if flag is even number , delta_temp is equal to 0
// if flag is odd number, delta_temp can be calculated to the delta
if( (flag%2)!=0 )
{
delta_temp1 = power( ri,(b-beta) );
delta_temp2 = mul( Q_interpoly[j][i][u][v],coeff_table[point_temp[0]][alpha][a] );
delta_temp2 = mul( delta_temp2,delta_temp1 );
delta = add( delta,delta_temp2 );
}
}
}
return delta;
}
float comb(float a,float b) //calculate combination(a_up,b_down)
{
int i;
float temp1,temp2=1.0;
if( (int)a >= (int)b )
{
if( (int)a==(int)b && (int)a==0 ) //C(0,0)
{
temp2=1.0;
}
for(i=0;i<(int)b;i++)
{
temp1=(a-(float)i)/(b-(float)i);
temp2*=temp1;
}
}
else if( (int)a < (int)b )
{
printf("\n\ncomb() error");
}
return temp2;
}
//****coefficientSearch*********
int cal_max_a()
{
unsigned long int u, gene, iter_num_temp, u_temp, deg_Q, a_temp;
float temp;
int lm_temp,tm;
//calculate gene, C=iter_num,
gene=w*(w-1)/2;
iter_num_temp=n*(max_m+1)*max_m/2;
//calculate lm
u_temp=-1;
for(u=0;u<N;u++)
{
temp=((float)(weiz*u)/2.0-gene)*(u-1);
if(temp<=iter_num_temp)
{
u_temp=u;
}
else if(temp>iter_num_temp)
{
break;
}
}
lm_temp=u_temp-1;
//calculate tm
u_temp=-1;
for(u=0;u<N;u++)
{
temp=(lm_temp+1)*u + weiz*(lm_temp+1)*lm_temp/2.0 - lm_temp*gene - gama(u);
if(temp<=iter_num_temp)
{
u_temp=u;
}
if(temp>iter_num_temp)
{
break;
}
}
tm=u_temp;
//calculate deg_Q
deg_Q = lm_temp*weiz + tm;
//search a
a_temp=-1;
for(u=0;u<tg_size;u++)
{
u_temp= tg_order[u][0]*w + tg_order[u][1]*(w+1);
if( u_temp>=deg_Q ) //key part, determine can be "<" or "<="
{
a_temp=u;
break;
}
}
if(a_temp==-1)
{
printf("\n\ncalculate a is erro\n");
}
return a_temp;
}
int gama(int u)
{
int i,j,num,temp;
j=0;
num=0;
for(i=0;i<=u;i++)
{
temp=tg_order[j][0]*w + tg_order[j][1]*(w+1);
if(temp!=i)
num++;
else if(temp==i)
j++;
}
return num;
}
void zerobasis(int pointIndex, int LM_zb[][2])
{
int i,j,u,v;
int temp,flag,xi,yi,index_flag,temp2;
int zb_temp1[zb_Xsize], zb_temp2[zb_Ysize][zb_Xsize+1];
int poly_temp1[zb_Ysize+w][zb_Xsize+w],poly_temp2[zb_Ysize+1][zb_Xsize];
// int poly1_Ysize, poly1_Xsize, poly2_Ysize, poly2_Xsize;
// poly1_Ysize
//Initialisation
for(i=0;i<zb_alpha;i++)
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
{
zb[i][u][v] = 0;
}
xi = point[pointIndex][0];
yi = point[pointIndex][1];
flag = 0;
//calculate Zb
for(i=0;i<zb_alpha;i++)
{
//set poly_temp1 to be 0
for(u=0;u<zb_Ysize+w;u++)
for(v=0;v<zb_Xsize+w;v++)
{
poly_temp1[u][v]=0;
}
for(u=0;u<zb_Ysize+1;u++)
for(v=0;v<zb_Xsize;v++)
{
poly_temp2[u][v]=0;
}
//zb_a
temp=i%(w+1);
if(temp==0)
{
//initialization
for(v=0;v<zb_Xsize;v++)
{
zb_temp1[v]=0;
}
zb_temp1[0]=1;
flag=1; //change the zb_temp2
}
else if(temp==1)
{
zb_temp1[0]=xi;
zb_temp1[1]=1;
}
else if(temp>1 && temp<=w)
{
//x*zb
poly_temp1[0][0]=0; //only the first line of poly_temp1 will be uesd
for(v=0;v<zb_Xsize;v++)
{
poly_temp1[0][v+1]=zb_temp1[v];
}
//xi*zb+x*zb
for(v=0;v<zb_Xsize;v++)
{
zb_temp1[v]=mul( xi,zb_temp1[v] );
zb_temp1[v]=add( zb_temp1[v],poly_temp1[0][v] );
}
}
//zb_b;
if(flag==1)
{
temp=i/(w+1);
if(temp==0)
{
//initialization
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize+1;v++)
{
zb_temp2[u][v]=0;
}
//calculate zb
zb_temp2[0][0] = 1;
}
else if(temp==1)
{
zb_temp2[1][0] = 1; //y
zb_temp2[0][1] = power( xi,w ); //xi^w*x
zb_temp2[0][0] = mul( zb_temp2[0][1],xi ); //xi^(w+1)
zb_temp2[0][0] = add( zb_temp2[0][0],yi ); //yi+xi^(w+1)
}
else if(temp>1)
{
//cal xi^w*x*zb_temp2
temp2 = power( xi,w ); //xi^w
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
if( zb_temp2[u][v]!=0 )
{
poly_temp1[u][v+1]=mul( temp2,zb_temp2[u][v] );
}
//x^(w+1)=y^w+y
for(u=0;u<zb_Ysize;u++)
if( poly_temp1[u][w+1]!=0 )
{
poly_temp1[u+1][0] = add( poly_temp1[u+1][0],poly_temp1[u][w+1] ); //y^1
poly_temp1[u+w][0] = add( poly_temp1[u+w][0],poly_temp1[u][w+1] ); //y^2
poly_temp1[u][w+1] = 0;
}
//cal y*zb_temp2
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
if( zb_temp2[u][v]!=0 )
{
poly_temp2[u+1][v]=zb_temp2[u][v];
}
//real zb_temp2
temp = power( xi,(w+1) );
temp = add( temp,yi ); //yi+xi^(w+1)
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
{
zb_temp2[u][v] = mul( zb_temp2[u][v],temp ); //( yi+xi^(w+1) )* zb_temp2
zb_temp2[u][v] = add( zb_temp2[u][v],poly_temp1[u][v] );
zb_temp2[u][v] = add( zb_temp2[u][v],poly_temp2[u][v] );
}
}
//close the changing of zb_temp2
flag=0;
}
//zb = zb_temp1 * zb_temp2
for(j=0;j<zb_Xsize;j++)
if( zb_temp1[j]!=0 )
{
//set poly_temp1 to be 0
for(u=0;u<zb_Ysize+w;u++)
for(v=0;v<zb_Xsize+w;v++)
{
poly_temp1[u][v]=0;
}
//cal zb_temp1[j]*x*zb_temp2
temp = zb_temp1[j];
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
if( zb_temp2[u][v]!=0 )
{
poly_temp1[u][v+j] = mul( temp,zb_temp2[u][v] );
}
//x^(w+1)=y^w+y, progressively
index_flag = zb_Xsize+j-1; //the max deg_x for poly_temp1
while( index_flag>w ) //juge if deg_x is larger than w, 'yes' for modify
{
temp = index_flag-(w+1);
for(u=0;u<zb_Ysize;u++)
if( poly_temp1[u][index_flag]!=0 )
{
poly_temp1[u+1][temp] = add( poly_temp1[u+1][temp],poly_temp1[u][index_flag] ); //y^1
poly_temp1[u+w][temp] = add( poly_temp1[u+w][temp],poly_temp1[u][index_flag] ); //y^(w+1)
poly_temp1[u][index_flag] = 0;
}
index_flag = index_flag-1;
}
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
if( zb[i][u][v]!=0 || poly_temp1[u][v]!=0 )
{
zb[i][u][v] = add( zb[i][u][v],poly_temp1[u][v] );
}
}
//calculate LM_zb
LM_zb[i][0] = i%(w+1); //degree of x
LM_zb[i][1] = i/(w+1); //degree of y
}
}
void coefficientSearch(int effTable[][tableSize_alpha][tableSize_a]) //input the coefficient table
{
int i, j, u, v, z, flag, temp, temp2, flag_size_detecting;
int poly[zb_Ysize][zb_Xsize];
int max_a, u_temp, v_temp, index_x, index_y, choosen_index, lod_temp;
int LM[zb_alpha][2];
// int effTable[n][tableSize_alpha][tableSize_a];
//Initialisazion
for(i=0;i<n;i++)
for(u=0;u<tableSize_alpha;u++)
for(v=0;v<tableSize_a;v++)
{
effTable[i][u][v]=0;
}
for(u=0;u<zb_alpha;u++)
for(v=0;v<2;v++)
{
LM[u][v]=0;
}
max_a = cal_max_a(); //decisided by max_m in M Matrix
if( max_a >= tableSize_a ) //detect if the array overflow
{
printf("\n\nmax_a = %d, tableSize_a should be set larger\n\n", max_a);
}
//calculate coeff_table
for(i=0;i<n;i++)
{
//initialization poly
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
{
poly[u][v]=0;
}
zerobasis(i,LM); //calculate all the zb which index under tableSize_alpha and its leading monomial
for(j=max_a;j>=0;j--)
{
//initialize coefficient
for(z=0;z<(max_alpha+1);z++)
{
effTable[i][z][j]=0;
}
//search the choosen zb
index_x = tg_order[j][0];
index_y = tg_order[j][1];
//cal the first coeffTable value
flag_size_detecting = 0;
for(z=zb_alpha-1;z>=0;z--)
if( LM[z][0]==index_x && LM[z][1]==index_y )
{
choosen_index = z;
if( z<tableSize_alpha )
{
effTable[i][z][j]=1;
}
else
{
printf("\n\n0.tableSize_alpha is not large enough\n\n");
}
break;
}
if(z==-1) //detecting if the zb_alpha is not large enough to finde the corresponind monomial
{
printf("\n\n0.zb_alpha is not enougth to search\n\n");
}
//initialize the first poly
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
if( zb[choosen_index][u][v]!=0 )
{
poly[u][v]=zb[choosen_index][u][v];
}
//set the item of poly as LM[choosen_index] to be 0
poly[index_y][index_x]=0;
//cal the coeffTable
flag=0; //judge if the poly is empty
for(u=0;u<zb_Ysize;u++)
{
for(v=0;v<zb_Xsize;v++)
if( poly[u][v]!=0 )
{
flag=1;
break;
}
if( flag==1 )
{
break;
}
}
//start to search coefficient
while( flag!=0 ) //warning: here, the circle condition is different from the thesis, 1->not empty, 0->empty
{
//find the poly's the second largest item
lod_temp = -1;
index_x = -1;
index_y = -1;
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
if( poly[u][v]!=0 && lod_temp<mono_order[0][u][v] )
{
lod_temp=mono_order[0][u][v];
index_y = u;
index_x = v;
}
//check the correctess of the progress of search second largest item
if( index_x==-1 || index_y==-1 )
{
printf("\n\nsearch progress has error\n\n");
}
//find the choose_index of zb
for(z=zb_alpha-1;z>=0;z--)
if( LM[z][0]==index_x && LM[z][1]==index_y )
{
choosen_index = z;
if( z<tableSize_alpha )
{
effTable[i][z][j] = poly[index_y][index_x];
}
else
{
printf("\n\n1.tableSize_alpha is not large enough\n\n");
}
break;
}
if(z==-1) //detecting if the zb_alpha is not large enough to finde the corresponind monomial
{
printf("\n\n1.zb_alpha is not enougth to search\n\n");
}
//update the poly
temp = poly[index_y][index_x];
for(u=0;u<zb_Ysize;u++)
for(v=0;v<zb_Xsize;v++)
if( zb[choosen_index][u][v]!=0 )
{
temp2 = mul( temp,zb[choosen_index][u][v] );
poly[u][v] = add( temp2,poly[u][v] );
}
//check if the poly is empty
flag=0; //judge if the poly is empty, 1->not empty, 0->empty
for(u=0;u<zb_Ysize;u++)
{
for(v=0;v<zb_Xsize;v++)
if( poly[u][v]!=0 )
{
flag=1;
break;
}
if( flag==1 )
{
break;
}
}
//**************************
}
//************************
}
//**********************
}
//for(i=0;i<n;i++)
// for(u=0;u<(max_alpha+1);u++)
// for(v=0;v<(max_a+1);v++)
// {
// coeff_table[i][u][v] = effTable[i][u][v];
// }
#ifdef printCoeffTable_file
//*********debug: printf the coeffTable*********
FILE *fout;
if( (fout=fopen("coeff_table.txt","a"))==NULL)
{
printf("\n\nCan't open coeff_table.txt\n\n");
exit(0);
}
fprintf(fout,"\ncoeffTable for Herm(%d,%d)", n, k);
for(i=0;i<n;i++)
{
fprintf(fout,"\n**************************");
fprintf(fout,"\npoint_%d(%d,%d):\n", i, point[i][0], point[i][1]);
for(v=0;v<(max_a+1);v++)
{
fprintf(fout,"\t%d",v);
}
for(u=0;u<(max_alpha+1);u++)
{
fprintf(fout,"\n\n");
fprintf(fout,"%d", u);
for(v=0;v<(max_a+1);v++)
{
fprintf(fout,"\t%d", effTable[i][u][v]);
}
}
fprintf(fout,"\n\n");
}
fprintf(fout,"\n");
fclose(fout);
/**********************************/
#endif
}
//********************************
| [
"codywsy@gmail.com"
] | codywsy@gmail.com |
773cd57ef7c8985f31e671a5b8a6049c5e1d2e94 | d0ca76e794a59d7a077f258dd5339e01f0651feb | /include/system/ILowLevelSystem.h | 379ee06efec778cbe832ff000e97724b79272beb | [
"MIT"
] | permissive | javierverag/libCC | d0f270de64ccd456a88db6d67260f436859d68fa | 8bc79c5ec8ccbc14d5360ff937274f4db80540e9 | refs/heads/master | 2020-04-02T18:47:12.829755 | 2018-10-26T18:26:26 | 2018-10-26T18:26:26 | 154,712,924 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 328 | h | //---------------------------------------------------------------------------
// ILowLevelSytem.h
//---------------------------------------------------------------------------
#pragma once
namespace CC
{
extern void Log(const char* fmt, ...);
extern unsigned long GetApplicationTime();
class ILowLevelSystem
{
};
}
| [
"javierverag@github.com"
] | javierverag@github.com |
9541342fb1edf9dd2c858b41b2164710dd6243b4 | 6b5c26e017b41b9df802b6865a3842d69778f3b2 | /src/other/API_threadpool/Demo.cpp | 5202e7a2fcb189be6c381310c2856015064f8e7e | [] | no_license | lvchigo/caffe_image_classfication | ae1f5d4e970ffc345affdb6d6db91918fe07c56d | 6b9b05323b0c5efe41c368ff22ec8ed05cd07c8b | refs/heads/master | 2020-12-29T02:19:51.445761 | 2017-01-12T07:08:58 | 2017-01-12T07:08:58 | 50,634,240 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 21,871 | cpp | #include <iostream>
#include <string>
#include <fstream>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <tr1/memory>
#include "string_operator.h"
//#include "geekeye.h"
#include "json/json.h"
#include "downloader.h"
#include <curl/curl.h>
#include <time.h>
//add by xiaogao-20150414
#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
#include "API_in36class_classification.h"
#include "threadpool.hpp"
#include <boost/bind.hpp>
#include <boost/thread/mutex.hpp>
using namespace cv;
using namespace std;
using boost::threadpool::pool;
//=================================================================================//
const std::string URLTEMP = "http://in.itugo.com/api/getphotogeekeye?limit=";
const std::string URLPOST = "http://in.itugo.com/api/revphotogeekeyeres";
const std::string POSTHEAD = "res=";
RunTimer<double> rt;
static pthread_mutex_t g_mutex = PTHREAD_MUTEX_INITIALIZER;
const int THREADCOUNT = 10;
const int NLIMIT = 100;
typedef struct tagThreadParam
{
int para;
int nThreads;
}ThreadParam;
typedef struct inim
{
std::string _id;
//std::string _tag;
std::string _url;
inim(){
}
inim(std::string id, std::string url)
{
_id = id;
//_tag = tag;
_url = url;
}
void print()
{
std::cout<<std::endl;
std::cout<<_id<<std::endl;
//std::cout<<_tag<<std::endl;
std::cout<<_url<<std::endl;
std::cout<<std::endl;
}
}inim;
typedef struct imnode
{
std::string _id;
std::string _url;
std::string _imf;
}imnode;
//=================================================================================//
vector<string> vecRes;
vector<imnode> vecImNode;
API_IN36CLASS_CLASSIFICATION api_in36class_classification;
//=================================================================================//
int wget_image_file(const std::string url, const std::string image_file);
int wget_image_file_wget(const std::string &url, const std::string &image_file);
int get_im_list(int im_count, std::vector<inim> &imlist);
void *workThread (void *para);
int batch(const std::vector<inim>& imlist, std::string &results, int &numRes);
size_t write_data(void *ptr, size_t size, size_t nmemb, void *data);
int curl_get(const std::string &Url, std::string &UrlCallback);
int curl_send(const std::string& Res, std::string &ResCallback);
int get_status(const std::string& str);
int IN_ImgLabel( const char *szKeyFiles, const int binGPU );
/*********************************threadpool*************************************/
boost::mutex m_io_monitor;
void task_threadpool( const std::vector<inim> imlist, const int TaskID);
int test_threadpool( const char *szKeyFiles, const int binGPU );
//=================================================================================//
int main(int argc, char** argv)
{
int ret = 0;
if (argc == 4 && strcmp(argv[1],"-label") == 0) {
ret = IN_ImgLabel( argv[2], atol(argv[3]));
}
else if (argc == 4 && strcmp(argv[1],"-threadpool") == 0) {
ret = test_threadpool( argv[2], atol(argv[3]));
}
else
{
cout << "usage:\n" << endl;
cout << "\tDemo -label keyFilePath binGPU\n" << endl;
cout << "\tDemo -threadpool keyFilePath binGPU\n" << endl;
return ret;
}
return ret;
}
//=================================================================================//
int curl_get(const std::string &Url, std::string &UrlCallback)
{
UrlCallback = "";
if( ( Url == "" ) || ( Url == "null" ) )
{
printf( "curl get Input:%s err!!\n", Url.c_str() );
return -1;
}
else
printf( "Curl get Input:%s\n",Url.c_str() );
/* init the curl session */
CURL *curl = curl_easy_init();
if(NULL == curl)
{
printf( "curl get:curl_easy_init error.\n" );
curl_easy_cleanup(curl);
return -1;
}
curl_easy_setopt(curl, CURLOPT_TIMEOUT, 10L);
curl_easy_setopt(curl, CURLOPT_CONNECTTIMEOUT, 5L);
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_LIMIT, 1L);
curl_easy_setopt(curl, CURLOPT_LOW_SPEED_TIME, 5L);
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1L);
curl_easy_setopt(curl, CURLOPT_URL, Url.c_str());
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, static_cast<void *>(&UrlCallback) );
if (curl_easy_perform(curl) != CURLE_OK)
{
printf( "curl get %s error.\n",Url.c_str() );
curl_easy_cleanup(curl);
return -1;
}
curl_easy_cleanup(curl);
if( ( UrlCallback == "" ) || ( UrlCallback == "null" ) )
{
printf( "curl get Callback:%s\n", UrlCallback.c_str() );
return -1;
}
else
printf( "Curl get Callback:%s\n",UrlCallback.c_str() );
return 0;
}
int curl_send(const std::string& Res, std::string &ResCallback)
{
ResCallback = "";
if( ( Res == "" ) || ( Res == "null" ) )
{
printf( "curl send Input:%s err!!\n", Res.c_str() );
return -1;
}
else
printf( "curl send Input:%s\n",Res.c_str() );
//CURLcode res;
CURL *curl = curl_easy_init();
if(NULL == curl)
{
printf( "curl send:curl_easy_init error.\n" );
curl_easy_cleanup(curl);
return -1;
}
curl_easy_setopt(curl, CURLOPT_URL, URLPOST.c_str());
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, Res.c_str());
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, static_cast<void *>(&ResCallback) );
curl_easy_setopt(curl, CURLOPT_POST, 1);
//curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
//curl_easy_setopt(curl, CURLOPT_HEADER, 1);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(curl, CURLOPT_NOSIGNAL, 1L);
//curl_easy_setopt(curl, CURLOPT_COOKIEFILE, "curlposttest.cookie");
//res = curl_easy_perform(curl);
if (curl_easy_perform(curl) != CURLE_OK)
{
printf( "curl send %s error.\n",Res.c_str() );
curl_easy_cleanup(curl);
return -1;
}
curl_easy_cleanup(curl);
if( ( ResCallback == "" ) || ( ResCallback == "null" ) )
{
printf( "curl send Callback:%s err!!\n", ResCallback.c_str() );
return -1;
}
else
printf( "curl send Callback:%s\n",ResCallback.c_str() );
return 0;
}
int get_status(const std::string& str)
{
Json::Reader reader;
Json::Value root;
if (reader.parse(str.c_str(), root))
{
// 0--true
return (0 == str_compare(root["succ"].asString().c_str(), "true" ) );
}//if json
return 0;
}
int get_im_list(int im_count, std::vector<inim>& imlist)
{
int nRet = 0;
imlist.clear();
imlist.reserve(1000);
std::string url_list = URLTEMP + number_to_string<int>(im_count);
//printf( "get_im_list[1]:get_content...\n" );
std::string str = "";
nRet = curl_get( url_list, str);
if( nRet != 0 )
{
return nRet;
}
Json::Reader reader;
Json::Value root;
//std::cout<<"get_im_list[2]:reader.parse"<<std::endl;
if (reader.parse(str.c_str(), root))
{
// 0--true
//std::cout<<"get_im_list[3]:str_compare[1.0]"<<std::endl;
//printf( "root[succ]:%s!!\n",root["succ"].asString().c_str() );
if( 0 == strcmp( root["succ"].asString().c_str(), "true" ) )
{
//std::cout<<"get_im_list[4]:str_compare[1.1]"<<std::endl;
const Json::Value iters = root["data"];
//std::cout<<iters.size()<<std::endl;
//std::cout<<"get_im_list[5]:str_compare[1.2]"<<std::endl;
for(int i = 0; i<iters.size(); ++i){
inim im(iters[i]["id"].asString(), iters[i]["url"].asString() );
imlist.push_back(im);
//im.print();
}//for-data
}//if-succ
else
{
printf( "get_im_list[6]:(root !=succ);str=%s\n", str.c_str() );
nRet = -1;
}
}//if json
else
{
printf( "get_im_list[7]:reader.parse err;str=%s\n", str.c_str() );
nRet = -1;
}
if(imlist.size()<1)
{
printf( "get_im_list[8]:(imlist.size()<1);str=%s\n", str.c_str() );
nRet = -1;
}
return nRet;
}
size_t write_data(void *ptr, size_t size, size_t nmemb, void *data)
{
size_t written = size*nmemb;
std::string *str = static_cast<std::string *>(data);
str->append( (char *)ptr, written);
return written;
}
int wget_image_file(const std::string url, const std::string image_file)
{
std::string wgetFile = "wget -q -T 3 -t 1 " + url + " -O " + image_file;
int nRet = system( wgetFile.c_str() );
return 0;
}
int wget_image_file_wget(const std::string &url, const std::string &image_file)
{
std::string cmd = "wget -q -T 3 -t 1 " + url + " -O " + image_file;
FILE* fptr;
if( ( fptr = popen(cmd.c_str(), "r") ) == NULL )
{
printf( "wget_image_file_wget err:%s not find!!\n", cmd.c_str() );
return -1;
}
pclose(fptr);
return 0;
}
//add by xiaogao-20150414
void *workThread (void *para)
{
int i,idx,saveResNum,nRet = 0;
const long ImageID = 1;
char szImgPath[256] = {0};
char rmImgPath[256] = {0};
std::string res = "";
ThreadParam *pParam = (ThreadParam*)para;
for (idx = pParam->para; idx < vecImNode.size(); idx += pParam->nThreads)
{
//printf("Start workThread[0]:idx-%d,size-%d\n",idx,vecImNode.size());
vector< pair< string, float > > LabelInfo;
LabelInfo.clear();
//float tWget,tGetLabel,tMergeLabel,tWriteData;
/*****************************Get Image File*****************************/
//printf("Start workThread[1]:Get Image File...\n");
//rt.start();
nRet = wget_image_file(vecImNode[idx]._url, vecImNode[idx]._imf);
//nRet = wget_image_file_wget(vecImNode[idx]._url, vecImNode[idx]._imf);
//rt.end();
//tWget = rt.time();
if (nRet != 0)
{
printf("wget_image_file err!!\n");
//continue;
}
/*****************************Load Image*****************************/
//printf("Start workThread[2]:Load Image:%s\n",vecImNode[idx]._imf.c_str());
IplImage *img = cvLoadImage( vecImNode[idx]._imf.c_str() );
if(!img || (img->width<16) || (img->height<16) || img->nChannels != 3 || img->depth != IPL_DEPTH_8U)
{
cout<<"Can't open " << vecImNode[idx]._imf.c_str() << endl;
nRet = -1;
//continue;
}
/*****************************Get Label*****************************/
if( 0 == nRet )
{
//printf("Start workThread[3]:Get Label...\n");
pthread_mutex_lock (&g_mutex);
//rt.start();
nRet = api_in36class_classification.Predict(img, ImageID, "fc7", 3, LabelInfo);
//rt.end();
//tGetLabel = rt.time();
pthread_mutex_unlock (&g_mutex);
if (nRet != 0)
{
cout<<"Fail to Predict!! "<<endl;
//continue;
}
}
/*****************************Merge Result*****************************/
//printf("Start workThread[5]:Merge Result...\n");
res = "null,-1,null,-1";
if ( ( nRet == 0 ) && ( LabelInfo.size() != 0 ) )
{
res = "";
saveResNum = 2; //output 2 img info
saveResNum = (saveResNum>LabelInfo.size())?LabelInfo.size():saveResNum;
for ( i=0;i<saveResNum;i++ )
{
sprintf(szImgPath, "%s,%.2f,", LabelInfo[i].first.c_str(), LabelInfo[i].second );
res += szImgPath;
}
if( 1 == saveResNum )
{
res += "null,-1";
}
}
/*******************************curl_post***************************************/
//printf("Start workThread[6]:curl_post...\n");
vecRes.push_back( vecImNode[idx]._id + "," + res );
/*****************************Release*****************************/
if(img) { cvReleaseImage(&img);img = 0; }
/*****************************rm img file*****************************/
sprintf(rmImgPath, "rm %s", vecImNode[idx]._imf.c_str() );
nRet = system(rmImgPath);
//printf("Time:Wget-%.4f,GetLabel-%.4f,MergeLabel-%.4f,WriteData-%.4f\n",
// tWget,tGetLabel,tMergeLabel,tWriteData);
}
/*******************************clr img***************************************/
//printf("thread %d Over!\n", pParam->para);
pthread_exit (0);
return NULL;
}
int batch(const std::vector<inim>& imlist, std::string &results, int &numRes)
{
int i,j,t;
vecImNode.clear();
vecRes.clear();
numRes = 0;
if(imlist.size()<1)
return -1;
/*********************************Load Img Data*************************************/
//printf("Start batch[1]:Load Img Data...\n");
for(i=0; i<imlist.size(); ++i)
{
imnode nds;
nds._id = imlist[i]._id;
nds._url = imlist[i]._url;
nds._imf = "tmp/" + imlist[i]._id + ".jpg";
vecImNode.push_back(nds);
}
/*********************************MutiThread*************************************/
//printf("Start batch[2]:MutiThread...\n");
{
pthread_t *pThread = new pthread_t[THREADCOUNT];
ThreadParam *pParam = new ThreadParam[THREADCOUNT];
for(i=0; i<THREADCOUNT; ++i)
{
pParam[i].para = i;
pParam[i].nThreads = THREADCOUNT;
int rc = pthread_create(pThread+i, NULL, workThread,(void*)(pParam+i));
}
for(i=0; i<THREADCOUNT; ++i)
{
pthread_join(pThread[i], NULL);
}
sleep (1);
delete [] pThread;
delete [] pParam;
}
if(vecRes.size()<1)
return -1;
/*********************************Merge Res*************************************/
//printf("Start batch[3]:Merge Res...\n");
numRes = vecRes.size();
results = POSTHEAD;
for(i=0;i<vecRes.size();i++)
{
results += vecRes[i] + "\\n";
}
vecRes.clear();
return 0;
}
int IN_ImgLabel( const char *szKeyFiles, const int binGPU )
{
time_t timep;
char szImgPath[256];
int numRes,nRet = 0;
RunTimer<double> rtTmp;
float tGet_im_list,tBatch,tCurl_post;
/***********************************rm && mkdir tmpdata*************************************/
nRet = system("mkdir tmp/");
/***********************************Init*************************************/
printf("Start api_in36class_classification.Init...\n");
nRet = api_in36class_classification.Init( szKeyFiles, "fc7", binGPU, 0 );
if (nRet != 0)
{
cout<<"Fail to initialization "<<endl;
return nRet;
}
/***********************************Process*************************************/
while(true)
{
rt.start();
/***********************************save file**************************************/
//std::string res_file = number_to_string<long>(time(&timep)) + ".csv";
/***********************************get_im_list*************************************/
//printf("Start get_im_list(%d)...\n",NLIMIT);
std::vector<inim> imlist;
imlist.clear();
rtTmp.start();
nRet = get_im_list( NLIMIT, imlist );
rtTmp.end();
tGet_im_list = rtTmp.time();
if (nRet != 0)
{
printf("get_im_list err:breakNum\n");
sleep(2); //s
continue;
}
/***********************************MutiThread Process******************************/
//printf("Start batch(imlist)...\n");
numRes = 0;
std::string results = "";
rtTmp.start();
if ( nRet == 0 )
nRet = batch(imlist, results, numRes);
rtTmp.end();
tBatch = rtTmp.time();
if (nRet != 0)
{
printf("MutiThread Process err:breakNum\n");
sleep(2); //s
//continue;
}
/***********************************curl_send*************************************/
//printf("Start curl_post...\n");
rtTmp.start();
std::string ResCallback = "";
nRet = curl_send(results, ResCallback);
rtTmp.end();
tCurl_post = rtTmp.time();
if (nRet != 0)
{
printf("curl_send err:breakNum\n");
sleep(2); //s
//continue;
}
/***********************************Time*************************************/
rt.end();
if ( numRes > 0 )
{
printf( "numRes:%d,Run Time:%.4f,avg:%.4f\n", numRes,rt.time(),rt.time()/numRes );
printf( "Time:Get_im_list-%.4f,Batch-%.4f,Curl_post-%.4f\n", tGet_im_list,tBatch,tCurl_post );
}
}
/*********************************Release*************************************/
printf("Start api_in36class_classification.Release...\n");
api_in36class_classification.Release();
return 0;
}
/*********************************threadpool*************************************/
void task_threadpool( const int TaskID )
{
int i,j,t,numRes_threadpool=0;
vector<string> vecRes_threadpool;
vector<imnode> vecImNode_threadpool;
int idx,saveResNum,nRet = 0;
const long ImageID = 1;
char szImgPath[256] = {0};
char rmImgPath[256] = {0};
std::string res = "";
std::string resSend = "";
RunTimer<double> rtTmp;
float tGet_im_list,tThreadPool,tCurl_post=0;
rt.start();
/*********************************get_im_list*************************************/
//printf("Start test_threadpool(%d):TaskID-%d\n",NLIMIT,TaskID);
vector<inim> imlist;
rtTmp.start();
nRet = get_im_list( NLIMIT, imlist );
rtTmp.end();
tGet_im_list = rtTmp.time();
if ( (nRet != 0) || ( imlist.size() == 0 ) )
{
printf("get_im_list err:breakNum\n");
sleep(1); //s
}
if ( imlist.size() > 0 )
{
/*********************************Load Img Data*************************************/
//printf("Start task_threadpool[1]:Change Data...\n");
for(i=0; i<imlist.size(); ++i)
{
imnode nds;
nds._id = imlist[i]._id;
nds._url = imlist[i]._url;
nds._imf = "tmp/" + imlist[i]._id + ".jpg";
vecImNode_threadpool.push_back(nds);
}
//printf("Start workThread[%d],size-%ld\n",TaskID,vecImNode_threadpool.size());
rtTmp.start();
for (idx = 0; idx < vecImNode_threadpool.size(); idx++ )
{
vector< pair< string, float > > LabelInfo;
LabelInfo.clear();
//float tWget,tGetLabel,tMergeLabel,tWriteData;
/*****************************Get Image File*****************************/
//printf("Start workThread[1]:Get Image File...\n");
//rt.start();
nRet = wget_image_file(vecImNode_threadpool[idx]._url, vecImNode_threadpool[idx]._imf);
//rt.end();
//tWget = rt.time();
if (nRet != 0)
{
printf("Start workThread[1]:wget_image_file err,continue!\n");
//continue;
}
/*****************************Load Image*****************************/
//printf("Start workThread[2]:Load Image:%s\n",vecImNode_threadpool[idx]._imf.c_str());
IplImage *img = cvLoadImage( vecImNode_threadpool[idx]._imf.c_str() );
if(!img || (img->width<16) || (img->height<16) || img->nChannels != 3 || img->depth != IPL_DEPTH_8U)
{
cout<<"Can't open " << vecImNode_threadpool[idx]._imf.c_str() << endl;
nRet = -1;
//continue;
}
/*****************************Get Label*****************************/
if( 0 == nRet )
{
//printf("Start workThread[3]:Get Label...\n");
//pthread_mutex_lock (&g_mutex);
//rt.start();
boost::mutex::scoped_lock lock(m_io_monitor);
nRet = api_in36class_classification.Predict(img, ImageID, "fc7", 3, LabelInfo);
//rt.end();
//tGetLabel = rt.time();
//pthread_mutex_unlock (&g_mutex);
if (nRet != 0)
{
cout<<"Fail to GetLabel!! "<<endl;
//continue;
}
}
/*****************************Merge Result*****************************/
//printf("Start workThread[5]:Merge Result...\n");
res = "null,-1,null,-1";
if ( ( nRet == 0 ) && ( LabelInfo.size() != 0 ) )
{
res = "";
saveResNum = 2; //output 2 img info
saveResNum = (saveResNum>LabelInfo.size())?LabelInfo.size():saveResNum;
for ( i=0;i<saveResNum;i++ )
{
sprintf(szImgPath, "%s,%.2f,", LabelInfo[i].first.c_str(), LabelInfo[i].second );
res += szImgPath;
}
if( 1 == saveResNum )
{
res += "null,-1";
}
}
/*******************************curl_post***************************************/
//printf("Start workThread[6]:curl_post...\n");
vecRes_threadpool.push_back( vecImNode_threadpool[idx]._id + "," + res );
/*****************************Release*****************************/
if(img) { cvReleaseImage(&img);img = 0; }
/*****************************rm img file*****************************/
sprintf(rmImgPath, "rm %s", vecImNode_threadpool[idx]._imf.c_str());
nRet = system(rmImgPath);
//printf("Time:Wget-%.4f,GetLabel-%.4f,MergeLabel-%.4f,WriteData-%.4f\n",
// tWget,tGetLabel,tMergeLabel,tWriteData);
}
rtTmp.end();
tThreadPool = rtTmp.time();
if(vecRes_threadpool.size()>0)
{
/*********************************Merge Res*************************************/
//printf("Start batch[3]:Merge Res...\n");
resSend = POSTHEAD;
for(i=0;i<vecRes_threadpool.size();i++)
{
resSend += vecRes_threadpool[i] + "\\n";
}
/***********************************curl_send*************************************/
//printf("Start workThread[6]:curl_post...\n");
rtTmp.start();
std::string ResCallback = "";
nRet = curl_send(resSend, ResCallback);
rtTmp.end();
tCurl_post = rtTmp.time();
if (nRet != 0)
{
printf("curl_send err:breakNum\n");
sleep(1); //s
}
}
rt.end();
/*******************************Print***************************************/
if ( vecRes_threadpool.size() > 0 )
{
printf( "numRes:%ld,Run Time:%.4f,avg:%.4f,ThreadPool-%.4f,Curl_post-%.4f\n",
vecRes_threadpool.size(),rt.time(),rt.time()/vecRes_threadpool.size(),tThreadPool,tCurl_post );
}
vecRes_threadpool.clear();
}
}
int test_threadpool( const char *szKeyFiles, const int binGPU )
{
char szImgPath[256];
int i,numRes,nRet = 0;
int numThreadPool = 4;
int idThreadPool = -1;
RunTimer<double> rtTmp;
float tGet_im_list,tThreadPool;
/***********************************rm && mkdir tmpdata*************************************/
nRet = system("mkdir tmp/");
/***********************************Init*************************************/
printf("Start api_in36class_classification.Init...\n");
nRet = api_in36class_classification.Init( szKeyFiles, "fc7", binGPU, 0 );
if (nRet != 0)
{
cout<<"Fail to api_in36class_classification.Init "<<endl;
return nRet;
}
/***********************************Init threadPool*************************************/
printf("Start Init threadPool...\n");
pool threadPool(numThreadPool);
/***********************************Process*************************************/
while(true)
{
/***********************************Process*************************************/
for(i=0;i<numThreadPool;i++)
{
threadPool.schedule(boost::bind(task_threadpool, i));
}
// Wait until all tasks are finished.
threadPool.wait();
}
/*********************************Release*************************************/
printf("Start DL_IMG_LABEL::Release...\n");
api_in36class_classification.Release();
return 0;
}
| [
"xiaogao@in66.com"
] | xiaogao@in66.com |
188272ce94685da36a23e4b8423398e86fcb6d82 | 74030bc8c1fb673eb3f2b960e09f4f631f52c83c | /map_recur_coin.cpp | 32be025c25c8b9054796d183898cc629c8929f5d | [] | no_license | jasfin/CPP-Programming | 607df9501581459c6f3e93e61ed2e1d1df6dd9e1 | 1930ddcb3b097af4bf2bfe1a470f598776e5e407 | refs/heads/master | 2020-06-08T17:17:37.706236 | 2019-06-22T19:31:09 | 2019-06-22T19:31:09 | 193,271,009 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 685 | cpp | #include<iostream>
#include<map>
using namespace std;
int findchange(int,int,int);
map<int,int> m;
int main()
{
int c,tot;
cout<<"enter available coin limit";
cin>>c;
/* int a[c];
cout<<"enter coin values";
for(int i=0;i<c;i++)
cin>>a[i];*/
// map<int,int> m;
m[0]=0;
cout<<"enter coin values";
for(int i=1;i<=c;i++)
cin>>m[i];
cout<<"enter total amount to make";
cin>>tot;
cout<<findchange(m[c],c,tot);
}
int findchange(int ele,int c,int tot)
{
if(m[c]==0 && tot==0)
return 1;
else if(m[c]==0 && tot!=0)
return 0;
else if(m[c]>tot)
return findchange(m[c-1],c-1,tot);
else
return(findchange(m[c-1],c-1,tot)+findchange(m[c],c,tot-m[c]));
}
| [
"mazhar@cet.ac.in"
] | mazhar@cet.ac.in |
851d43361e91520b4a042cddbe003ef271b875e4 | bfcede495bef6f559273d87827de41ca1afec11f | /uva/1225.cpp | 60544c82f3d2eb0f3d3dcb3b2f42bc7bfe501151 | [] | no_license | gabrieltaets/Competitive-Programming | b2c5a5b2d1d2bead8dfc9c7b699bcb12b0752d2a | 4e54a0dbf869ff2e10f10c2cbc03edcf3daa75d0 | refs/heads/master | 2021-01-02T15:39:00.448915 | 2017-11-01T04:32:55 | 2017-11-01T04:32:55 | 99,305,616 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 431 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int T;
cin >> T;
while(T--){
int num;
cin >> num;
int freq[10];
memset(freq,0,sizeof freq);
char str[10];
for(int i = 1; i <= num; i++){
sprintf(str,"%d",i);
for(int j = 0; j < str[j]; j++){
freq[str[j]-48]++;
}
}
for(int i = 0; i < 9; i++) printf("%d ",freq[i]);
printf("%d\n",freq[9]);
}
return 0;
} | [
"gabrieltaets@gmail.com"
] | gabrieltaets@gmail.com |
4732c57227f77cdbe1e0ce759f4a406b5e34943e | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/httpd/gumtree/httpd_repos_function_2194_httpd-2.3.6.cpp | 64c8e6182917841997c0764e8b6aede019fdb956 | [] | 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 | 264 | cpp | static void x_test_config(apr_pool_t *pconf, server_rec *s)
{
apr_file_t *out = NULL;
apr_file_open_stderr(&out, pconf);
apr_file_printf(out, "Example module configuration test routine\n");
trace_startup(pconf, s, NULL, "x_test_config()");
} | [
"993273596@qq.com"
] | 993273596@qq.com |
74fc93f7ba77248a13692cdd860a16a00ee78367 | f481aeb897c81095bf5bc544f9368aa78457694b | /503.cpp | a1526348a9bb28139697bea6dbdac3e79f9c4ad0 | [] | no_license | channyHuang/leetcodeOJ | 78b10f31f9a6c6571124208efe85201a3690f2da | b41e9c3c076074b6ab9349455b0cf40c270df41f | refs/heads/master | 2023-01-28T15:31:29.346320 | 2023-01-18T03:43:10 | 2023-01-18T03:43:10 | 221,703,848 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 753 | cpp | class Solution {
public:
vector<int> nextGreaterElements(vector<int>& nums) {
int len = nums.size();
vector<int> res;
for (int i = 0; i < len; i++) {
res.push_back(-1);
}
stack<int> st;
st.push(0);
for (int i = 1; i < len; i++) {
while (!st.empty() && nums[st.top()] < nums[i]) {
res[st.top()] = nums[i];
st.pop();
}
st.push(i);
}
for (int i = 0; i < len; i++) {
if (st.empty() || st.top() == i) break;
while (!st.empty() && nums[st.top()] < nums[i]) {
res[st.top()] = nums[i];
st.pop();
}
}
return res;
}
};
| [
"349117102@qq.com"
] | 349117102@qq.com |
f5be40408dec7be2eb22491213ee34b7c8d3b22e | c16479fa23f14bf4b75ac7dc67e7450a6d3b196d | /src/minesweeper/solver-bipartite.h | 44eb287351074e2777d821252d132deb010f80ed | [] | no_license | mahiro/libminesweeper | ca27b01f63c8770c9f8053241985d35a778042f6 | 02961392e12c84ca3292682b090f05c54d7d9920 | refs/heads/master | 2021-01-22T06:02:00.360784 | 2017-05-26T13:41:20 | 2017-05-26T13:41:20 | 92,515,262 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,072 | h | #ifndef _MINESWEEPER_SOLVER_BIPARTITE_H_
#define _MINESWEEPER_SOLVER_BIPARTITE_H_
#include "solver.h"
namespace minesweeper {
namespace solver {
using namespace minesweeper::core;
class BipartiteCells {
private:
mutable CellSet redCells;
mutable CellSet blueCells;
public:
explicit BipartiteCells() : redCells(), blueCells() {}
explicit BipartiteCells(const CellSet & _redCells, const CellSet & _blueCells) :
redCells(_redCells), blueCells(_blueCells) {}
CellSet & getRedCells() const {
return redCells;
}
CellSet & getBlueCells() const {
return blueCells;
}
CellSet & getRedOrBlueCells(bool forRed) const {
return forRed ? redCells : blueCells;
}
};
}
}
#endif
| [
"ma514y@gmail.com"
] | ma514y@gmail.com |
f661ade5fbed473e39ca1aacdbbc8bcbaf115899 | 1b4337e161f2049f2b9da1f6d15c10b135e6e1cc | /MilPrime/MilPrime.cpp | f376a1a64b705265f7b0111c1ac36c3e4cd18511 | [] | no_license | odysseus/euler | 10fb6402d470c3cc6e75623f1b0c3497f35fde80 | 0901ba7aba2b37ab38669d26e05a8533c5283b85 | refs/heads/master | 2021-01-20T23:32:16.617454 | 2013-04-30T18:48:51 | 2013-04-30T18:48:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 753 | cpp | #include <iostream>
#include <math.h>
using namespace std;
bool isPrime(int n) {
if (n == 1) return false;
else if (n < 4) return true;
else if (n % 2 == 0) return false;
else if (n < 9) return true;
else if (n % 3 == 0) return false;
else {
double root = sqrt((double) n);
int r = (int) root;
int f = 5;
while (f <= r) {
if ((n % f) == 0) return false;
if ((n % (f + 2)) == 0) return false;
f += 6;
}
}
return true;
}
int primeAt(int limit) {
if (limit == 1) return 2;
int count = 1;
int candidate = 1;
while (count < limit) {
candidate += 2;
if (isPrime(candidate)) count++;
}
return candidate;
}
int main() {
cout << "Millionth Prime: " << primeAt(1000000) << endl;
cout << "\nDone" << endl;
return 0;
}
| [
"rmcase@gmail.com"
] | rmcase@gmail.com |
cff649e7f23897073a660d8c7b9f323dc20f8b6e | 3cc25c57764cf65ed17b222c6763c59f625d7f0e | /ttn-otaa/ttn-otaa.ino | 39506387dc6e6e02ccdb15138d8e4f109f7671cf | [] | no_license | Karthikcule/Lora | 1c68935a0dfb656bc12e86bf31b893f16b5aa4df | 0eade2d2e7b8f8d62296572bdae45d0c4a9d7e00 | refs/heads/master | 2021-01-22T02:49:06.548124 | 2017-09-04T05:04:44 | 2017-09-04T05:04:44 | 102,253,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,099 | ino | /*******************************************************************************
* Copyright (c) 2015 Thomas Telkamp and Matthijs Kooijman
*
* Permission is hereby granted, free of charge, to anyone
* obtaining a copy of this document and accompanying files,
* to do whatever they want with them without any restriction,
* including, but not limited to, copying, modification and redistribution.
* NO WARRANTY OF ANY KIND IS PROVIDED.
*
* This example sends a valid LoRaWAN packet with payload "Hello,
* world!", using frequency and encryption settings matching those of
* the The Things Network.
*
* This uses OTAA (Over-the-air activation), where where a DevEUI and
* application key is configured, which are used in an over-the-air
* activation procedure where a DevAddr and session keys are
* assigned/generated for use with all further communication.
*
* Note: LoRaWAN per sub-band duty-cycle limitation is enforced (1% in
* g1, 0.1% in g2), but not the TTN fair usage policy (which is probably
* violated by this sketch when left running for longer)!
* To use this sketch, first register your application and device with
* the things network, to set or generate an AppEUI, DevEUI and AppKey.
* Multiple devices can use the same AppEUI, but each device has its own
* DevEUI and AppKey.
*
* Do not forget to define the radio type correctly in config.h.
*
*******************************************************************************/
#include <lmic.h>
#include <hal/hal.h>
#include <SPI.h>
#include <OneWire.h>
#include <DallasTemperature.h>
// Data wire is plugged into pin 2 on the Arduino
#define ONE_WIRE_BUS 8
// Setup a oneWire instance to communicate with any OneWire devices
// (not just Maxim/Dallas temperature ICs)
OneWire oneWire(ONE_WIRE_BUS);
// Pass our oneWire reference to Dallas Temperature.
DallasTemperature sensors(&oneWire);
const int trigPin = 4;
const int echoPin = 7;
//const int tempPin = 16;
// defines variables
long duration;
int distance;
String ster;
// This EUI must be in little-endian format, so least-significant-byte
// first. When copying an EUI from ttnctl output, this means to reverse
// the bytes. For TTN issued EUIs the last bytes should be 0xD5, 0xB3,
// 0x70.
static const u1_t PROGMEM APPEUI[8]={ 0x3E, 0x6E, 0x00, 0xD0, 0x7E, 0xD5, 0xB3, 0x70 };
void os_getArtEui (u1_t* buf) { memcpy_P(buf, APPEUI, 8);}
// This should also be in little endian format, see above.
static const u1_t PROGMEM DEVEUI[8]={ 0xF8, 0x62, 0xB9, 0xA8, 0x67, 0x94, 0x37, 0x00 };
void os_getDevEui (u1_t* buf) { memcpy_P(buf, DEVEUI, 8);}
// This key should be in big endian format (or, since it is not really a
// number but a block of memory, endianness does not really apply). In
// practice, a key taken from ttnctl can be copied as-is.
// The key shown here is the semtech default key.
static const u1_t PROGMEM APPKEY[16] ={ 0x07, 0x46, 0x80, 0x29, 0xB2, 0xC5, 0x20, 0x04, 0x9E, 0xC9, 0xD3, 0x4D, 0x04, 0x08, 0xDD, 0x4D };
void os_getDevKey (u1_t* buf) { memcpy_P(buf, APPKEY, 16);}
static byte mydata[40];
int temp;
int str;
static osjob_t sendjob;
// Schedul e TX every this many seconds (might become longer due to duty
// cycle limitations).
const unsigned TX_INTERVAL = 10;
// Pin mapping
const lmic_pinmap lmic_pins = {
.nss = 10,
.rxtx = LMIC_UNUSED_PIN,
.rst = A1,
.dio = {2, 3, 9},
};
void onEvent (ev_t ev) {
Serial.print(os_getTime());
Serial.print(": ");
switch(ev) {
case EV_SCAN_TIMEOUT:
Serial.println(F("EV_SCAN_TIMEOUT"));
break;
case EV_BEACON_FOUND:
Serial.println(F("EV_BEACON_FOUND"));
break;
case EV_BEACON_MISSED:
Serial.println(F("EV_BEACON_MISSED"));
break;
case EV_BEACON_TRACKED:
Serial.println(F("EV_BEACON_TRACKED"));
break;
case EV_JOINING:
Serial.println(F("EV_JOINING"));
break;
case EV_JOINED:
Serial.println(F("EV_JOINED"));
// Disable link check validation (automatically enabled
// during join, but not supported by TTN at this time).
LMIC_setLinkCheckMode(0);
break;
case EV_RFU1:
Serial.println(F("EV_RFU1"));
break;
case EV_JOIN_FAILED:
Serial.println(F("EV_JOIN_FAILED"));
break;
case EV_REJOIN_FAILED:
Serial.println(F("EV_REJOIN_FAILED"));
break;
break;
case EV_TXCOMPLETE:
Serial.println(F("EV_TXCOMPLETE (includes waiting for RX windows)"));
if (LMIC.txrxFlags & TXRX_ACK)
Serial.println(F("Received ack"));
if (LMIC.dataLen) {
Serial.println(F("Received "));
Serial.println(LMIC.dataLen);
Serial.println(F(" bytes of payload"));
}
// Schedule next transmission
os_setTimedCallback(&sendjob, os_getTime()+sec2osticks(TX_INTERVAL), do_send);
break;
case EV_LOST_TSYNC:
Serial.println(F("EV_LOST_TSYNC"));
break;
case EV_RESET:
Serial.println(F("EV_RESET"));
break;
case EV_RXCOMPLETE:
// data received in ping slot
Serial.println(F("EV_RXCOMPLETE"));
break;
case EV_LINK_DEAD:
Serial.println(F("EV_LINK_DEAD"));
break;
case EV_LINK_ALIVE:
Serial.println(F("EV_LINK_ALIVE"));
break;
default:
Serial.println(F("Unknown event"));
break;
}
}
void do_send(osjob_t* j){
// Check if there is not a current TX/RX job running
if (LMIC.opmode & OP_TXRXPEND) {
Serial.println(F("OP_TXRXPEND, not sending"));
} else {
// Prepare upstream data transmission at the next possible time.
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance= duration*0.034/2;
str=distance*2;
// str.getBytes(mydata,20);
// Prints the distance on the Serial Monitor
Serial.println(distance*2);
// LMIC_setTxData2(1, mydata, sizeof(mydata)-1, 0);
// call sensors.requestTemperatures() to issue a global temperature
// request to all devices on the bus
Serial.print(" Requesting temperatures...");
sensors.requestTemperatures(); // Send the command to get temperatures
Serial.println("DONE");
Serial.print("Temperature for Device 1 is: ");
Serial.print(sensors.getTempCByIndex(0)); // Why "byIndex"? */
temp=sensors.getTempCByIndex(0);
ster="\0";
ster+="{";
ster+="\"TEMP:\"";
ster+=temp;
ster+=",";
ster+="\"DIST:\"";
ster+=str;
ster+="}";
// ster+="}";
ster.getBytes(mydata,40);
LMIC_setTxData2(1, mydata, sizeof(mydata)-1, 0);
Serial.println(F("Packet queued"));
}
// Next TX is scheduled after TX_COMPLETE event.
}
void setup() {
Serial.begin(9600);
Serial.println(F("Starting"));
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
Serial.println("Dallas Temperature IC Control Library Demo");
// Start up the library
sensors.begin();
#ifdef VCC_ENABLE
// For Pinoccio Scout boards
pinMode(VCC_ENABLE, OUTPUT);
digitalWrite(VCC_ENABLE, HIGH);
delay(1000);
#endif
// LMIC init
os_init();
// Reset the MAC state. Session and pending data transfers will be discarded.
LMIC_reset();
// Start job (sending automatically starts OTAA too)
do_send(&sendjob);
}
void loop() {
os_runloop_once();
}
| [
"karthikeyan27898@gmail.com"
] | karthikeyan27898@gmail.com |
8470d357de708f227f83b0d8d484dd3910fb2b99 | 41e107a91f6307d3c78b211ff12afddc832d5926 | /sandbox/src/_obsolete/obsolete_PathfindingSimulation/scripts/pathfinding_manager.h | d9bdf3fd9909f8d8c22c139e8369cf8ecff52e40 | [
"Apache-2.0"
] | permissive | AdrianOrcik/ugine | 8e5bb43f0d9e32ff9be82389649728d5815221e9 | 4f5a9a5641c834834d9e18fc5b85b55140544568 | refs/heads/master | 2022-11-05T08:22:29.090685 | 2020-06-20T19:54:57 | 2020-06-20T19:54:57 | 245,837,032 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,749 | h | #pragma once
#include "ugine.h"
#include "../scripts/algos/pathfinding_algo.h"
#include "../scripts/node_element.h"
#include "../scripts/algos/dijkstra.h"
#include "../scripts/algos/a_star.h"
#include "../scripts/algos/bfs.h"
#include "../scripts/algos/dfs.h"
#include <iostream>
#include <vector>
#include <algorithm>
class PathfindingManager : public Ugine::ScriptComponent
{
public:
enum Type { DijkstraType, AStarType, BFSType, DFSType };
PathfindingManager()
{}
~PathfindingManager()
{
StopSimulation();
}
bool IsRunning() { return isRunning; }
void StopSimulation()
{
isRunning = false;
if (pfAlgo != nullptr) {
delete pfAlgo;
pfAlgo = nullptr;
}
}
void Simulate(std::vector<std::vector<NodeElement*>> grid, NodeElement* startNode, NodeElement* finalNode, Type type)
{
switch (type)
{
case Type::DijkstraType:
pfAlgo = DBG_NEW Dijkstra();
break;
case Type::AStarType:
pfAlgo = DBG_NEW AStar();
break;
case Type::BFSType:
pfAlgo = DBG_NEW BFS();
break;
case Type::DFSType:
pfAlgo = DBG_NEW DFS();
break;
}
pfAlgo->SetStartNode(startNode);
pfAlgo->SetFinalNode(finalNode);
pfAlgo->OnSimulationStart = std::bind(&PathfindingManager::SetStartRunning, this);
pfAlgo->OnSimulationDone = std::bind(&PathfindingManager::SetStopRunning, this);
pfAlgo->SetGrid(grid);
pfAlgo->Run();
}
// Inherited via ScriptComponent
virtual void OnInit() override
{}
virtual void OnUpdate(float Timestep) override
{}
virtual void OnActive() override
{}
virtual void OnDeactive() override
{}
private:
void SetStartRunning() { isRunning = true; }
void SetStopRunning() { StopSimulation(); }
private:
PathfindingAlgo* pfAlgo = nullptr;
bool isRunning = false;
}; | [
"adrian.orcik@gmail.com"
] | adrian.orcik@gmail.com |
a0337f8d7989888e39e4b4050306929796dd4e9c | 5ab928ad3b86e1e8687572e700fe2e3d0f314bc6 | /libNN/include/TMVAClassification.hpp | 8f2b67a00295d10a5dcc9be487bf668b8ddacbd5 | [] | no_license | ongbe/indicator-mva | e11b8c213eb34d18980cb205d8f0abb03b49c931 | 52a5ba5e8f9f879802f145911ff1832b1485f664 | refs/heads/master | 2021-06-01T19:14:18.526796 | 2016-08-13T21:14:12 | 2016-08-13T21:20:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,925 | hpp | #ifndef TMVAClassification_HPP
#define TMVAClassification_HPP 1
// STL include
#include <map>
#include <utility>
#include <vector>
#include <string>
// ROOT include
//#if not defined(__CINT__) || defined(__MAKECINT__)
#include "TMVA/Factory.h"
#include <TMVA/MethodTMlpANN.h>
#include <TMVA/Tools.h>
#include "TMVA/Types.h"
#include "TMVA/IMethod.h"
#include "TMVA/MethodBase.h"
//#endif
#include "TChain.h"
#include "TFile.h"
#include "TTree.h"
#include "TString.h"
#include "TObjString.h"
#include "TSystem.h"
#include "TROOT.h"
// local include
#include "DefinedMVAs.hpp"
namespace NN {
/** @class TMVAClassification TMVAClassification.hpp
*
* Class to train a TMVA classification.
*
* @author Matthew M Reid
* @date 2013-07-12
*/
class TMVAClassification {
public:
TMVAClassification( const std::vector< std::string >& mvaMethods, const std::vector< std::string >& inputvars, const std::string& outname = "TMVA.root" );
TMVAClassification( const std::vector< std::string >& mvaMethods, const std::map< std::string, std::string >& input_vars_options, const std::string& outname = "TMVA.root" );
~TMVAClassification();
// the classifier response
// "inputValues" is a vector of input values in the same order as the
// variables given to the constructor
// Set the input variable names.
void setVariables( const std::vector< std::string >& inputVars );
void setSpectators( const std::vector< std::string >& inputVars );
// Set the options for given mva.
void setOptions( const std::string& mvaMethod, const std::string& option ) ;
void setSignalAndBackgroundTrees( TTree* signal, TTree* background, const Double_t& signalWeight = 1.0, const Double_t& backgroundWeight = 1.0 );
void setMethodOption( const std::string& method, const std::string& option = "" );
void setBackgroundWeightExpression( const std::string& weight = "nsig_S_sw" );
void setSignalWeightExpression( const std::string& weight = "nbkg_B_sw" );
void prepareTestAndTrain( const std::string& splitOpts = "default" );
void bookMethods();
void basicSetup( TTree* signal, TTree* background, const std::string& sWeight = "", const std::string& bWeight = "", const Double_t signalWeight = 1.0, const Double_t& backgroundWeight = 1.0 );
bool train( const bool& optimise = false ) const;
private:
bool getType( const std::string& name, TMVA::Types::EMVA& type ) const ;
void summary() const;
TMVA::Factory *m_tmvaFactory;
bool m_variablesset, m_prepareTestAndTrain, m_methodset, m_sigandbackset;
std::vector< std::string > m_methods;
std::map< std::string, std::string > m_method_strings;
std::map< std::string, std::string > m_methods_options;
std::map< std::string, TMVA::MethodBase* > m_method_factory;
};
}
#endif // TMVAClassification_HPP
| [
"sullivan18@gmail.com"
] | sullivan18@gmail.com |
3139fd5afff8ea715833c0d90746cd6cb15a9847 | 610e58d4a13787ada0bf575199ac08e33492de03 | /superPrintclass.h | 595147c84cf3e76580027f30966ac84aa018fb33 | [] | no_license | carlosb6/factory-design-pattern-cpp | b90e43cc0e6ae48563bb0ade1ec71da28760c5e0 | e9618231471c1d0506790a41afb5b884d8d0e080 | refs/heads/master | 2022-04-26T20:04:49.958542 | 2020-04-30T07:17:43 | 2020-04-30T07:17:43 | 260,140,098 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 214 | h | #include <iostream>
struct PrintHandler {
PrintHandler() {
std::cout << "ctor" << std::endl;
}
virtual void print() = 0;
~PrintHandler() {
std::cout << "dtor" << std::endl;
}
};
| [
"antoniob6@outlook.com"
] | antoniob6@outlook.com |
4204c56c778f696aa5ee42686e0cdc0234727598 | 3b0e0479671b78e9b3354950dbe4e0c678966260 | /Examples/SDL/LazyFoo_SDL_Examples/18_key_states/18_key_states.cpp | a7e27dfcd95a551a1a723535b5b00fc52143fb63 | [] | no_license | aatwo/examples-and-tests | 67af5c8ebb0999e4555117b7642003335dd4b673 | b332274762bed6dfb40e6f0ab60959fcfc9c83b0 | refs/heads/master | 2022-04-03T23:16:58.596559 | 2020-01-19T13:27:36 | 2020-01-19T13:27:36 | 56,585,675 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,770 | cpp | /*This source code copyrighted by Lazy Foo' Productions (2004-2015)
and may not be redistributed without written permission.*/
//Using SDL, SDL_image, standard IO, and strings
#include <SDL2/SDL.h>
#include <SDL2/SDL_image.h>
#include <stdio.h>
#include <string>
//Screen dimension constants
const int SCREEN_WIDTH = 640;
const int SCREEN_HEIGHT = 480;
//Texture wrapper class
class LTexture
{
public:
//Initializes variables
LTexture();
//Deallocates memory
~LTexture();
//Loads image at specified path
bool loadFromFile( std::string path );
#ifdef _SDL_TTF_H
//Creates image from font string
bool loadFromRenderedText( std::string textureText, SDL_Color textColor );
#endif
//Deallocates texture
void free();
//Set color modulation
void setColor( Uint8 red, Uint8 green, Uint8 blue );
//Set blending
void setBlendMode( SDL_BlendMode blending );
//Set alpha modulation
void setAlpha( Uint8 alpha );
//Renders texture at given point
void render( int x, int y, SDL_Rect* clip = NULL, double angle = 0.0, SDL_Point* center = NULL, SDL_RendererFlip flip = SDL_FLIP_NONE );
//Gets image dimensions
int getWidth();
int getHeight();
private:
//The actual hardware texture
SDL_Texture* mTexture;
//Image dimensions
int mWidth;
int mHeight;
};
//Starts up SDL and creates window
bool init();
//Loads media
bool loadMedia();
//Frees media and shuts down SDL
void close();
//The window we'll be rendering to
SDL_Window* gWindow = NULL;
//The window renderer
SDL_Renderer* gRenderer = NULL;
//Scene textures
LTexture gPressTexture;
LTexture gUpTexture;
LTexture gDownTexture;
LTexture gLeftTexture;
LTexture gRightTexture;
LTexture::LTexture()
{
//Initialize
mTexture = NULL;
mWidth = 0;
mHeight = 0;
}
LTexture::~LTexture()
{
//Deallocate
free();
}
bool LTexture::loadFromFile( std::string path )
{
//Get rid of preexisting texture
free();
//The final texture
SDL_Texture* newTexture = NULL;
//Load image at specified path
SDL_Surface* loadedSurface = IMG_Load( path.c_str() );
if( loadedSurface == NULL )
{
printf( "Unable to load image %s! SDL_image Error: %s\n", path.c_str(), IMG_GetError() );
}
else
{
//Color key image
SDL_SetColorKey( loadedSurface, SDL_TRUE, SDL_MapRGB( loadedSurface->format, 0, 0xFF, 0xFF ) );
//Create texture from surface pixels
newTexture = SDL_CreateTextureFromSurface( gRenderer, loadedSurface );
if( newTexture == NULL )
{
printf( "Unable to create texture from %s! SDL Error: %s\n", path.c_str(), SDL_GetError() );
}
else
{
//Get image dimensions
mWidth = loadedSurface->w;
mHeight = loadedSurface->h;
}
//Get rid of old loaded surface
SDL_FreeSurface( loadedSurface );
}
//Return success
mTexture = newTexture;
return mTexture != NULL;
}
#ifdef _SDL_TTF_H
bool LTexture::loadFromRenderedText( std::string textureText, SDL_Color textColor )
{
//Get rid of preexisting texture
free();
//Render text surface
SDL_Surface* textSurface = TTF_RenderText_Solid( gFont, textureText.c_str(), textColor );
if( textSurface != NULL )
{
//Create texture from surface pixels
mTexture = SDL_CreateTextureFromSurface( gRenderer, textSurface );
if( mTexture == NULL )
{
printf( "Unable to create texture from rendered text! SDL Error: %s\n", SDL_GetError() );
}
else
{
//Get image dimensions
mWidth = textSurface->w;
mHeight = textSurface->h;
}
//Get rid of old surface
SDL_FreeSurface( textSurface );
}
else
{
printf( "Unable to render text surface! SDL_ttf Error: %s\n", TTF_GetError() );
}
//Return success
return mTexture != NULL;
}
#endif
void LTexture::free()
{
//Free texture if it exists
if( mTexture != NULL )
{
SDL_DestroyTexture( mTexture );
mTexture = NULL;
mWidth = 0;
mHeight = 0;
}
}
void LTexture::setColor( Uint8 red, Uint8 green, Uint8 blue )
{
//Modulate texture rgb
SDL_SetTextureColorMod( mTexture, red, green, blue );
}
void LTexture::setBlendMode( SDL_BlendMode blending )
{
//Set blending function
SDL_SetTextureBlendMode( mTexture, blending );
}
void LTexture::setAlpha( Uint8 alpha )
{
//Modulate texture alpha
SDL_SetTextureAlphaMod( mTexture, alpha );
}
void LTexture::render( int x, int y, SDL_Rect* clip, double angle, SDL_Point* center, SDL_RendererFlip flip )
{
//Set rendering space and render to screen
SDL_Rect renderQuad = { x, y, mWidth, mHeight };
//Set clip rendering dimensions
if( clip != NULL )
{
renderQuad.w = clip->w;
renderQuad.h = clip->h;
}
//Render to screen
SDL_RenderCopyEx( gRenderer, mTexture, clip, &renderQuad, angle, center, flip );
}
int LTexture::getWidth()
{
return mWidth;
}
int LTexture::getHeight()
{
return mHeight;
}
bool init()
{
//Initialization flag
bool success = true;
//Initialize SDL
if( SDL_Init( SDL_INIT_VIDEO ) < 0 )
{
printf( "SDL could not initialize! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Set texture filtering to linear
if( !SDL_SetHint( SDL_HINT_RENDER_SCALE_QUALITY, "1" ) )
{
printf( "Warning: Linear texture filtering not enabled!" );
}
//Create window
gWindow = SDL_CreateWindow( "SDL Tutorial", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN );
if( gWindow == NULL )
{
printf( "Window could not be created! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Create vsynced renderer for window
gRenderer = SDL_CreateRenderer( gWindow, -1, SDL_RENDERER_ACCELERATED | SDL_RENDERER_PRESENTVSYNC );
if( gRenderer == NULL )
{
printf( "Renderer could not be created! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Initialize renderer color
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
//Initialize PNG loading
int imgFlags = IMG_INIT_PNG;
if( !( IMG_Init( imgFlags ) & imgFlags ) )
{
printf( "SDL_image could not initialize! SDL_image Error: %s\n", IMG_GetError() );
success = false;
}
}
}
}
return success;
}
bool loadMedia()
{
//Loading success flag
bool success = true;
//Load press texture
if( !gPressTexture.loadFromFile( "18_key_states/press.png" ) )
{
printf( "Failed to load press texture!\n" );
success = false;
}
//Load up texture
if( !gUpTexture.loadFromFile( "18_key_states/up.png" ) )
{
printf( "Failed to load up texture!\n" );
success = false;
}
//Load down texture
if( !gDownTexture.loadFromFile( "18_key_states/down.png" ) )
{
printf( "Failed to load down texture!\n" );
success = false;
}
//Load left texture
if( !gLeftTexture.loadFromFile( "18_key_states/left.png" ) )
{
printf( "Failed to load left texture!\n" );
success = false;
}
//Load right texture
if( !gRightTexture.loadFromFile( "18_key_states/right.png" ) )
{
printf( "Failed to load right texture!\n" );
success = false;
}
return success;
}
void close()
{
//Free loaded images
gPressTexture.free();
gUpTexture.free();
gDownTexture.free();
gLeftTexture.free();
gRightTexture.free();
//Destroy window
SDL_DestroyRenderer( gRenderer );
SDL_DestroyWindow( gWindow );
gWindow = NULL;
gRenderer = NULL;
//Quit SDL subsystems
IMG_Quit();
SDL_Quit();
}
int main( int argc, char* args[] )
{
//Start up SDL and create window
if( !init() )
{
printf( "Failed to initialize!\n" );
}
else
{
//Load media
if( !loadMedia() )
{
printf( "Failed to load media!\n" );
}
else
{
//Main loop flag
bool quit = false;
//Event handler
SDL_Event e;
//Current rendered texture
LTexture* currentTexture = NULL;
//While application is running
while( !quit )
{
//Handle events on queue
while( SDL_PollEvent( &e ) != 0 )
{
//User requests quit
if( e.type == SDL_QUIT )
{
quit = true;
}
}
//Set texture based on current keystate
const Uint8* currentKeyStates = SDL_GetKeyboardState( NULL );
if( currentKeyStates[ SDL_SCANCODE_UP ] )
{
currentTexture = &gUpTexture;
}
else if( currentKeyStates[ SDL_SCANCODE_DOWN ] )
{
currentTexture = &gDownTexture;
}
else if( currentKeyStates[ SDL_SCANCODE_LEFT ] )
{
currentTexture = &gLeftTexture;
}
else if( currentKeyStates[ SDL_SCANCODE_RIGHT ] )
{
currentTexture = &gRightTexture;
}
else
{
currentTexture = &gPressTexture;
}
//Clear screen
SDL_SetRenderDrawColor( gRenderer, 0xFF, 0xFF, 0xFF, 0xFF );
SDL_RenderClear( gRenderer );
//Render current texture
currentTexture->render( 0, 0 );
//Update screen
SDL_RenderPresent( gRenderer );
}
}
}
//Free resources and close SDL
close();
return 0;
}
| [
"aaron.wi@gmail.com"
] | aaron.wi@gmail.com |
8a1ba8c84764448abe1011a7bc2b82d6fd90be82 | a2111a80faf35749d74a533e123d9da9da108214 | /raw/pmsb13/pmsb13-data-20130530/sources/qhuulr654q26tohr/2013-05-20T00-50-38.328+0200/sandbox/PMSB_group6/include/seqan/GCluster/GAssignCluster.h | 7a912d8a9d285169ff771d4e1a5c087874275ee3 | [
"MIT"
] | permissive | bkahlert/seqan-research | f2c550d539f511825842a60f6b994c1f0a3934c2 | 21945be863855077eec7cbdb51c3450afcf560a3 | refs/heads/master | 2022-12-24T13:05:48.828734 | 2015-07-01T01:56:22 | 2015-07-01T01:56:22 | 21,610,669 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 582 | h | //Autor:Jakob
#ifndef GINGER_CLUSTER_ASSIGNCLUSTER_H_
#define GINGER_CLUSTER_ASSIGNCLUSTER_H_
namespace seqan {
template<typename TStream, typename TRecord>
int assignToCluster(TStream &outStream, TRecord &newRecord,
TRecord &clusterRecord) {
CharString newId = newRecord.id;
append(newId, "$");
append(newId, clusterRecord.id);
append(newId, "$");
if (writeRecord(outStream, newId, newRecord.seq) != 0) {
std::cerr << "ERROR: Could not write to file!\n";
return 1;
}
return 0;
}
} // namespace seqan
#endif // GINGER_CLUSTER_ASSIGNCLUSTER_H_
| [
"mail@bkahlert.com"
] | mail@bkahlert.com |
ed0c37f950afcd375587ed722f74542c4ac9a506 | b0045127ccb46966fb9cd74c2485ed6fd81c8c9a | /testOpenCV/ArgClasses/DemoModeVisitor.h | d80c8aab88aa30d67b8c65374cc65b8643f0fef9 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | humorbei/ThicknessGauge | f51482793a50482bb5766f359b8d0336f464f444 | 815e867239ff182415426f9224a035b9f59d941d | refs/heads/master | 2023-07-01T11:25:44.896364 | 2018-05-23T07:35:37 | 2018-05-23T07:35:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | h | #pragma once
#include <tclap/Visitor.h>
#include <iostream>
#include "../namespaces/tg.h"
using namespace tg;
class DemoModeVisitor : public TCLAP::Visitor {
public:
void visit() override {
log_time << "Demo mode set." << std::endl;
}
};
| [
"rudzen@gmail.com"
] | rudzen@gmail.com |
92a55cb6d4efcbca751310cf67c37ef9e8209cd5 | e5794d04dd17e2b83c926fa67e271aea70960536 | /MyChatServer/serverwidget.h | afad30dfbc24581c77aae3b36009b4a3bb059e8e | [] | no_license | VlullabyV/QT_Chating | ae65254d8fd174e24ec24e7250ab81158bb6801c | 547066acc68d61c109dd03fa1b616eec9a91e81b | refs/heads/master | 2021-06-18T23:23:28.570920 | 2017-06-29T06:52:04 | 2017-06-29T06:52:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 756 | h | #ifndef SERVERWIDGET_H
#define SERVERWIDGET_H
#include <QWidget>
#include "QtNetwork"
#include "QTime"
#include "QTimer"
namespace Ui {
class ServerWidget;
}
class ServerWidget : public QWidget
{
Q_OBJECT
public:
explicit ServerWidget(QWidget *parent = 0);
~ServerWidget();
private slots:
void serverProcessPendingDatagram(void);
void showCurrentTime(void);
void on_serverSend_pbt_clicked();
void on_openServer_pbt_clicked();
void on_closeServer_pbt_clicked();
private:
Ui::ServerWidget *ui;
QUdpSocket* _serverReciever;
QUdpSocket* _serverSender;
QString _currentTime;
QTimer* _timer;
QString _oldMessage;
QString _newMessage;
qint16 _serverBindPort;
};
#endif // SERVERWIDGET_H
| [
"chao1202016@outlook.com"
] | chao1202016@outlook.com |
c07b489344aa36a3c1be4178042788a705e1b6c9 | 3842f09fc479f947d0c9c9e7a8ad9b20be6a6db8 | /456/456.cpp | b4fdf082d5351fd3e79b5f7e924a3b55f8e40277 | [] | no_license | brobbio/leetcode_practice | 718c42b14f0ee37f5eda51668535845aae639a7d | b38a4456eb7616a8da2c4bc000003e5ccaf49c2f | refs/heads/master | 2023-07-27T16:25:18.650187 | 2021-09-02T21:03:53 | 2021-09-02T21:03:53 | 393,519,014 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 606 | cpp | bool find132pattern(vector<int>& nums) {
vector<int> premin;
stack<int> s;
premin.push_back(nums[0]);
for(int i = 1;i<nums.size();i++){
premin.push_back(min(premin[i-1], nums[i]));
}
stack<int> right;
for(int j=nums.size()-1;j>=1;j--){
while(right.size()>0 && right.top()<=premin[j-1]){
right.pop();
}
if(premin[j-1]<nums[j] && right.size()>0 && right.top()<nums[j]){
return true;
}
right.push(nums[j]);
}
return false;
}
| [
"brobbio@hotmail.com"
] | brobbio@hotmail.com |
a2519eb4abc99c7fa40638b66574fed09525b68e | babb754e41adc329a823e6fdbe04d384ee20448d | /QvtkData/QvtkPolyDataActor.h | 1d47e5d92d016734bbf43bdb426975e5ea2da03b | [] | no_license | wuzhuobin/QvtkUtil | 15679ff0b6a11a8a72a2b42d3335a6591634a56c | a15d9a454a82c1221db436d0c1a5b025a6c4049a | refs/heads/master | 2021-06-03T20:15:58.680820 | 2021-01-28T01:36:31 | 2021-01-28T01:36:31 | 130,037,280 | 2 | 2 | null | 2021-01-28T01:36:32 | 2018-04-18T09:22:15 | C++ | UTF-8 | C++ | false | false | 960 | h | #ifndef __Qvtk_POLY_DATA_ACTOR_H__
#define __Qvtk_POLY_DATA_ACTOR_H__
// me
#include "QvtkProp.h"
class vtkActor;
class vtkPolyDataMapper;
class vtkClipPolyData;
class vtkBox;
namespace Q {
namespace vtk{
class QVTKDATA_EXPORT PolyDataActor: public Prop
{
Q_OBJECT;
Q_VTK_DATA_H(PolyDataActor)
public:
PolyDataActor();
virtual ~PolyDataActor() override;
virtual void printSelf() const override;
virtual vtkActor* getActor() const;
virtual void propMatrixUpdate() override;
public slots:
virtual void reset() override;
virtual void setDisplayRegion(const double region[6]) override;
virtual void setRenderDataSet(DataSet* data) override;
virtual void setOpacity(double opacity) override;
virtual void setColor(const double rgb[3]);
protected:
virtual Data* newInstance() const override { return new PolyDataActor; }
vtkBox* box;
vtkClipPolyData* clipper;
vtkPolyDataMapper* polyDataMapper;
};
}
}
#endif // !__Qvtk_POLY_DATA_ACTOR_H__
| [
"jiejin2022@163.com"
] | jiejin2022@163.com |
7a02c60b3e87791630091cebab90dff4e78e542c | 9427126563527b81f1c4d3fb60c38bdc29e810d0 | /leetcode/160-intersection-of-two-linked-lists.cpp | c72dc3b6057fb96f1667fe30819a55d113b0a911 | [] | no_license | gongzhitaao/oj | afe217753f112e445f2b75a5800c0fc2862688b2 | fbc771a3b239616be48b1b2fcaa39da9d8ce2a14 | refs/heads/master | 2021-01-17T02:59:56.456256 | 2018-03-07T01:59:01 | 2018-03-07T01:59:01 | 16,234,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 725 | cpp | /**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
ListNode *getIntersectionNode(ListNode *headA, ListNode *headB) {
int a = 0, b = 0;
for (ListNode *i = headA; i; i = i->next) ++a;
for (ListNode *i = headB; i; i = i->next) ++b;
ListNode *pa = headA, *pb = headB;
if (b - a < 0)
for (int i = 0; i < a - b; ++i) pa = pa->next;
else
for (int i = 0; i < b - a; ++i) pb = pb->next;
ListNode *ret = NULL;
for ( ; pa && pb; pa = pa->next, pb = pb->next) {
if (pa == pb) {
ret = pa;
break;
}
}
return ret;
}
};
| [
"zhitaao.gong@gmail.com"
] | zhitaao.gong@gmail.com |
73c93a278c3fb33090ea4ded803b7e71935ee9d6 | 265329d9ed5a0444a8bb3cf1ce6f71435bfdbc58 | /CopyAnInt/source/CopyAnInt.cpp | 067a981779eb576959fddc9a6c5707bd7f28b57b | [] | no_license | CiaranWelsh/BitsAndBobsInC | 2ea69fd4222d1b40ceaf052a9ada0a7d01a0cab3 | 8a02a5961d756a32930e2086fc427894767ccdd6 | refs/heads/master | 2020-09-13T05:51:49.953132 | 2020-04-01T10:39:45 | 2020-04-01T10:39:45 | 222,672,350 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 364 | cpp |
#include <iostream>
#include <vector>
using namespace std;
class ID{
public:
int id;
ID(int id) : id(id){}
};
int main(){
int id = 0;
for (int i=0 ; i < 10; ++i){
int new_id = id;
std::cout << id << " " << new_id << std::endl;
std::cout << &id << " " << &new_id << std::endl;
id += 1;
}
return 0;
};
| [
"ciaran.welsh@newcastle.ac.uk"
] | ciaran.welsh@newcastle.ac.uk |
a019a7c377fb5726c83881c90b0e645aed540530 | 0876883eb0d16d6c17078b7054c0d64b538f716a | /RemoteEye/RemoteEye.ino | c94f71cb7769641952ebdab0baede33b6949627b | [] | no_license | dschnabel/ArduinoProject | cfc98eb858c8b8f5b925adac92af20034c8b1583 | 99b3cfec3113d89c9d0eda418236af5c4ee90cc0 | refs/heads/master | 2020-03-28T17:00:11.661778 | 2019-07-28T00:51:10 | 2019-07-28T00:51:10 | 148,749,276 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,549 | ino | #include "Arduino.h"
#include <avr/wdt.h>
#include <ArduCAM.h>
#include "cam.h"
#include "HologramSIMCOM.h"
#include "Time.h"
#include "LowPower.h"
typedef struct {
time_t timestamp;
} configuration;
#define TX_PIN 3
#define RX_PIN 2
SoftwareSerial mySerial(TX_PIN,RX_PIN);
HologramSIMCOM Hologram(&mySerial);
configuration config;
time_t last_config_update = 0;
byte loop_count = 0;
byte time_adjust_count = 0;
float voltage;
#define CLIENT 0
#define MODULES_SWITCH 9
#define VOLTAGE_READ_ENABLE_PIN 4
#define VOLTAGE_READ_PIN A3
#define LED_PIN 13
#define RESET_PIN 8
#define PHOTO_MAX_PUBLISHED_SIZE 50000 // workaround to break out of loop if there's a problem with the camera
#define ACTION_CONNECT 1
#define ACTION_DISCONNECT 2
#define ACTION_PHOTO 3
#define ACTION_TEST 4
#define ACTION_SUBSCRIBE 5
#define ACTION_UNSUBSCRIBE 6
#define ACTION_MODULES_ON 7
#define ACTION_MODULES_OFF 8
#define ACTION_PRINT_CONFIG 9
#define ACTION_SEND_VOLTAGE 10
#define MSG_TYPE_CLIENT_SUBSCRIBED 0
#define MSG_TYPE_PHOTO_DATA 1
#define MSG_TYPE_PHOTO_DONE 2
#define MSG_TYPE_NEW_CONFIG 3
#define MSG_TYPE_VOLTAGE 4
int freeRam () {
extern int __heap_start, *__brkval;
int v;
return (int) &v - (__brkval == 0 ? (int) &__heap_start : (int) __brkval);
}
byte _get_code() {
if (mySerial.available()) {
int c = mySerial.read();
switch (c) {
case 'c': return ACTION_CONNECT;
case 'd': return ACTION_DISCONNECT;
case 'p': return ACTION_PHOTO;
case 't': return ACTION_TEST;
case 's': return ACTION_SUBSCRIBE;
case 'u': return ACTION_UNSUBSCRIBE;
case '9': return ACTION_MODULES_ON;
case '0': return ACTION_MODULES_OFF;
case '!': return ACTION_PRINT_CONFIG;
case 'v': return ACTION_SEND_VOLTAGE;
}
}
return 0;
}
bool _action_modules_on() {
if (!Hologram.isOn()) {
digitalWrite(MODULES_SWITCH, LOW);
delay(50);
mySerial.println(F("MODULES ON"));
digitalWrite(MODULES_SWITCH, HIGH);
//camera_setup(OV2640_160x120);
camera_setup(OV2640_640x480);
if (!Hologram.begin(57600)) {
return false;
}
}
switch (Hologram.cellStrength()) {
case 0: mySerial.println(F("No signal"));break;
case 1: mySerial.println(F("Very poor signal strength")); break;
case 2: mySerial.println(F("Poor signal strength")); break;
case 3: mySerial.println(F("Good signal strength")); break;
case 4: mySerial.println(F("Very good signal strength")); break;
case 5: mySerial.println(F("Excellent signal strength"));
}
return true;
}
void _action_modules_off() {
camera_stop();
byte pin[] = {11, 12, 13, 5, A4, A5};
byte pinCount = sizeof(pin) / sizeof(pin[0]);
for (byte i = 0; i < pinCount; i++) {
pinMode(pin[i], OUTPUT);
digitalWrite(pin[i], LOW);
}
mySerial.println(F("MODULES OFF"));
digitalWrite(MODULES_SWITCH, LOW);
}
bool _action_mqtt_connect() {
return Hologram.mqttConnect();
}
void _action_mqtt_disconnect() {
Hologram.mqttDisconnect();
}
bool _action_take_photo() {
camera_capture_photo();
byte messageNr = 0, packetNr = 0;
// get UNIX timestamp
time_t timestamp = nowAtCurrentTimezone();
// put as many variables as possible in new context to prevent stack from being exhausted too soon
if (1) {
byte data[32];
int32_t photo_size = camera_get_photo_size();
if (photo_size == 0) {
mySerial.println(F("bad photo size"));
return false;
}
int bufferRemaining = Hologram.mqttInitMessage(CLIENT, messageNr, MSG_TYPE_PHOTO_DATA, packetNr++, photo_size);
// fetch camera data and send to modem
int32_t sent = 0;
while (sent < photo_size) {
int32_t photo_remaining = photo_size - sent;
byte len = sizeof(data) < photo_remaining ? sizeof(data) : photo_remaining;
camera_read_captured_data(data, len);
if (bufferRemaining >= len) {
bufferRemaining = Hologram.mqttAppendPayload(data, len);
} else {
if (bufferRemaining > 0) {
bufferRemaining = Hologram.mqttAppendPayload(data, bufferRemaining);
}
Hologram.mqttPublish();
Hologram.mqttInitMessage(CLIENT, messageNr, MSG_TYPE_PHOTO_DATA, packetNr++, photo_remaining - bufferRemaining);
bufferRemaining = Hologram.mqttAppendPayload(&data[bufferRemaining], len - bufferRemaining);
}
sent += len;
}
Hologram.mqttPublish();
} // end of context block
// notify done
bool ret = Hologram.mqttPublish(CLIENT, messageNr, MSG_TYPE_PHOTO_DONE, packetNr++, (const byte*)×tamp, sizeof(time_t));
if (!ret) {
mySerial.println(F("error notifying! (a)"));
return false;
}
camera_set_capture_done();
// give module enough time to send data
delay(3000);
mySerial.println(F("photo taken!"));
return true;
}
bool _action_mqtt_subscribe() {
// note: a bug in SIMCOM module prevents a message from being received if we publish a message
// AFTER subscribing to a topic. Do not publish between subscribing and unsubscribing.
return Hologram.mqttSubscribe(CLIENT);
}
void _action_mqtt_unsubscribe() {
Hologram.mqttUnsubscribe(CLIENT);
}
bool _action_update_config(byte *state, uint16_t *reportedSize, char *responseString,
uint8_t responseStringLen, byte *index) {
bool done = Hologram.mqttBufferState(state, reportedSize,
responseString, responseStringLen, index);
if (done) {
memset(&config, 0, sizeof(configuration));
memcpy(&config, responseString, sizeof(configuration));
memset(responseString, 0, responseStringLen);
mySerial.println(F("update done"));
}
return done;
}
bool _action_retrieve_config() {
uint16_t reportedSize = 0;
char responseString[sizeof(configuration) + 1];
byte index = 0;
byte state = 0;
memset(responseString, 0, sizeof(responseString));
if (!_action_mqtt_subscribe()) {
return false;
}
bool ret = true;
time_t t = now();
wdt_enable(WDTO_8S);
while (Hologram.mqttIsListening()) {
wdt_reset();
if (_action_update_config(&state, &reportedSize, responseString, sizeof(responseString), &index)) {
_action_mqtt_unsubscribe();
}
if (now() - t > 10) {
mySerial.println(F("no config received in 10 seconds. Giving up."));
_action_mqtt_unsubscribe();
ret = false;
}
}
wdt_disable();
last_config_update = Hologram.updateTime();
if (last_config_update == 0) {
ret = false;
}
return ret;
}
void _action_led_ok() {
pinMode(LED_PIN, OUTPUT);
for (int i = 0; i < 5; i++) {
digitalWrite(LED_PIN, HIGH);
delay(100);
digitalWrite(LED_PIN, LOW);
delay(70);
}
}
void _action_led_error() {
pinMode(LED_PIN, OUTPUT);
while (1) {
digitalWrite(LED_PIN, HIGH);
delay(100);
digitalWrite(LED_PIN, LOW);
delay(70);
digitalWrite(LED_PIN, HIGH);
delay(400);
digitalWrite(LED_PIN, LOW);
delay(70);
}
}
bool _action_startup_and_connect_modules() {
if (!_action_modules_on()) {
_action_modules_off();
return false;
}
if (!_action_mqtt_connect()) {
_action_modules_off();
return false;
}
return true;
}
void _action_disconnect_and_shutdown_modules() {
_action_mqtt_disconnect();
_action_modules_off();
}
bool _action_time_for_photo(time_t now) {
if (config.timestamp > 0 && config.timestamp <= now) {
config.timestamp = 0;
return true;
}
return false;
}
void _action_retry_later(unsigned int delay_sec) {
config.timestamp = now() + delay_sec;
}
void _action_update_voltage() {
digitalWrite(VOLTAGE_READ_ENABLE_PIN, HIGH);
delay(200);
long analog = 0;
// to counter noise, collect a few values and average out
for (int i=0;i<100;i++) {
analog += analogRead(VOLTAGE_READ_PIN);
}
analog /= 100;
digitalWrite(VOLTAGE_READ_ENABLE_PIN, LOW);
int adjustment = 8; // change to match multimeter value
voltage = 0;
if (analog > 0) {
voltage = ((analog + adjustment) * 3.3 / 1023.0) * (10070+4700) / 4700;
}
}
bool _action_send_voltage() {
return Hologram.mqttPublish(CLIENT, 0, MSG_TYPE_VOLTAGE, 0, (const byte*)&voltage, sizeof(float));
}
void _input_action() {
byte code = _get_code();
switch (code) {
case ACTION_TEST: {
// add code here
break;
}
case ACTION_MODULES_ON:
_action_modules_on();
break;
case ACTION_MODULES_OFF:
_action_modules_off();
break;
case ACTION_CONNECT:
_action_mqtt_connect();
break;
case ACTION_DISCONNECT:
_action_mqtt_disconnect();
break;
case ACTION_PHOTO:
_action_take_photo();
break;
case ACTION_SUBSCRIBE:
_action_mqtt_subscribe();
break;
case ACTION_UNSUBSCRIBE:
_action_mqtt_unsubscribe();
break;
case ACTION_PRINT_CONFIG:
mySerial.println(config.timestamp);
mySerial.print(F("Current time: "));mySerial.println(now());
break;
case ACTION_SEND_VOLTAGE:
_action_update_voltage();
_action_send_voltage();
}
}
//#####################################################################
void setup() {
digitalWrite(RESET_PIN, HIGH);
delay(200);
pinMode(RESET_PIN, OUTPUT);
mySerial.begin(57600);
while(!mySerial);
pinMode(MODULES_SWITCH, OUTPUT);
pinMode(VOLTAGE_READ_ENABLE_PIN, OUTPUT);
pinMode(LED_PIN, OUTPUT);
// sleep a few seconds to allow for flashing
digitalWrite(LED_PIN, HIGH);
delay(3000);
digitalWrite(LED_PIN, LOW);
Hologram.debug();
_action_update_voltage();
if (!_action_startup_and_connect_modules()) {
_action_led_error();
}
if (!_action_send_voltage()) {
_action_led_error();
}
if (!_action_retrieve_config()) {
_action_led_error();
}
_action_disconnect_and_shutdown_modules();
mySerial.print(F("Free RAM: ")); mySerial.println(freeRam());
_action_led_ok();
}
void loop() {
// _input_action();
//-------- sleep here to save energy -----------
// delay(8000);
LowPower.powerDown(SLEEP_8S, ADC_OFF, BOD_OFF);
if (time_adjust_count++ < 11) {
adjustTime(8);
} else {
time_adjust_count = 0;
// we're losing a second every now and then, so compensate for that
adjustTime(9);
}
//----------------------------------------------
// only check every 32 seconds
if (loop_count++ >= 3) {
loop_count = 0;
time_t n = now();
if (_action_time_for_photo(n)) {
_action_update_voltage();
if (_action_startup_and_connect_modules()) {
if (_action_send_voltage() && _action_retrieve_config() && _action_take_photo()) {
_action_disconnect_and_shutdown_modules();
} else {
_action_modules_off();
_action_retry_later(300); // retry in 5 min
}
} else {
_action_retry_later(300); // retry in 5 min
mySerial.println(F("Could not startup/connect SIM. No photo taken."));
}
//mySerial.print(F("Photo time: "));mySerial.println(now());
}
// make sure we get settings at least once a day (24h = 86400s)
if (n > last_config_update + 86400) {
_action_update_voltage();
if (_action_startup_and_connect_modules()) {
if (_action_send_voltage() && _action_retrieve_config()) {
_action_disconnect_and_shutdown_modules();
} else {
_action_modules_off();
last_config_update += 300; // retry in 5 min
mySerial.println(F("Could not update config."));
}
} else {
last_config_update += 300; // retry in 5 min
mySerial.println(F("Could not startup/connect SIM. Config not updated."));
}
//mySerial.print(F("Config update time: "));mySerial.println(now());
}
}
}
| [
"daniel@solarwinds.cloud"
] | daniel@solarwinds.cloud |
64d9b56aa70f24f5f5b57d86f4646ec13caf71a7 | cae8beb7de70e4361a5071e33b023b3cd4f3031e | /BomberMan/release/moc_boomup.cpp | 5a5911bbe88c14538ad15cb7f64e5b7e4113fcb7 | [] | no_license | AmazingPangWei/BomberMan | 78cfd471223a83e47a4978a71e267d82d8c0f24b | 31ff4b6a6a25b57c42c4492d7a5efca06546185d | refs/heads/master | 2020-04-25T08:40:57.312247 | 2019-02-26T07:57:47 | 2019-02-26T07:57:47 | 172,655,153 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,533 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'boomup.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.7.0)
**
** WARNING! All changes made in this file will be lost!
*****************************************************************************/
#include "../boomup.h"
#include <QtCore/qbytearray.h>
#include <QtCore/qmetatype.h>
#if !defined(Q_MOC_OUTPUT_REVISION)
#error "The header file 'boomup.h' doesn't include <QObject>."
#elif Q_MOC_OUTPUT_REVISION != 67
#error "This file was generated using the moc from 5.7.0. It"
#error "cannot be used with the include files from this version of Qt."
#error "(The moc has changed too much.)"
#endif
QT_BEGIN_MOC_NAMESPACE
struct qt_meta_stringdata_BoomUp_t {
QByteArrayData data[1];
char stringdata0[7];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
qptrdiff(offsetof(qt_meta_stringdata_BoomUp_t, stringdata0) + ofs \
- idx * sizeof(QByteArrayData)) \
)
static const qt_meta_stringdata_BoomUp_t qt_meta_stringdata_BoomUp = {
{
QT_MOC_LITERAL(0, 0, 6) // "BoomUp"
},
"BoomUp"
};
#undef QT_MOC_LITERAL
static const uint qt_meta_data_BoomUp[] = {
// content:
7, // revision
0, // classname
0, 0, // classinfo
0, 0, // methods
0, 0, // properties
0, 0, // enums/sets
0, 0, // constructors
0, // flags
0, // signalCount
0 // eod
};
void BoomUp::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
{
Q_UNUSED(_o);
Q_UNUSED(_id);
Q_UNUSED(_c);
Q_UNUSED(_a);
}
const QMetaObject BoomUp::staticMetaObject = {
{ &QLabel::staticMetaObject, qt_meta_stringdata_BoomUp.data,
qt_meta_data_BoomUp, qt_static_metacall, Q_NULLPTR, Q_NULLPTR}
};
const QMetaObject *BoomUp::metaObject() const
{
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
}
void *BoomUp::qt_metacast(const char *_clname)
{
if (!_clname) return Q_NULLPTR;
if (!strcmp(_clname, qt_meta_stringdata_BoomUp.stringdata0))
return static_cast<void*>(const_cast< BoomUp*>(this));
return QLabel::qt_metacast(_clname);
}
int BoomUp::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
{
_id = QLabel::qt_metacall(_c, _id, _a);
if (_id < 0)
return _id;
return _id;
}
QT_END_MOC_NAMESPACE
| [
"1832394515@qq.com"
] | 1832394515@qq.com |
41bc5a08b45c09c7ccddf298ca392ceb515068e7 | 6ffd23679939f59f0a09c9507a126ba056b239d7 | /dnn/src/cuda/convolution3d/forward/1x1x1.cpp | efe40afc07c3696afbbda7693ab731deac4ae36a | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0"
] | permissive | MegEngine/MegEngine | 74c1c9b6022c858962caf7f27e6f65220739999f | 66b79160d35b2710c00befede0c3fd729109e474 | refs/heads/master | 2023-08-23T20:01:32.476848 | 2023-08-01T07:12:01 | 2023-08-11T06:04:12 | 248,175,118 | 5,697 | 585 | Apache-2.0 | 2023-07-19T05:11:07 | 2020-03-18T08:21:58 | C++ | UTF-8 | C++ | false | false | 2,546 | cpp | #include "./algo.h"
#include "src/cuda/handle.h"
#include "src/cuda/utils.cuh"
using namespace megdnn;
using namespace cuda;
using namespace convolution3d;
bool Convolution3DForwardImpl::Algo1x1x1::is_available(const SizeArgs& args) const {
auto&& fm = args.filter_meta;
const size_t MAX_WORKSPACE_SIZE = 2147483648; // 2 * 1024^3
if (get_workspace_in_bytes(args) > MAX_WORKSPACE_SIZE) {
return false;
}
return fm.format == Param::Format::NCDHW &&
(fm.dtype_enum == DTypeEnum::Float32 ||
fm.dtype_enum == DTypeEnum::Float16) &&
fm.spatial_ndim == 3 && fm.group == 1 && fm.dilation[0] == 1 &&
fm.dilation[1] == 1 && fm.dilation[2] == 1 && fm.spatial[0] == 1 &&
fm.spatial[1] == 1 && fm.spatial[2] == 1 && fm.padding[0] == 0 &&
fm.padding[1] == 0 && fm.padding[2] == 0 && fm.stride[0] == 1 &&
fm.stride[1] == 1 && fm.stride[2] == 1;
}
void Convolution3DForwardImpl::Algo1x1x1::extract_matmul_layouts(
const SizeArgs& args, TensorLayout& A, TensorLayout& B, TensorLayout& C) {
auto&& fm = args.filter_meta;
A = {{fm.ocpg, fm.icpg}, DType::from_enum(fm.dtype_enum)};
B.ndim = 2;
B.shape[0] = args.src_layout->shape[1];
B.shape[1] = args.src_layout->shape[2] * args.src_layout->shape[3] *
args.src_layout->shape[4];
B.stride[0] = args.src_layout->stride[1];
B.stride[1] = 1;
B.dtype = args.src_layout->dtype;
C = {{args.dst_layout->shape[1], B.shape[1]}, args.dst_layout->dtype};
}
size_t Convolution3DForwardImpl::Algo1x1x1::get_workspace_in_bytes(
const SizeArgs& args) const {
TensorLayout A, B, C;
extract_matmul_layouts(args, A, B, C);
return args.handle->matmul_opr()->get_workspace_in_bytes(A, B, C);
}
void Convolution3DForwardImpl::Algo1x1x1::exec(const ExecArgs& args) const {
TensorND A, B, C;
extract_matmul_layouts(args, A.layout, B.layout, C.layout);
A.reset_ptr(args.filter_tensor->raw_ptr());
B.reset_ptr(args.src_tensor->raw_ptr());
C.reset_ptr(args.dst_tensor->raw_ptr());
size_t batch = args.src_layout->shape[0];
auto mm = args.handle->matmul_opr();
auto strd_B = args.src_layout->stride[0] * args.src_layout->dtype.size(),
strd_C = args.dst_layout->stride[0] * args.dst_layout->dtype.size();
for (size_t i = 0; i < batch; ++i) {
mm->exec(A, B, C, args.workspace);
incr_refp(B.get_ref_ptr(), strd_B);
incr_refp(C.get_ref_ptr(), strd_C);
}
}
// vim: syntax=cpp.doxygen
| [
"megengine@megvii.com"
] | megengine@megvii.com |
f5e90849776a10a44fb46a4cd1b2a967523123f2 | dba75db08c135a8115ad7c88d4aefc0b809c7a90 | /WebClient/webclient_menu/webclient_menu.ino | 640351d9fbd166238c504fe9f9930d6f52ffcd4d | [] | no_license | AndreiRadchenko/WebMicGain | f1dbf08e241ae693cb99705a76fe4c26aae8f5b4 | 6c4d40ebe513320326d0ae25d3ee84547284535d | refs/heads/master | 2022-12-12T09:37:47.235236 | 2020-09-13T13:36:20 | 2020-09-13T13:36:20 | 276,845,441 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,520 | ino | #include <Arduino.h>
/********************
Arduino generic menu system
U8G2 menu example
U8G2: https://github.com/olikraus/u8g2
Oct. 2016 Stephen Denne https://github.com/datacute
Based on example from Rui Azevedo - ruihfazevedo(@rrob@)gmail.com
Original from: https://github.com/christophepersoz
menu on U8G2 device
output: Wemos D1 mini OLED Shield (SSD1306 64x48 I2C) + Serial
input: Serial + encoder
mcu: nano328p
*/
#include <menu.h>
#include <menuIO/u8g2Out.h>
#include <TimerOne.h>
#include <ClickEncoder.h>
#include <menuIO/clickEncoderIn.h>
#include <menuIO/encoderIn.h>
#include <menuIO/keyIn.h>
#include <menuIO/chainStream.h>
#include <menuIO/serialOut.h>
#include <menuIO/serialIn.h>
using namespace Menu;
#define LEDPIN LED_BUILTIN
// #define USE_PCD8544
#define USE_SSD1306
#if defined(USE_PCD8544)
// rotary encoder pins
// #define encA 2
// #define encB 3
// #define encBtn 4
#include <SPI.h>
#define USE_HWSPI
#define U8_DC 9
#define U8_CS 8
#define U8_RST 7
#define fontName u8g2_font_5x7_tf
#define fontX 5
#define fontY 9
#define offsetX 0
#define offsetY 0
#define U8_Width 84
#define U8_Height 48
U8G2_PCD8544_84X48_1_4W_HW_SPI u8g2(U8G2_R0, U8_CS, U8_DC , U8_RST);
#elif defined(USE_SSD1306)
// rotary encoder pins
#define encA 2
#define encB 3
#define encBtn 4
#include <Wire.h>
#define fontName u8g2_font_7x13_mf
#define fontX 7
#define fontY 16
#define offsetX 0
#define offsetY 3
#define U8_Width 128
#define U8_Height 64
#define USE_HWI2C
// U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R0);//, SCL, SDA);
// U8G2_SSD1306_128X64_NONAME_F_HW_I2C u8g2(U8G2_R2, U8X8_PIN_NONE, 4, 5);
// U8G2_SSD1306_128X64_VCOMH0_F_HW_I2C u8g2(U8G2_R2, U8X8_PIN_NONE, 4, 5);
U8G2_SSD1306_128X64_NONAME_1_HW_I2C u8g2(U8G2_R0, U8X8_PIN_NONE, 4, 5);
#else
#error DEFINE YOUR OUTPUT HERE.
#endif
// define menu colors --------------------------------------------------------
//each color is in the format:
// {{disabled normal,disabled selected},{enabled normal,enabled selected, enabled editing}}
// this is a monochromatic color table
const colorDef<uint8_t> colors[6] MEMMODE={
{{0,0},{0,1,1}},//bgColor
{{1,1},{1,0,0}},//fgColor
{{1,1},{1,0,0}},//valColor
{{1,1},{1,0,0}},//unitColor
{{0,1},{0,0,1}},//cursorColor
{{1,1},{1,0,0}},//titleColor
};
result doAlert(eventMask e, prompt &item);
int test=55;
int ledCtrl=HIGH;
result myLedOn() {
ledCtrl=HIGH;
return proceed;
}
result myLedOff() {
ledCtrl=LOW;
return proceed;
}
TOGGLE(ledCtrl,setLed,"Led: ",doNothing,noEvent,noStyle//,doExit,enterEvent,noStyle
,VALUE("On",HIGH,doNothing,noEvent)
,VALUE("Off",LOW,doNothing,noEvent)
);
int selTest=0;
SELECT(selTest,selMenu,"Select",doNothing,noEvent,noStyle
,VALUE("Zero",0,doNothing,noEvent)
,VALUE("One",1,doNothing,noEvent)
,VALUE("Two",2,doNothing,noEvent)
);
int chooseTest=-1;
CHOOSE(chooseTest,chooseMenu,"Choose",doNothing,noEvent,noStyle
,VALUE("First",1,doNothing,noEvent)
,VALUE("Second",2,doNothing,noEvent)
,VALUE("Third",3,doNothing,noEvent)
,VALUE("Last",-1,doNothing,noEvent)
);
// //customizing a prompt look!
// //by extending the prompt class
// class altPrompt:public prompt {
// public:
// altPrompt(constMEM promptShadow& p):prompt(p) {}
// Used printTo(navRoot &root,bool sel,menuOut& out, idx_t idx,idx_t len,idx_t panelNr) override {
// return out.printRaw(F("special prompt!"),len);;
// }
// };
MENU(subMenu,"Sub-Menu",doNothing,noEvent,noStyle
,OP("Sub1",doNothing,noEvent)
// ,altOP(altPrompt,"",doNothing,noEvent)
,EXIT("<Back")
);
uint16_t hrs=0;
uint16_t mins=0;
//define a pad style menu (single line menu)
//here with a set of fields to enter a date in YYYY/MM/DD format
altMENU(menu,timeMenu,"Time",doNothing,noEvent,noStyle,(systemStyles)(_asPad|Menu::_menuData|Menu::_canNav|_parentDraw)
,FIELD(hrs,"",":",0,11,1,0,doNothing,noEvent,noStyle)
,FIELD(mins,"","",0,59,10,1,doNothing,noEvent,wrapStyle)
);
char* constMEM hexDigit MEMMODE="0123456789ABCDEF";
char* constMEM hexNr[] MEMMODE={"0","x",hexDigit,hexDigit};
char buf1[]="0x11";
MENU(mainMenu,"Main menu",doNothing,noEvent,wrapStyle
,OP("Op1",doNothing,noEvent)
,OP("Op2",doNothing,noEvent)
//,FIELD(test,"Test","%",0,100,10,1,doNothing,noEvent,wrapStyle)
,SUBMENU(timeMenu)
,SUBMENU(subMenu)
,SUBMENU(setLed)
,OP("LED On",myLedOn,enterEvent)
,OP("LED Off",myLedOff,enterEvent)
,SUBMENU(selMenu)
,SUBMENU(chooseMenu)
,OP("Alert test",doAlert,enterEvent)
,EDIT("Hex",buf1,hexNr,doNothing,noEvent,noStyle)
,EXIT("<Exit")
);
#define MAX_DEPTH 2
// Encoder /////////////////////////////////////
//#define encA 2
//#define encB 3
//this encoder has a button here
//#define encBtn 4
encoderIn<encA,encB> encoder;//simple quad encoder driver
encoderInStream<encA,encB> encStream(encoder, 1);// simple quad encoder fake Stream
//a keyboard with only one key as the encoder button
keyMap encBtn_map[]={{-encBtn,defaultNavCodes[enterCmd].ch}};//negative pin numbers use internal pull-up, this is on when low
keyIn<1> encButton(encBtn_map);//1 is the number of keys
// menuIn* inputsList[]={&encBuitton,&Serial};
// chainStream<2> in(inputsList);//1 is the number of inputs
//ClickEncoder clickEncoder(encA,encB,encBtn,2);
//ClickEncoder clickEncoder(A1,A0,A2);
//ClickEncoderStream encStream(clickEncoder,1);
//MENU_INPUTS(in,&encStream);
//void timerIsr() {clickEncoder.service();}
serialIn serial(Serial);
//MENU_INPUTS(in,&serial);
MENU_INPUTS(in,&encStream,&encButton,&serial);
MENU_OUTPUTS(out,MAX_DEPTH
,U8G2_OUT(u8g2,colors,fontX,fontY,offsetX,offsetY,{0,0,U8_Width/fontX,U8_Height/fontY})
,SERIAL_OUT(Serial)
);
NAVROOT(nav,mainMenu,MAX_DEPTH,in,out);
result alert(menuOut& o,idleEvent e) {
if (e==idling) {
o.setCursor(0,0);
o.print("alert test");
o.setCursor(0,1);
o.print("press [select]");
o.setCursor(0,2);
o.print("to continue...");
}
return proceed;
}
result doAlert(eventMask e, prompt &item) {
nav.idleOn(alert);
return proceed;
}
//when menu is suspended
result idle(menuOut& o,idleEvent e) {
o.clear();
switch(e) {
case idleStart:o.println("suspending menu!");break;
case idling:o.println("suspended...");break;
case idleEnd:o.println("resuming menu.");break;
}
return proceed;
}
void setup() {
Serial.begin(115200);
while(!Serial);
Serial.println("menu 4.x test");Serial.flush();
encButton.begin();
encoder.begin();
pinMode(LEDPIN,OUTPUT);//cant use pin 13 when using hw spi
// and on esp12 i2c can be on pin 2, and that is also led pin
// so check first if this is adequate for your board
#if defined(USE_HWSPI)
SPI.begin();
u8g2.begin();
#elif defined(USE_HWI2C)
Wire.begin();
u8g2.begin();
#else
#error "please choose your interface (I2c,SPI)"
#endif
u8g2.setFont(fontName);
// u8g2.setBitmapMode(0);
// disable second option
mainMenu[1].enabled=disabledStatus;
nav.idleTask=idle;//point a function to be used when menu is suspended
Serial.println("setup done.");Serial.flush();
//Timer1.initialize();
//Timer1.attachInterrupt(timerIsr, 1000);
delay(2000);
}
void loop() {
nav.doInput();
// digitalWrite(LEDPIN, ledCtrl);
if (nav.changed(0)) {//only draw if menu changed for gfx device
//change checking leaves more time for other tasks
u8g2.firstPage();
do nav.doOutput(); while(u8g2.nextPage());
}
//delay(100);//simulate other tasks delay
}
| [
"d4100kx@gmail.com"
] | d4100kx@gmail.com |
7ce3a915e10d0d30b839f5db22c85bf8ac426f0e | cb6ef1231dfa36b8da05eeffb94dc883dcc11bb5 | /Source code/Peer/deleteSourceWindow.h | e74d19b3b864a18e09c10a3e9fe0392b6afd99a3 | [] | no_license | mightyvoice/Simple-Downloader | e6bdaec63bfb4e7bf6db6cd0c7221a26ebb05109 | c6b0f50ed7c11147772b4cd7d7fa148e2d6a6dfb | refs/heads/master | 2021-01-13T02:19:47.831833 | 2015-04-03T19:11:36 | 2015-04-03T19:11:36 | 33,377,911 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 452 | h | #ifndef DELETEWINDOW_H
#define DELETEWINDOW_H
#include "include_file.h"
class DeleteWindow : public QDialog
{
Q_OBJECT
public:
DeleteWindow( QWidget *parent = 0);
// ~DeleteWindow();
private:
QLabel *label_num;
QSpinBox *sBox_num;
QPushButton *button_del;
signals:
void delete_source_signal( quint16);
private slots:
void click_button_del();
};
#endif // DELETEWINDOW_H
| [
"rpbloom@gmail.com"
] | rpbloom@gmail.com |
78b5782e548e1bf389b6d1003f24cbcd22632129 | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /external/chromium_org/net/http/md4.h | b416e261de0c1022a843b222ad388a22ac5fe637 | [
"MIT",
"BSD-3-Clause"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C++ | false | false | 2,852 | h | // This is mozilla/security/manager/ssl/src/md4.h, CVS rev. 1.1, with trivial
// changes to port it to our source tree.
//
// WARNING: MD4 is cryptographically weak. Do not use MD4 except in NTLM
// authentication.
/* vim:set ts=2 sw=2 et cindent: */
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (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.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is Mozilla.
*
* The Initial Developer of the Original Code is IBM Corporation.
* Portions created by IBM Corporation are Copyright (C) 2003
* IBM Corporation. All Rights Reserved.
*
* Contributor(s):
* Darin Fisher <darin@meer.net>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
#ifndef NET_HTTP_MD4_H_
#define NET_HTTP_MD4_H_
#include "base/basictypes.h"
namespace net {
namespace weak_crypto {
/**
* MD4Sum - computes the MD4 sum over the input buffer per RFC 1320
*
* @param input
* buffer containing input data
* @param inputLen
* length of input buffer (number of bytes)
* @param result
* 16-byte buffer that will contain the MD4 sum upon return
*
* NOTE: MD4 is superceded by MD5. do not use MD4 unless required by the
* protocol you are implementing (e.g., NTLM requires MD4).
*
* NOTE: this interface is designed for relatively small buffers. A streaming
* interface would make more sense if that were a requirement. Currently, this
* is good enough for the applications we care about.
*/
void MD4Sum(const uint8 *input, uint32 inputLen, uint8 *result);
} // namespace net::weak_crypto
} // namespace net
#endif // NET_HTTP_MD4_H_
| [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
2830090b69565dc3b2052a4b3fd6338b58dd2178 | 8f57428e5b9177f8e7029dd9925f8a5c71c45abc | /Project Euler/Project Euler 2.cpp | 81404b21918765d1c6f3472318f277569aa08ef0 | [] | no_license | Manav-Aggarwal/competitive-programming | a047c63f730299ce16b6bd59f7d3b9830df8966e | 8a429aa280b8fddf8baa08821dd8c22cdff2067e | refs/heads/master | 2021-01-19T01:09:03.084880 | 2017-04-04T19:52:12 | 2017-04-04T19:52:12 | 87,227,814 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 396 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ull unsigned long long
int main()
{
int T;
cin >> T;
while(T--)
{
ull N, sum = 0;
cin >> N;
ull first = 1, second = 1, next=0;
while(next < N)
{
if(!(next&1))
{
sum += next;
}
next = first + second;
first = second;
second = next;
}
cout << sum << endl;
}
return 0;
}
| [
"Manav@Manavs-MacBook-Air.local"
] | Manav@Manavs-MacBook-Air.local |
c20784f374b7ebd12fc2753e6aa29d6d4068df75 | d1dedd03bbda4f7be39b07771a04d1d3aa469d34 | /concrete_element.h | 959225bb91f522c63175eb6f55b66c6a58b0a805 | [] | no_license | syhtxwd/VisitorPattern | 9c7fb325b71124e60f956983134eac652d908dad | 59e9d871f5bff837fbeb96837ec6bfbdcba146d6 | refs/heads/master | 2020-06-22T22:41:35.825610 | 2019-07-23T11:51:18 | 2019-07-23T11:51:18 | 198,420,052 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 630 | h | // concrete_element.h
#ifndef CONCRETE_ELEMENT_H
#define CONCRETE_ELEMENT_H
#include "element.h"
#include "visitor.h"
#include <iostream>
// 钟楼
class BellTower : public IPlace
{
public:
virtual void Accept(IVisitor *visitor) override
{
std::cout << "Bell Tower is accepting visitor." << std::endl;
visitor->Visit(this);
}
};
// 兵马俑
class TerracottaWarriors : public IPlace
{
public:
virtual void Accept(IVisitor *visitor) override
{
std::cout << "Terracotta Warriors is accepting visitor." << std::endl;
visitor->Visit(this);
}
};
#endif // CONCRETE_ELEMENT_H
| [
"1270265446@qq.com"
] | 1270265446@qq.com |
418ab02a2d802ecbca6c93b7adcf43b27304c674 | 326175d1e0636a754052f0ea2c54bec47af60e42 | /benchmarks/spec-cpu2006-redist/original/483.xalanc/xml-xalan/c/src/xalanc/XalanSourceTree/XalanSourceTreeElementANS.hpp | 9378cf91ca61f497a0bb9449038b75735b70a458 | [
"Apache-2.0"
] | permissive | jasemabeed114/ECEN676 | d32911c73e7eb5f1d7bf1ee758d6a7b652d62695 | a225f3cd18f99e4b6384e4bb323ac4c84b7ba0e5 | refs/heads/master | 2022-01-09T00:19:09.996068 | 2018-11-25T20:35:47 | 2018-11-25T20:35:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,139 | hpp | /*
* Copyright 1999-2004 The Apache Software Foundation.
*
* 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.
*/
#if !defined(XALANSOURCETREEELEMENTANS_HEADER_GUARD_1357924680)
#define XALANSOURCETREEELEMENTANS_HEADER_GUARD_1357924680
#include <xalanc/XalanSourceTree/XalanSourceTreeDefinitions.hpp>
#include <xalanc/XalanSourceTree/XalanSourceTreeElementA.hpp>
XALAN_CPP_NAMESPACE_BEGIN
class XALAN_XALANSOURCETREE_EXPORT XalanSourceTreeElementANS : public XalanSourceTreeElementA
{
public:
/**
* Constructor.
*
* @param theTagName The tag name of the element
* @param theLocalName The local name of the attribute
* @param theNamespaceURI The namespace URI of the attribute
* @param thePrefix The namespace prefix of the attribute
* @param theOwnerDocument The document that owns the instance
* @param theAttributes An array of pointers to the attribute instances for the element
* @param theAttributeCount The number of attributes.
* @param theParentNode The parent node, if any.
* @param thePreviousSibling The previous sibling, if any.
* @param theNextSibling The next sibling, if any.
* @param theIndex The document-order index of the node.
*/
XalanSourceTreeElementANS(
const XalanDOMString& theTagName,
const XalanDOMString& theLocalName,
const XalanDOMString& theNamespaceURI,
const XalanDOMString& thePrefix,
XalanSourceTreeDocument* theOwnerDocument,
XalanSourceTreeAttr** theAttributes,
AttributesCountType theAttributeCount,
XalanNode* theParentNode = 0,
XalanNode* thePreviousSibling = 0,
XalanNode* theNextSibling = 0,
IndexType theIndex = 0);
virtual
~XalanSourceTreeElementANS();
#if defined(XALAN_NO_COVARIANT_RETURN_TYPE)
virtual XalanNode*
#else
virtual XalanSourceTreeElementANS*
#endif
cloneNode(bool deep) const;
virtual const XalanDOMString&
getNamespaceURI() const;
virtual const XalanDOMString&
getPrefix() const;
virtual const XalanDOMString&
getLocalName() const;
protected:
XalanSourceTreeElementANS(
const XalanSourceTreeElementANS& theSource,
bool deep);
XalanSourceTreeElementANS(
const XalanSourceTreeElementA& theSource,
bool deep);
private:
// Not implemented...
XalanSourceTreeElementANS&
operator=(const XalanSourceTreeElementANS& theSource);
bool
operator==(const XalanSourceTreeElementANS& theRHS) const;
// Data members...
const XalanDOMString& m_localName;
const XalanDOMString& m_prefix;
const XalanDOMString& m_namespaceURI;
};
XALAN_CPP_NAMESPACE_END
#endif // !defined(XALANSOURCETREEELEMENTANS_HEADER_GUARD_1357924680)
| [
"chandrahas@main-10-231-162-222.tamulink.tamu.edu"
] | chandrahas@main-10-231-162-222.tamulink.tamu.edu |
778407c1956f052a101c74020c115db4bf0847d7 | cb80a8562d90eb969272a7ff2cf52c1fa7aeb084 | /inletTest3/0.083/T | 5ea912a4daf4a9ac3fb94d41aabe131d7bf17d65 | [] | no_license | mahoep/inletCFD | eb516145fad17408f018f51e32aa0604871eaa95 | 0df91e3fbfa60d5db9d52739e212ca6d3f0a28b2 | refs/heads/main | 2023-08-30T22:07:41.314690 | 2021-10-14T19:23:51 | 2021-10-14T19:23:51 | 314,657,843 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 131,453 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2006 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "0.083";
object T;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 0 1 0 0 0];
internalField nonuniform List<scalar>
16277
(
298.839
298.839
298.839
298.839
298.839
298.839
298.839
298.84
298.841
298.844
298.847
298.851
298.854
298.858
298.862
298.866
298.87
298.874
298.879
298.883
298.888
298.893
298.898
298.903
298.909
298.914
298.92
298.926
298.932
298.938
298.945
298.951
298.957
298.964
298.971
298.978
298.985
298.992
298.999
299.006
299.013
299.021
299.028
299.035
299.043
299.05
299.058
299.065
299.073
299.08
299.088
299.095
299.102
299.11
299.117
299.124
299.131
299.139
299.146
299.152
299.159
299.166
299.172
299.179
299.185
299.191
299.197
299.203
299.209
299.214
299.22
299.225
299.23
299.235
299.24
299.244
299.248
299.252
299.256
299.26
299.264
299.268
299.271
299.273
299.273
299.274
299.273
299.273
299.273
299.273
299.273
299.274
299.276
299.279
299.285
299.291
299.316
299.322
299.29
299.281
299.281
299.292
299.331
299.341
299.295
299.282
299.282
299.298
299.346
299.353
299.301
299.284
299.286
299.304
299.355
299.359
299.308
299.289
299.291
299.311
299.361
299.363
299.314
299.293
299.296
299.316
299.364
299.365
299.319
299.298
299.3
299.321
299.365
299.366
299.324
299.303
299.305
299.326
299.366
299.367
299.328
299.307
299.309
299.33
299.367
299.368
299.332
299.312
299.314
299.334
299.368
299.369
299.336
299.316
299.318
299.337
299.369
299.369
299.34
299.321
299.322
299.341
299.37
299.371
299.343
299.325
299.327
299.344
299.371
299.372
299.347
299.329
299.331
299.348
299.372
299.374
299.35
299.334
299.335
299.351
299.374
299.376
299.354
299.338
299.34
299.355
299.376
299.378
299.358
299.343
299.345
299.359
299.378
299.38
299.362
299.348
299.35
299.363
299.381
299.383
299.366
299.353
299.355
299.368
299.384
299.386
299.371
299.358
299.36
299.372
299.387
299.39
299.376
299.363
299.365
299.377
299.391
299.393
299.38
299.369
299.371
299.382
299.394
299.397
299.386
299.375
299.377
299.387
299.398
299.402
299.391
299.381
299.383
299.393
299.403
299.406
299.397
299.387
299.389
299.398
299.407
299.411
299.403
299.394
299.396
299.404
299.412
299.416
299.409
299.401
299.403
299.411
299.418
299.422
299.415
299.408
299.41
299.417
299.423
299.427
299.422
299.415
299.418
299.424
299.429
299.433
299.429
299.423
299.425
299.431
299.435
299.44
299.436
299.431
299.433
299.438
299.442
299.446
299.444
299.439
299.442
299.446
299.448
299.453
299.452
299.447
299.45
299.454
299.455
299.46
299.46
299.456
299.459
299.462
299.463
299.468
299.468
299.465
299.468
299.47
299.47
299.476
299.476
299.474
299.477
299.479
299.478
299.484
299.485
299.484
299.487
299.488
299.486
299.492
299.494
299.493
299.496
299.497
299.494
299.5
299.503
299.503
299.506
299.506
299.502
299.508
299.512
299.513
299.516
299.515
299.511
299.517
299.521
299.522
299.525
299.524
299.519
299.525
299.53
299.532
299.534
299.533
299.527
299.533
299.539
299.541
299.544
299.541
299.535
299.541
299.547
299.55
299.552
299.549
299.543
299.548
299.555
299.558
299.56
299.557
299.55
299.555
299.562
299.565
299.567
299.564
299.556
299.561
299.568
299.572
299.574
299.569
299.562
299.566
299.573
299.578
299.579
299.574
299.567
299.569
299.577
299.582
299.582
299.578
299.57
299.572
299.58
299.585
299.585
299.58
299.572
299.573
299.581
299.586
299.585
299.58
299.573
299.573
299.58
299.585
299.583
299.578
299.572
299.571
299.578
299.583
299.58
299.575
299.569
299.568
299.574
299.579
299.574
299.57
299.564
299.563
299.568
299.573
299.568
299.563
299.559
299.557
299.561
299.565
299.56
299.556
299.553
299.551
299.554
299.557
299.551
299.548
299.546
299.543
299.545
299.548
299.541
299.539
299.538
299.536
299.536
299.538
299.531
299.53
299.531
299.528
299.527
299.528
299.521
299.52
299.523
299.521
299.518
299.518
299.511
299.511
299.515
299.513
299.509
299.508
299.501
299.503
299.508
299.506
299.5
299.498
299.492
299.495
299.501
299.5
299.492
299.489
299.483
299.487
299.495
299.493
299.485
299.481
299.476
299.481
299.489
299.488
299.479
299.474
299.469
299.475
299.484
299.483
299.473
299.468
299.464
299.47
299.48
299.479
299.468
299.462
299.459
299.465
299.476
299.475
299.464
299.458
299.455
299.462
299.473
299.472
299.461
299.454
299.451
299.459
299.47
299.469
299.458
299.451
299.449
299.456
299.467
299.466
299.455
299.448
299.446
299.454
299.465
299.464
299.453
299.446
299.445
299.452
299.463
299.462
299.452
299.444
299.443
299.45
299.461
299.461
299.451
299.442
299.441
299.449
299.461
299.46
299.449
299.44
299.44
299.447
299.459
299.458
299.448
299.44
299.44
299.446
299.456
299.453
299.447
299.441
299.442
299.445
299.452
299.451
299.445
299.442
299.442
299.444
299.448
299.449
299.445
299.442
299.441
299.443
299.448
299.449
299.444
299.441
299.439
299.442
299.45
299.451
299.443
299.438
299.435
299.442
299.454
299.453
299.443
299.434
299.434
299.443
299.453
299.45
299.442
299.434
299.434
299.442
299.451
299.45
299.442
299.434
299.433
299.442
299.452
299.452
299.441
299.433
299.432
299.441
299.452
299.451
299.441
299.431
299.434
299.439
299.446
299.443
299.437
299.435
299.434
299.437
299.441
299.431
299.431
299.431
299.435
299.44
299.431
299.42
299.431
299.432
299.437
299.43
299.424
299.422
299.422
299.423
299.423
299.423
299.424
299.425
299.425
299.427
299.428
299.43
299.432
299.434
299.436
299.44
299.443
299.447
299.462
299.472
299.425
299.463
299.501
299.478
299.458
299.443
299.475
299.469
299.437
299.486
299.475
299.458
299.456
299.479
299.501
299.497
299.476
299.461
299.472
299.472
299.471
299.477
299.473
299.469
299.469
299.473
299.478
299.477
299.472
299.468
299.469
299.471
299.473
299.472
299.471
299.469
299.468
299.47
299.47
299.472
299.471
299.468
299.469
299.472
299.473
299.473
299.472
299.469
299.47
299.472
299.472
299.47
299.471
299.47
299.47
299.471
299.47
299.47
299.471
299.47
299.47
299.472
299.47
299.472
299.472
299.469
299.469
299.474
299.476
299.48
299.476
299.471
299.47
299.475
299.48
299.48
299.476
299.472
299.472
299.476
299.481
299.481
299.477
299.473
299.473
299.478
299.482
299.482
299.478
299.473
299.473
299.478
299.483
299.483
299.478
299.473
299.475
299.479
299.483
299.477
299.477
299.475
299.474
299.475
299.474
299.474
299.476
299.474
299.472
299.475
299.473
299.474
299.475
299.472
299.472
299.475
299.476
299.474
299.475
299.472
299.474
299.475
299.474
299.472
299.475
299.474
299.474
299.476
299.473
299.474
299.477
299.474
299.474
299.477
299.474
299.481
299.48
299.475
299.474
299.482
299.488
299.49
299.484
299.477
299.478
299.486
299.492
299.493
299.486
299.479
299.479
299.487
299.494
299.494
299.488
299.481
299.482
299.488
299.492
299.491
299.488
299.483
299.483
299.488
299.489
299.488
299.487
299.481
299.481
299.486
299.486
299.486
299.486
299.481
299.482
299.487
299.486
299.486
299.488
299.483
299.483
299.489
299.488
299.493
299.491
299.481
299.481
299.491
299.498
299.498
299.492
299.483
299.484
299.492
299.497
299.495
299.492
299.485
299.485
299.493
299.495
299.497
299.495
299.486
299.485
299.495
299.5
299.499
299.494
299.484
299.48
299.489
299.497
299.491
299.484
299.474
299.474
299.483
299.485
299.483
299.484
299.478
299.481
299.489
299.485
299.492
299.497
299.485
299.487
299.502
299.506
299.513
299.503
299.488
299.486
299.501
299.512
299.506
299.493
299.478
299.473
299.488
299.498
299.497
299.488
299.472
299.474
299.493
299.505
299.51
299.496
299.48
299.481
299.497
299.51
299.507
299.493
299.48
299.474
299.479
299.481
299.477
299.474
299.459
299.45
299.474
299.489
299.492
299.474
299.449
299.453
299.474
299.494
299.49
299.471
299.452
299.445
299.464
299.488
299.481
299.456
299.436
299.427
299.449
299.475
299.474
299.447
299.424
299.418
299.442
299.474
299.47
299.438
299.415
299.412
299.435
299.468
299.463
299.433
299.411
299.41
299.433
299.463
299.471
299.435
299.41
299.409
299.446
299.502
299.549
299.47
299.41
299.412
299.486
299.562
299.546
299.489
299.414
299.422
299.481
299.456
299.378
299.475
299.446
299.482
299.451
299.318
299.44
299.11
299.581
299.433
299.488
299.505
299.469
299.435
299.429
299.439
299.459
299.506
299.54
299.462
299.44
299.445
299.469
299.53
299.502
299.459
299.451
299.417
299.457
299.515
299.597
299.486
299.399
299.455
299.498
299.561
299.407
299.492
299.513
299.527
299.477
299.349
299.223
299.431
299.543
299.685
298.931
299.528
299.427
299.54
299.517
299.487
299.421
299.344
299.502
299.442
299.42
299.412
299.452
299.551
299.568
299.449
299.42
299.4
299.447
299.623
299.593
299.431
299.426
299.446
299.435
299.55
299.332
299.837
299.309
299.5
299.505
299.545
299.525
299.498
299.488
299.494
299.502
299.482
299.456
299.505
299.506
299.53
299.51
299.451
299.344
299.471
299.551
299.705
298.967
299.732
299.582
299.593
299.524
299.535
299.504
299.466
299.481
299.532
299.526
299.556
299.545
299.459
299.422
299.531
299.581
299.763
298.961
299.783
299.514
299.617
299.569
299.557
299.545
299.496
299.538
299.562
299.577
299.637
299.493
299.439
299.875
298.897
299.787
299.595
299.647
299.685
299.579
299.563
299.571
299.579
299.59
299.632
299.646
299.598
299.59
299.604
299.64
299.735
299.736
299.644
299.611
299.643
299.632
299.751
299.501
300.137
299.501
299.742
299.694
299.702
299.702
299.743
299.753
299.763
299.762
299.757
299.768
299.78
299.798
299.849
299.85
299.859
299.86
299.868
299.873
299.817
299.795
299.77
299.739
299.735
299.745
299.619
299.604
299.627
299.5
299.521
299.531
299.477
299.475
299.487
299.426
299.428
299.426
299.401
299.413
299.449
299.358
299.379
299.385
299.427
299.443
299.406
300.334
298.118
299.693
299.349
299.623
299.082
299.382
299.367
299.407
299.345
299.376
299.367
299.374
299.363
299.337
299.35
299.363
299.382
299.386
299.351
299.336
299.352
299.37
299.403
299.408
299.391
299.358
299.332
299.348
299.404
299.314
299.346
299.427
299.371
299.207
299.168
299.188
299.338
299.406
299.313
299.396
299.457
299.641
299.589
299.336
299.297
299.373
299.537
299.658
299.385
299.153
299.213
299.551
299.653
299.505
299.332
299.257
299.174
299.34
299.552
299.628
299.539
299.263
299.272
299.366
299.54
299.465
299.341
299.249
299.322
299.401
299.457
299.395
299.367
299.335
299.346
299.382
299.413
299.621
299.538
299.337
299.69
298.393
300.206
299.317
299.389
299.457
299.57
299.325
299.328
298.759
299.962
299.188
299.329
299.327
299.299
299.469
299.488
299.29
299.666
298.841
300.137
299.604
299.449
299.403
299.463
299.345
299.464
298.911
299.838
299.143
299.251
299.315
299.231
299.425
299.387
299.381
299.092
300.12
299.108
299.548
299.342
299.286
299.185
299.454
299.637
300.204
298.868
299.487
299.283
299.289
299.633
299.402
299.262
299.284
299.631
298.479
299.787
299.356
299.371
299.364
299.345
299.343
299.167
299.842
298.117
299.692
299.305
299.508
298.981
299.26
299.408
299.433
299.351
299.435
299.376
299.394
299.404
299.318
299.367
299.439
299.457
299.423
299.303
299.249
299.279
299.323
299.43
299.297
299.247
299.266
299.266
299.261
299.238
299.26
299.264
299.244
299.238
299.303
299.303
299.281
299.262
299.245
299.084
299.324
299.539
299.666
299.561
299.165
299.11
299.251
299.521
299.327
299.256
299.208
299.53
297.988
299.783
298.836
299.411
299.258
299.298
299.151
299.005
299.16
299.268
299.272
299.282
299.283
299.177
299.222
299.271
299.288
299.26
299.258
299.285
299.278
299.311
299.238
299.564
298.446
299.876
299.187
299.383
299.219
299.26
299.224
299.329
299.256
299.228
299.193
299.188
299.238
299.245
299.266
299.257
299.235
299.209
299.253
299.306
299.259
299.293
299.259
299.594
298.365
299.811
299.113
299.413
299.246
299.299
299.241
299.258
299.227
299.229
299.198
299.189
299.234
299.226
299.204
299.205
299.2
299.157
299.246
299.197
299.218
299.19
299.343
298.869
300.258
298.417
299.586
298.819
299.194
299.073
299.193
299.45
299.282
299.064
299.079
298.986
299.199
299.436
300.016
298.664
299.286
299.014
299.313
299.242
299.218
299.109
299.061
299.05
299.079
299.118
299.143
299.127
299.128
298.961
299.474
298.741
299.151
299.033
299.141
299.129
299.16
299.141
299.147
299.116
299.098
299.111
299.154
299.259
298.865
299.802
298.891
299.076
298.945
299.444
299.296
299.159
299.05
299.054
299.059
299.202
299.197
299.112
299.089
299.308
298.448
299.496
298.857
299.257
299.074
299.111
299.045
299.023
299.013
299.11
299.08
299.138
299.135
299.15
298.455
300.32
298.69
299.119
298.388
299.863
299.362
299.119
298.827
298.924
298.874
299.207
299.16
298.989
298.978
298.968
298.981
299.071
299.109
299.052
298.974
298.894
299.186
298.909
299.067
298.898
298.967
298.932
298.965
299.03
298.994
298.96
298.94
298.999
299.011
299.137
298.347
300.313
298.581
299.073
298.284
299.871
299.365
299.106
298.802
298.888
298.849
299.231
299.127
298.926
298.929
298.936
298.928
299.022
299.075
299.008
298.905
299.136
298.25
299.558
298.801
299.182
298.856
298.958
298.918
298.958
298.935
298.962
298.925
298.941
298.965
298.964
298.963
298.94
298.913
298.959
298.971
299.029
298.527
299.591
298.731
298.962
298.677
299.293
299.062
298.973
298.861
298.863
298.852
299.014
299.015
298.902
298.873
298.846
298.857
298.936
298.994
298.923
298.853
299.02
298.424
299.308
298.802
299.043
298.808
298.875
298.876
298.923
298.904
298.877
298.839
298.842
298.886
298.893
298.875
298.83
298.824
298.816
298.898
298.913
299.715
297.839
299.124
298.658
299.411
298.37
298.876
298.732
298.913
298.805
298.867
298.795
298.819
298.861
298.803
298.774
298.786
298.826
298.86
298.847
298.779
299.109
297.717
299.724
298.333
299.364
298.612
298.855
298.72
298.797
298.754
298.835
298.765
298.761
298.816
298.802
298.81
298.762
298.734
298.744
298.776
298.832
298.802
298.727
298.701
298.748
298.763
298.877
297.988
299.823
298.372
298.874
298.046
299.398
298.859
298.84
298.596
298.64
298.621
298.86
298.858
298.675
298.653
298.644
298.657
298.778
298.78
298.708
298.651
298.641
298.647
298.723
298.774
298.719
298.619
298.913
297.724
299.539
298.326
299.132
298.465
298.682
298.601
298.735
298.674
298.682
298.621
298.627
298.686
298.687
298.705
298.634
298.607
298.623
298.66
298.716
298.677
298.61
298.6
298.588
298.683
298.716
299.557
297.599
298.89
298.358
299.287
298.069
298.697
298.466
298.643
298.542
298.589
298.577
298.6
298.603
298.553
298.517
298.553
298.598
298.637
298.56
298.533
298.483
298.505
298.591
298.706
298.576
298.557
298.093
299.874
297.562
299.348
297.616
298.729
298.374
298.629
298.7
298.649
298.397
298.401
298.415
298.423
298.656
298.579
298.412
298.413
298.424
298.473
298.57
298.532
298.431
298.407
298.41
298.471
298.536
298.487
298.403
298.389
298.393
298.491
298.527
299.771
297.036
298.759
298.053
299.474
297.548
298.585
298.193
298.499
298.379
298.419
298.418
298.414
298.426
298.374
298.339
298.372
298.447
298.463
298.381
298.345
298.324
298.343
298.437
298.444
298.372
298.327
298.299
298.314
298.387
298.417
298.371
298.308
298.544
297.536
299.01
298.019
298.752
298.135
298.318
298.256
298.381
298.328
298.304
298.255
298.27
298.322
298.356
298.363
298.271
298.236
298.244
298.294
298.38
298.343
298.24
298.218
298.221
298.274
298.35
298.297
298.207
298.193
298.196
298.293
298.318
299.464
296.914
298.542
297.868
299.129
297.483
298.318
298.039
298.255
298.14
298.192
298.203
298.219
298.201
298.157
298.11
298.157
298.242
298.268
298.174
298.123
298.101
298.125
298.241
298.244
298.162
298.107
298.077
298.096
298.186
298.21
298.166
298.095
298.37
297.173
298.986
297.757
298.597
297.88
298.097
298.029
298.182
298.109
298.075
298.024
298.048
298.093
298.148
298.151
298.042
298.001
298.011
298.061
298.167
298.126
298.006
297.982
297.988
298.043
298.127
298.067
297.97
297.952
297.971
298.063
298.088
299.506
296.411
298.351
297.516
299.212
296.923
298.104
297.732
298.017
297.892
297.937
297.92
297.967
297.923
297.912
297.845
297.905
298.005
298.031
297.916
297.861
297.824
297.85
297.999
298
297.893
297.829
297.797
297.826
297.951
297.956
297.859
297.807
297.763
297.786
297.889
297.962
297.83
297.79
297.647
298.209
297.575
298.09
297.538
297.819
297.722
297.839
297.869
297.894
297.706
297.711
297.708
297.776
297.886
297.866
297.698
297.679
297.689
297.749
297.859
297.816
297.686
297.652
297.668
297.729
297.831
297.77
297.65
297.622
297.633
297.719
297.807
298.413
296.943
297.868
297.427
298.142
297.343
297.784
297.585
297.642
297.567
297.599
297.725
297.719
297.635
297.589
297.529
297.578
297.71
297.708
297.605
297.539
297.494
297.521
297.674
297.684
297.563
297.511
297.455
297.487
297.621
297.708
297.523
297.477
297.292
298.076
297.171
297.865
297.196
297.505
297.406
297.541
297.599
297.598
297.394
297.386
297.385
297.467
297.603
297.569
297.365
297.347
297.36
297.422
297.562
297.497
297.351
297.312
297.33
297.396
297.508
297.442
297.305
297.273
297.284
297.362
297.482
297.906
296.785
297.454
297.117
297.657
297.134
297.449
297.222
297.255
297.187
297.252
297.32
297.378
297.27
297.228
297.157
297.221
297.349
297.378
297.261
297.175
297.117
297.155
297.329
297.348
297.203
297.145
297.071
297.098
297.26
297.317
297.174
297.071
297.174
296.874
297.523
297.045
297.276
296.969
297.06
297.047
297.263
297.16
297.043
296.968
296.991
297.044
297.203
297.138
296.973
296.912
296.944
297.006
297.171
297.096
296.915
296.875
296.903
297.017
297.077
298.215
295.708
297.246
296.621
297.591
296.475
297.033
296.831
296.892
296.803
296.86
296.935
296.993
296.851
296.837
296.755
296.827
296.944
296.982
296.852
296.777
296.7
296.731
296.891
297.012
296.757
296.713
296.403
297.759
296.046
297.249
296.212
296.768
296.604
296.755
296.802
296.876
296.566
296.56
296.557
296.684
296.842
296.794
296.543
296.516
296.534
296.613
296.815
296.71
296.508
296.467
296.49
296.623
296.682
298.062
294.999
296.877
296.175
297.291
295.94
296.608
296.417
296.47
296.377
296.414
296.535
296.532
296.408
296.394
296.296
296.374
296.507
296.515
296.379
296.316
296.219
296.25
296.42
296.463
296.322
296.219
296.42
295.456
297.099
296.187
296.463
296.058
296.162
296.209
296.42
296.341
296.151
296.081
296.107
296.193
296.377
296.296
296.084
296.044
296.061
296.145
296.306
296.21
296.019
295.982
295.979
296.099
296.256
296.716
295.492
296.148
295.829
296.256
295.919
296.189
295.944
295.923
295.824
295.919
296.1
296.158
295.902
295.861
295.723
295.788
296.014
296.033
295.858
295.72
295.988
294.755
296.893
295.675
295.99
295.585
295.688
295.753
295.909
295.833
295.662
295.575
295.615
295.709
295.917
295.831
295.584
295.525
295.546
295.649
295.845
295.732
295.508
295.462
295.439
295.581
295.814
295.594
295.738
295.402
295.409
295.237
295.766
295.577
295.499
295.331
295.256
295.293
295.642
295.559
295.39
295.225
295.141
295.168
295.42
295.445
295.202
295.074
295.179
295.291
295.479
295.39
295.139
295.057
295.091
295.224
295.44
295.363
295.047
294.978
295.006
295.134
295.383
295.252
294.965
294.906
294.864
295.032
295.309
295.253
295.082
294.927
294.786
294.839
295.148
295.149
294.922
294.798
294.682
294.739
295.051
295.058
294.777
294.608
294.621
294.739
294.945
294.842
294.55
294.459
294.511
294.646
294.906
294.821
294.483
294.402
294.447
294.606
294.879
294.738
294.408
294.337
294.302
294.526
294.816
295.004
294.247
294.447
294.186
294.462
294.442
294.651
294.333
294.257
294.107
294.181
294.492
294.575
294.239
294.045
294.117
294.188
294.549
294.163
294.143
293.863
293.892
293.954
294.31
294.123
293.763
293.713
293.664
293.874
294.201
294.124
294.098
293.747
293.651
293.743
294.111
294.158
293.835
293.689
293.55
293.621
293.97
294.081
293.766
293.505
293.654
293.296
294.279
293.691
293.696
293.336
293.385
293.485
293.859
293.721
293.304
293.196
293.124
293.33
293.732
293.548
293.235
293.114
292.796
293.462
293.062
293.582
292.874
292.926
292.776
292.815
293.262
293.387
293.04
292.812
292.744
293.464
292.943
293.296
292.627
292.717
292.653
292.888
293.203
293.072
292.6
292.536
292.433
292.77
293.12
293.255
292.412
292.549
292.231
292.565
292.652
292.776
292.313
292.229
291.971
292.091
292.491
292.403
291.925
291.757
291.887
292.132
292.455
292.292
291.872
291.714
291.731
291.943
292.467
291.98
292.579
291.649
291.659
291.57
292.411
292.244
291.822
291.622
291.411
291.5
292.059
292.062
291.597
291.28
291.298
291.521
291.94
291.659
291.216
291.033
290.843
291.023
291.638
290.979
291.374
290.61
290.511
290.723
291.136
291.519
290.823
290.608
290.603
291.369
291.123
291.255
290.607
290.47
290.515
290.762
291.288
290.988
290.403
290.274
290.112
290.46
290.976
290.818
290.392
290.124
289.791
290.027
290.493
290.396
289.742
289.546
289.318
289.856
289.885
289.847
289.364
289.155
289.207
289.419
290.32
290.304
289.769
289.383
289.137
289.328
289.942
290.077
289.397
288.987
289.124
289.441
290.004
289.558
288.965
288.698
288.451
288.79
289.57
289.028
288.647
288.263
287.82
287.956
288.572
288.768
287.987
287.709
287.78
288.291
289.078
289.654
287.883
288.152
287.769
288.006
288.809
288.899
287.958
287.519
287.465
288.335
288.254
288.013
287.279
286.983
286.51
286.772
287.452
287.527
286.395
286.137
286.506
287.003
287.769
287.416
286.59
286.251
286.229
286.65
287.752
287.639
286.926
286.048
286.516
285.206
288.787
286.681
285.883
285.523
284.934
285.162
286.183
286.56
285.183
284.572
285.184
285.536
286.951
286.445
285.276
284.764
284.743
285.163
286.504
286.503
285.332
284.489
284.226
283.904
286.318
283.668
286.114
283.406
283.54
284.375
284.834
286.189
284.478
283.776
283.843
284.523
286.153
285.489
284.186
283.397
283.287
284.061
285.671
286.714
284.656
283.489
283.332
286.805
284.935
285.559
284.277
283.753
283.749
284.2
285.787
286.654
284.868
283.911
284.496
285.311
287.042
287.866
285.796
284.908
285.543
286.623
288.808
289.83
287.462
286.177
286.752
288.167
290.59
291.083
288.757
287.243
287.679
289.301
291.465
291.779
289.775
288.078
288.432
290.179
292.053
292.297
290.526
288.751
289.04
290.846
292.521
292.688
291.13
289.308
289.56
291.387
292.801
292.878
291.614
289.807
290.05
291.821
292.955
293.037
292.005
290.284
290.504
292.182
293.124
293.187
292.343
290.714
290.919
292.491
293.225
293.248
292.611
291.117
291.302
292.713
293.28
293.324
292.799
291.471
291.625
292.883
293.374
293.421
292.961
291.769
291.907
293.037
293.459
293.479
293.099
292.037
292.162
293.156
293.484
293.482
293.199
292.277
292.384
293.234
293.475
293.469
293.258
292.477
292.563
293.283
293.468
293.47
293.301
292.635
292.702
293.321
293.476
293.48
293.338
292.758
292.814
293.357
293.485
293.487
293.372
292.861
292.909
293.388
293.489
293.49
293.401
292.948
292.988
293.415
293.49
293.488
293.423
293.018
293.047
293.431
293.487
293.487
293.437
293.069
293.09
293.443
293.487
293.489
293.444
293.104
293.117
293.446
293.49
293.49
293.446
293.124
293.131
293.445
293.49
293.488
293.443
293.134
293.137
293.44
293.483
293.472
293.432
293.137
293.136
293.426
293.463
293.451
293.414
293.134
293.131
293.406
293.444
293.434
293.393
293.125
293.121
293.384
293.429
293.421
293.371
293.113
293.109
293.362
293.417
293.41
293.349
293.101
293.097
293.341
293.406
293.399
293.328
293.088
293.084
293.32
293.396
293.388
293.308
293.076
293.071
293.3
293.385
293.377
293.287
293.063
293.058
293.28
293.373
293.364
293.268
293.05
293.047
293.261
293.358
293.348
293.249
293.04
293.037
293.243
293.341
293.329
293.231
293.031
293.029
293.224
293.321
293.307
293.212
293.024
293.022
293.205
293.299
293.285
293.193
293.016
293.013
293.185
293.277
293.263
293.173
293.006
293.003
293.165
293.255
293.242
293.153
292.996
292.992
293.146
293.234
293.221
293.134
292.984
292.981
293.127
293.214
293.202
293.115
292.973
292.969
293.109
293.195
293.184
293.098
292.962
292.958
293.092
293.178
293.167
293.082
292.95
292.946
293.076
293.161
293.151
293.067
292.939
292.935
293.062
293.146
293.135
293.052
292.928
292.924
293.047
293.13
293.12
293.038
292.917
292.914
293.034
293.115
293.105
293.025
292.907
292.903
293.02
293.099
293.089
293.011
292.895
292.892
293.006
293.083
293.073
292.996
292.884
292.88
292.991
293.067
293.057
292.981
292.871
292.867
292.976
293.05
293.039
292.966
292.857
292.853
292.96
293.033
293.022
292.949
292.843
292.838
292.943
293.015
293.004
292.933
292.827
292.822
292.927
292.998
292.987
292.916
292.811
292.806
292.909
292.981
292.97
292.899
292.795
292.789
292.893
292.964
292.953
292.882
292.778
292.772
292.876
292.947
292.937
292.865
292.761
292.755
292.859
292.931
292.921
292.849
292.744
292.737
292.842
292.915
292.904
292.832
292.727
292.719
292.824
292.898
292.887
292.814
292.71
292.701
292.807
292.881
292.87
292.796
292.692
292.683
292.789
292.864
292.852
292.778
292.673
292.664
292.771
292.846
292.834
292.759
292.654
292.646
292.753
292.828
292.816
292.74
292.634
292.627
292.734
292.809
292.797
292.721
292.615
292.608
292.714
292.79
292.778
292.702
292.595
292.588
292.695
292.771
292.759
292.682
292.576
292.569
292.675
292.752
292.739
292.663
292.556
292.549
292.656
292.733
292.72
292.643
292.536
292.53
292.636
292.713
292.701
292.623
292.516
292.51
292.616
292.694
292.682
292.604
292.497
292.49
292.596
292.675
292.662
292.584
292.477
292.471
292.576
292.655
292.643
292.564
292.458
292.451
292.556
292.635
292.623
292.544
292.438
292.431
292.536
292.615
292.603
292.524
292.418
292.412
292.516
292.595
292.583
292.504
292.399
292.392
292.496
292.575
292.563
292.484
292.379
292.372
292.476
292.555
292.542
292.463
292.359
292.353
292.456
292.535
292.522
292.443
292.34
292.333
292.436
292.515
292.502
292.423
292.321
292.314
292.416
292.495
292.482
292.403
292.301
292.295
292.396
292.475
292.462
292.383
292.282
292.276
292.376
292.455
292.442
292.363
292.263
292.257
292.356
292.435
292.422
292.344
292.244
292.238
292.337
292.415
292.402
292.324
292.225
292.219
292.317
292.395
292.382
292.305
292.207
292.201
292.298
292.375
292.361
292.285
292.188
292.182
292.278
292.355
292.341
292.266
292.17
292.164
292.259
292.335
292.321
292.246
292.151
292.145
292.239
292.314
292.301
292.226
292.133
292.127
292.22
292.294
292.281
292.207
292.115
292.109
292.2
292.274
292.261
292.188
292.096
292.09
292.181
292.254
292.241
292.168
292.078
292.072
292.162
292.235
292.222
292.149
292.06
292.054
292.143
292.215
292.202
292.13
292.042
292.036
292.124
292.196
292.183
292.112
292.024
292.019
292.106
292.177
292.165
292.093
292.007
292.001
292.087
292.158
292.146
292.075
291.989
291.984
292.069
292.14
292.128
292.058
291.973
291.967
292.051
292.12
292.11
292.041
291.957
291.951
292.033
292.101
292.093
292.026
291.943
291.935
292.015
292.076
292.071
292.009
291.926
291.897
291.992
292.059
292.051
291.984
291.871
291.852
291.966
292.035
291.646
291.332
290.351
289.89
289.794
289.379
289.124
288.963
288.878
288.74
288.677
288.521
288.398
288.301
288.226
288.171
288.133
288.107
288.089
288.077
288.068
288.062
288.058
288.055
288.053
288.051
288.05
288.049
288.048
288.048
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.046
288.046
288.046
288.046
288.046
288.045
288.045
288.045
288.044
288.042
288.041
288.041
288.042
288.044
288.048
288.054
288.06
288.069
288.078
288.089
288.102
288.117
288.133
288.152
288.172
288.196
288.222
288.252
288.285
288.322
288.363
288.409
288.461
288.519
288.583
288.654
288.732
288.819
288.914
289.018
289.132
289.256
289.39
289.533
289.687
289.851
290.024
290.206
290.396
290.593
290.797
291.007
291.221
291.439
291.658
291.88
292.102
292.323
292.543
292.761
292.976
293.188
293.396
293.599
293.798
293.992
294.18
294.363
294.54
294.712
294.878
295.038
295.193
295.342
295.486
295.624
295.757
295.885
296.008
296.127
296.24
296.349
296.454
296.554
296.651
296.743
296.832
296.918
296.999
297.078
297.153
297.225
297.295
297.361
297.425
297.486
297.545
297.601
297.656
297.708
297.757
297.805
297.851
297.896
297.938
297.979
298.018
298.056
298.092
298.126
298.16
298.192
298.222
298.252
298.28
298.308
298.334
298.359
298.383
298.406
298.429
298.45
298.471
298.491
298.51
298.528
298.545
298.562
298.578
298.594
298.608
298.623
298.636
298.649
298.662
298.674
298.685
298.696
298.706
298.716
298.726
298.735
298.743
298.751
298.759
298.766
298.773
298.78
298.786
298.792
298.797
298.802
298.807
298.811
298.815
298.819
298.822
298.826
298.828
298.831
298.833
298.834
298.836
298.837
298.838
298.838
298.838
298.839
298.839
298.839
298.839
298.839
298.839
298.839
298.839
298.84
298.842
298.845
298.848
298.852
298.856
298.859
298.863
298.867
298.872
298.876
298.881
298.886
298.891
298.896
298.901
298.907
298.912
298.918
298.924
298.93
298.937
298.943
298.949
298.956
298.963
298.97
298.977
298.984
298.991
298.998
299.005
299.012
299.02
299.027
299.035
299.042
299.05
299.057
299.065
299.072
299.08
299.087
299.095
299.102
299.11
299.117
299.124
299.131
299.139
299.146
299.153
299.159
299.166
299.173
299.179
299.186
299.192
299.198
299.204
299.21
299.215
299.221
299.226
299.231
299.236
299.241
299.245
299.25
299.254
299.258
299.262
299.265
299.268
299.271
299.272
299.273
299.273
299.273
299.273
299.273
299.273
299.274
299.275
299.276
299.277
299.278
299.279
299.281
299.282
299.284
299.286
299.288
299.289
299.292
299.294
299.296
299.298
299.3
299.302
299.304
299.306
299.309
299.311
299.313
299.316
299.318
299.321
299.323
299.326
299.328
299.331
299.333
299.337
299.339
299.342
299.344
299.348
299.35
299.354
299.357
299.361
299.363
299.367
299.37
299.374
299.377
299.381
299.384
299.389
299.392
299.397
299.399
299.405
299.408
299.413
299.416
299.422
299.425
299.431
299.434
299.44
299.443
299.449
299.452
299.459
299.462
299.469
299.472
299.479
299.482
299.489
299.493
299.5
299.503
299.51
299.514
299.521
299.524
299.531
299.534
299.541
299.544
299.551
299.553
299.56
299.562
299.568
299.57
299.575
299.577
299.581
299.582
299.586
299.587
299.589
299.589
299.59
299.59
299.59
299.588
299.587
299.585
299.583
299.579
299.577
299.572
299.569
299.563
299.56
299.553
299.55
299.543
299.539
299.532
299.528
299.521
299.517
299.509
299.506
299.499
299.495
299.488
299.485
299.479
299.476
299.471
299.468
299.463
299.461
299.457
299.455
299.452
299.45
299.447
299.446
299.444
299.443
299.441
299.44
299.438
299.438
299.436
299.436
299.435
299.434
299.433
299.433
299.432
299.432
299.432
299.432
299.431
299.431
299.431
299.431
299.431
299.43
299.43
299.43
299.429
299.43
299.429
299.43
299.428
299.43
299.427
299.43
299.428
299.428
299.429
299.427
299.429
299.431
299.428
299.428
299.424
299.424
299.423
299.422
299.424
299.425
299.422
299.423
299.424
299.422
299.424
299.424
299.422
299.425
299.424
299.422
299.425
299.424
299.422
299.425
299.425
299.422
299.425
299.425
299.422
299.425
299.425
299.422
299.425
299.425
299.423
299.425
299.426
299.423
299.426
299.426
299.423
299.426
299.427
299.424
299.427
299.427
299.424
299.428
299.428
299.425
299.429
299.43
299.426
299.431
299.431
299.427
299.433
299.434
299.429
299.435
299.436
299.431
299.438
299.439
299.434
299.442
299.443
299.437
299.446
299.448
299.441
299.451
299.454
299.447
299.458
299.461
299.453
299.465
299.469
299.461
299.474
299.479
299.47
299.483
299.489
299.48
299.494
299.5
299.492
299.505
299.512
299.504
299.517
299.524
299.516
299.529
299.536
299.529
299.541
299.547
299.541
299.552
299.558
299.552
299.562
299.567
299.562
299.571
299.575
299.571
299.578
299.582
299.578
299.584
299.586
299.582
299.587
299.588
299.584
299.589
299.589
299.584
299.588
299.588
299.581
299.585
299.584
299.576
299.581
299.579
299.57
299.575
299.572
299.562
299.567
299.564
299.553
299.559
299.556
299.543
299.55
299.546
299.533
299.54
299.536
299.522
299.53
299.525
299.511
299.519
299.515
299.5
299.508
299.504
299.489
299.497
299.493
299.477
299.487
299.482
299.466
299.476
299.471
299.456
299.465
299.461
299.445
299.455
299.45
299.435
299.445
299.44
299.425
299.435
299.43
299.415
299.425
299.421
299.406
299.416
299.412
299.396
299.407
299.403
299.388
299.399
299.394
299.379
299.39
299.386
299.371
299.382
299.378
299.364
299.375
299.371
299.356
299.367
299.363
299.349
299.36
299.356
299.342
299.353
299.35
299.336
299.347
299.343
299.33
299.341
299.337
299.324
299.335
299.331
299.319
299.329
299.326
299.313
299.323
299.32
299.309
299.318
299.315
299.304
299.313
299.31
299.3
299.308
299.305
299.296
299.304
299.301
299.292
299.299
299.297
299.288
299.295
299.293
299.285
299.292
299.289
299.282
299.288
299.286
299.28
299.285
299.283
299.278
299.282
299.28
299.276
299.279
299.278
299.275
299.277
299.276
299.274
299.275
299.274
299.273
299.274
299.273
299.274
299.274
299.275
299.277
299.278
299.28
299.282
299.285
299.288
299.291
299.295
299.299
299.303
299.307
299.312
299.317
299.323
299.328
299.334
299.341
299.348
299.355
299.362
299.37
299.378
299.387
299.396
299.405
299.415
299.425
299.435
299.446
299.456
299.468
299.479
299.49
299.502
299.514
299.525
299.536
299.547
299.556
299.565
299.572
299.578
299.581
299.581
299.578
299.572
299.564
299.553
299.541
299.528
299.515
299.502
299.489
299.477
299.467
299.458
299.45
299.443
299.438
299.434
299.431
299.429
299.427
299.426
299.425
299.424
299.424
299.423
299.423
299.423
299.423
299.422
299.422
299.422
299.422
299.422
299.422
299.422
299.422
299.422
299.422
299.422
299.422
299.422
299.422
299.421
299.423
299.423
299.423
299.423
299.423
299.424
299.424
299.423
299.423
299.423
299.423
299.423
299.423
299.423
299.423
299.423
299.423
299.424
299.424
299.424
299.424
299.424
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.425
299.424
299.425
299.425
299.425
299.427
299.427
299.428
299.428
299.427
299.427
299.427
299.431
299.431
299.431
299.43
299.43
299.432
299.432
299.435
299.434
299.438
299.438
299.436
299.437
299.437
299.437
299.43
299.427
299.427
299.427
299.427
299.43
299.43
299.43
299.437
299.437
299.436
299.445
299.446
299.445
299.446
299.445
299.446
299.445
299.446
299.445
299.446
299.445
299.446
299.446
299.445
299.444
299.442
299.443
299.444
299.451
299.449
299.461
299.464
299.458
299.452
299.45
299.457
299.454
299.449
299.452
299.457
299.458
299.453
299.453
299.458
299.464
299.463
299.463
299.465
299.463
299.466
299.458
299.466
299.463
299.457
299.453
299.453
299.457
299.457
299.452
299.45
299.457
299.459
299.451
299.453
299.458
299.458
299.453
299.452
299.458
299.463
299.463
299.463
299.464
299.464
299.464
299.463
299.463
299.457
299.451
299.452
299.457
299.457
299.452
299.452
299.457
299.457
299.452
299.453
299.458
299.458
299.453
299.453
299.458
299.465
299.466
299.465
299.464
299.464
299.463
299.463
299.466
299.459
299.452
299.453
299.459
299.459
299.453
299.453
299.459
299.459
299.453
299.454
299.459
299.459
299.453
299.446
299.453
299.459
299.466
299.466
299.467
299.467
299.466
299.466
299.466
299.466
299.459
299.452
299.445
299.436
299.43
299.427
299.427
299.427
299.427
299.43
299.43
299.43
299.436
299.436
299.435
299.435
299.43
299.427
299.427
299.427
299.426
299.429
299.429
299.429
299.435
299.434
299.433
299.441
299.443
299.443
299.444
299.444
299.445
299.444
299.445
299.444
299.445
299.444
299.445
299.444
299.445
299.452
299.452
299.458
299.459
299.458
299.452
299.451
299.452
299.458
299.458
299.465
299.465
299.466
299.465
299.465
299.465
299.458
299.451
299.452
299.458
299.465
299.465
299.458
299.451
299.452
299.458
299.458
299.452
299.452
299.458
299.458
299.451
299.452
299.459
299.459
299.452
299.452
299.459
299.47
299.469
299.469
299.468
299.466
299.466
299.465
299.469
299.459
299.452
299.453
299.46
299.46
299.452
299.452
299.46
299.46
299.451
299.452
299.46
299.459
299.451
299.452
299.459
299.469
299.469
299.469
299.469
299.469
299.47
299.469
299.469
299.459
299.451
299.451
299.459
299.458
299.45
299.45
299.458
299.457
299.449
299.45
299.457
299.457
299.449
299.441
299.449
299.456
299.469
299.469
299.47
299.47
299.47
299.469
299.469
299.468
299.455
299.447
299.439
299.432
299.428
299.426
299.425
299.424
299.425
299.425
299.426
299.427
299.428
299.43
299.433
299.437
299.442
299.448
299.456
299.465
299.476
299.488
299.502
299.49
299.477
299.466
299.456
299.448
299.441
299.435
299.431
299.429
299.427
299.426
299.426
299.425
299.425
299.425
299.426
299.426
299.425
299.426
299.427
299.428
299.431
299.43
299.428
299.426
299.425
299.425
299.425
299.424
299.425
299.42
299.421
299.423
299.422
299.417
299.413
299.411
299.415
299.421
299.424
299.427
299.429
299.431
299.433
299.435
299.436
299.437
299.437
299.438
299.44
299.446
299.448
299.455
299.454
299.454
299.446
299.445
299.445
299.452
299.453
299.465
299.466
299.467
299.467
299.464
299.464
299.452
299.444
299.445
299.451
299.463
299.463
299.451
299.444
299.444
299.451
299.451
299.443
299.444
299.451
299.451
299.443
299.442
299.45
299.449
299.44
299.439
299.447
299.459
299.463
299.466
299.467
299.467
299.467
299.465
299.456
299.445
299.437
299.437
299.443
299.441
299.436
299.433
299.439
299.438
299.431
299.429
299.437
299.437
299.429
299.427
299.433
299.444
299.446
299.448
299.45
299.451
299.453
299.455
299.438
299.429
299.425
299.42
299.424
299.42
299.417
299.413
299.416
299.412
299.412
299.407
299.407
299.405
299.405
299.404
299.401
299.399
299.401
299.407
299.411
299.416
299.421
299.427
299.433
299.396
299.396
299.4
299.402
299.411
299.42
299.426
299.429
299.434
299.44
299.432
299.426
299.422
299.411
299.414
299.42
299.428
299.439
299.448
299.457
299.467
299.479
299.469
299.458
299.448
299.436
299.447
299.459
299.449
299.442
299.436
299.43
299.425
299.42
299.417
299.413
299.409
299.406
299.405
299.403
299.402
299.4
299.395
299.396
299.394
299.393
299.395
299.394
299.397
299.398
299.402
299.399
299.398
299.395
299.394
299.394
299.402
299.406
299.406
299.4
299.401
299.407
299.409
299.414
299.408
299.403
299.409
299.408
299.406
299.408
299.403
299.406
299.403
299.402
299.403
299.405
299.408
299.422
299.427
299.413
299.414
299.413
299.472
299.387
299.416
299.417
299.422
299.419
299.411
299.413
299.415
299.412
299.42
299.423
299.427
299.427
299.422
299.406
299.397
299.394
299.401
299.413
299.409
299.403
299.41
299.415
299.429
299.419
299.433
299.427
299.431
299.437
299.445
299.451
299.455
299.463
299.473
299.482
299.493
299.505
299.516
299.531
299.544
299.557
299.568
299.575
299.579
299.58
299.577
299.571
299.564
299.554
299.543
299.532
299.52
299.508
299.504
299.517
299.529
299.542
299.553
299.564
299.572
299.578
299.581
299.58
299.573
299.564
299.551
299.537
299.521
299.51
299.529
299.547
299.542
299.519
299.499
299.489
299.509
299.537
299.567
299.563
299.563
299.574
299.582
299.584
299.591
299.589
299.579
299.591
299.605
299.606
299.632
299.632
299.616
299.577
299.536
299.505
299.484
299.471
299.468
299.461
299.446
299.443
299.444
299.439
299.434
299.432
299.436
299.435
299.422
299.445
299.38
299.549
299.436
299.429
299.426
299.429
299.434
299.44
299.434
299.443
299.452
299.453
299.458
299.446
299.449
299.478
299.452
299.455
299.453
299.454
299.455
299.466
299.448
299.449
299.447
299.453
299.459
299.45
299.462
299.473
299.484
299.482
299.478
299.46
299.465
299.497
299.489
299.486
299.492
299.499
299.514
299.507
299.5
299.503
299.498
299.492
299.488
299.442
299.543
299.491
299.5
299.509
299.518
299.521
299.532
299.53
299.548
299.553
299.549
299.53
299.524
299.523
299.503
299.537
299.533
299.53
299.529
299.571
299.56
299.575
299.575
299.571
299.6
299.602
299.632
299.619
299.655
299.674
299.661
299.684
299.647
299.619
299.603
299.59
299.59
299.571
299.581
299.521
299.626
299.594
299.611
299.607
299.62
299.627
299.627
299.602
299.662
299.65
299.676
299.689
299.715
299.69
299.727
299.747
299.769
299.733
299.71
299.683
299.753
299.809
299.828
299.862
299.824
299.791
299.765
299.742
299.719
299.718
299.753
299.754
299.767
299.789
299.818
299.802
299.784
299.776
299.746
299.781
299.784
299.815
299.847
299.856
299.876
299.838
299.829
299.768
299.762
299.655
299.68
299.593
299.544
299.494
299.426
299.425
299.382
299.382
299.358
299.374
299.338
299.334
299.337
299.34
299.338
299.332
299.328
299.334
299.328
299.322
299.367
299.333
299.316
299.318
299.325
299.311
299.311
299.308
299.323
299.315
299.314
299.325
299.349
299.331
299.336
299.303
299.384
299.314
299.361
299.418
299.363
299.344
299.29
299.311
299.309
299.359
299.322
299.295
299.38
299.297
299.29
299.218
299.271
299.317
299.189
299.332
299.308
299.34
299.298
299.298
299.278
299.254
299.267
299.254
299.263
299.251
299.259
299.234
299.246
299.239
299.241
299.182
299.231
299.231
299.261
299.242
299.267
299.26
299.262
299.25
299.227
299.223
299.176
299.195
299.197
299.204
299.205
299.211
299.199
299.21
299.164
299.19
299.197
299.189
299.174
299.171
299.158
299.171
299.204
299.168
299.141
299.155
299.137
299.037
299.108
299.102
299.109
299.114
299.155
299.135
299.119
299.114
299.103
299.078
299.096
299.081
299.083
299.088
299.092
299.089
299.075
299.06
299.042
299.047
299.043
298.974
299.022
299.009
299.018
299.016
298.993
298.983
298.955
298.995
298.989
298.992
298.986
298.94
298.976
298.963
298.953
298.952
298.901
298.915
298.918
298.916
298.925
298.914
298.924
298.905
298.908
298.878
298.886
298.87
298.863
298.856
298.838
298.842
298.839
298.841
298.838
298.822
298.825
298.804
298.814
298.792
298.8
298.784
298.782
298.785
298.761
298.776
298.754
298.741
298.735
298.723
298.726
298.708
298.715
298.701
298.702
298.677
298.691
298.667
298.685
298.67
298.647
298.638
298.599
298.625
298.61
298.614
298.61
298.607
298.613
298.589
298.582
298.555
298.566
298.542
298.539
298.52
298.529
298.516
298.501
298.511
298.497
298.496
298.464
298.473
298.435
298.461
298.431
298.434
298.415
298.4
298.393
298.377
298.382
298.364
298.368
298.352
298.352
298.335
298.328
298.316
298.301
298.293
298.268
298.276
298.256
298.246
298.238
298.228
298.229
298.207
298.203
298.187
298.178
298.162
298.159
298.138
298.134
298.115
298.116
298.105
298.093
298.09
298.069
298.061
298.045
298.041
298.026
298.004
298.004
297.983
297.988
297.958
297.963
297.935
297.928
297.917
297.899
297.887
297.876
297.849
297.849
297.827
297.815
297.804
297.78
297.777
297.762
297.747
297.748
297.72
297.718
297.684
297.688
297.659
297.657
297.627
297.633
297.603
297.586
297.579
297.562
297.569
297.522
297.532
297.49
297.498
297.455
297.456
297.426
297.414
297.417
297.381
297.393
297.346
297.358
297.311
297.318
297.277
297.281
297.236
297.22
297.198
297.187
297.194
297.142
297.156
297.107
297.121
297.069
297.077
297.038
297.012
297.023
296.973
296.974
296.92
296.924
296.875
296.869
296.849
296.838
296.844
296.787
296.804
296.736
296.752
296.692
296.704
296.647
296.63
296.619
296.583
296.563
296.5
296.511
296.467
296.472
296.43
296.421
296.424
296.349
296.373
296.287
296.298
296.228
296.21
296.165
296.134
296.102
296.071
296.069
296.031
296.045
295.979
295.992
295.923
295.908
295.907
295.844
295.82
295.753
295.718
295.674
295.611
295.634
295.573
295.558
295.519
295.533
295.438
295.444
295.363
295.328
295.338
295.27
295.223
295.167
295.12
295.046
294.982
295.033
294.955
294.98
294.876
294.868
294.793
294.747
294.772
294.67
294.659
294.534
294.483
294.453
294.359
294.362
294.299
294.322
294.217
294.181
294.208
294.09
294.072
293.927
293.872
293.875
293.764
293.699
293.609
293.532
293.612
293.5
293.518
293.374
293.302
293.337
293.194
293.166
292.991
292.929
292.858
292.723
292.726
292.597
292.567
292.6
292.501
292.497
292.326
292.265
292.227
292.089
291.949
291.803
291.649
291.659
291.566
291.531
291.569
291.391
291.349
291.148
291.068
290.976
290.805
290.611
290.521
290.411
290.301
290.397
290.23
290.199
289.999
289.888
289.763
289.577
289.354
289.198
289.108
288.977
289.043
288.87
288.738
288.653
288.382
288.137
287.899
287.792
287.598
287.572
287.635
287.363
287.193
286.97
286.716
286.395
286.073
286.142
285.978
285.896
285.762
285.555
285.202
284.852
284.526
284.708
284.509
284.393
284.137
283.622
283.492
283.474
283.337
283.342
283.053
282.883
282.841
283.336
283.261
283.386
283.559
283.9
284.315
284.849
285.377
285.837
286.245
286.575
286.878
287.124
287.366
287.567
287.776
287.95
288.141
288.3
288.474
288.608
288.76
288.879
289.025
289.136
289.268
289.364
289.484
289.573
289.69
289.773
289.883
289.958
290.061
290.133
290.232
290.299
290.392
290.456
290.548
290.614
290.706
290.772
290.862
290.925
291.01
291.072
291.152
291.21
291.285
291.339
291.407
291.459
291.522
291.572
291.632
291.682
291.737
291.784
291.833
291.878
291.922
291.965
292.006
292.047
292.083
292.121
292.151
292.185
292.21
292.241
292.262
292.291
292.311
292.34
292.359
292.387
292.404
292.428
292.443
292.462
292.475
292.489
292.499
292.51
292.518
292.526
292.532
292.538
292.541
292.545
292.546
292.549
292.548
292.551
292.549
292.551
292.549
292.55
292.547
292.547
292.544
292.542
292.539
292.535
292.532
292.527
292.522
292.517
292.511
292.506
292.499
292.493
292.485
292.479
292.471
292.464
292.456
292.449
292.44
292.433
292.424
292.417
292.408
292.401
292.391
292.384
292.374
292.367
292.357
292.35
292.339
292.333
292.322
292.315
292.305
292.298
292.287
292.281
292.27
292.264
292.253
292.247
292.236
292.23
292.219
292.213
292.202
292.196
292.186
292.179
292.169
292.163
292.152
292.146
292.136
292.13
292.12
292.114
292.103
292.098
292.087
292.081
292.071
292.065
292.054
292.049
292.038
292.033
292.023
292.017
292.007
292.002
291.992
291.987
291.976
291.971
291.961
291.956
291.946
291.941
291.931
291.926
291.916
291.911
291.901
291.896
291.886
291.881
291.871
291.866
291.856
291.851
291.841
291.836
291.826
291.821
291.811
291.807
291.797
291.793
291.783
291.778
291.77
291.765
291.753
291.753
291.74
291.724
291.662
291.315
290.383
290.444
291.312
291.333
290.559
289.896
289.896
289.939
289.244
288.979
288.984
288.932
289.264
290.012
290.476
291.324
291.344
290.578
290.496
291.335
291.34
290.597
290.053
289.402
289.353
290.098
290.512
291.347
291.346
290.605
290.519
291.355
291.353
290.607
290.112
289.441
289.039
289.103
289.385
290.103
290.516
291.361
291.359
290.606
290.515
291.366
291.365
290.601
290.118
289.445
289.39
290.102
290.509
291.371
291.37
290.598
290.505
291.375
291.374
290.591
290.105
289.447
289.102
288.772
288.755
288.752
288.72
288.552
288.563
288.569
288.574
288.575
288.77
289.122
289.389
290.093
290.498
291.38
291.378
290.586
290.493
291.383
291.382
290.58
290.092
289.442
289.386
290.081
290.486
291.387
291.386
290.575
290.48
291.39
291.389
290.568
290.079
289.439
289.118
289.122
289.383
290.068
290.472
291.393
291.392
290.561
290.466
291.395
291.394
290.553
290.066
289.434
289.378
290.054
290.457
291.397
291.396
290.546
290.45
291.398
291.398
290.538
290.051
289.428
289.12
288.777
288.775
288.775
288.577
288.578
288.579
288.437
288.436
288.435
288.434
288.432
288.43
288.426
288.42
288.314
288.319
288.322
288.324
288.241
288.24
288.237
288.234
288.176
288.179
288.18
288.182
288.183
288.242
288.325
288.326
288.327
288.328
288.246
288.245
288.244
288.184
288.185
288.187
288.146
288.144
288.143
288.142
288.141
288.139
288.138
288.135
288.108
288.11
288.111
288.112
288.093
288.092
288.091
288.09
288.077
288.078
288.079
288.08
288.081
288.094
288.113
288.115
288.116
288.117
288.097
288.096
288.095
288.082
288.083
288.084
288.085
288.099
288.119
288.147
288.188
288.248
288.33
288.438
288.58
288.778
289.119
289.372
290.039
290.44
291.399
291.399
290.53
290.432
291.4
291.399
290.52
290.036
289.421
289.366
290.023
290.422
291.4
291.399
290.511
290.413
291.399
291.399
290.501
290.02
289.415
289.117
289.115
289.361
290.007
290.402
291.398
291.398
290.492
290.393
291.395
291.397
290.481
290.003
289.408
289.355
289.99
290.382
291.392
291.395
290.471
290.372
291.387
291.394
290.459
289.986
289.401
289.114
288.779
288.779
288.778
288.581
288.582
288.582
288.582
288.779
289.112
289.349
289.972
290.36
291.382
291.391
290.448
290.349
291.376
291.389
290.436
289.968
289.394
289.343
289.955
290.337
291.369
291.386
290.425
290.325
291.361
291.38
290.412
289.95
289.388
289.111
289.109
289.337
289.937
290.312
291.354
291.373
290.399
290.301
291.347
291.366
290.386
289.932
289.381
289.331
289.919
290.287
291.339
291.357
290.373
290.275
291.33
291.348
290.359
289.913
289.374
289.108
288.777
288.778
288.778
288.582
288.581
288.58
288.579
288.776
289.106
289.325
289.9
290.261
291.32
291.338
290.346
290.248
291.31
291.327
290.331
289.895
289.367
289.319
289.881
290.233
291.298
291.316
290.317
290.22
291.286
291.303
290.302
289.876
289.359
289.104
289.102
289.312
289.863
290.205
291.272
291.29
290.287
290.191
291.259
291.276
290.271
289.857
289.352
289.306
289.844
290.176
291.244
291.26
290.256
290.162
291.228
291.244
290.24
289.838
289.344
289.1
288.77
288.773
288.775
288.577
288.574
288.571
288.567
288.768
289.098
289.299
289.825
290.146
291.211
291.227
290.225
290.132
291.193
291.208
290.207
289.819
289.337
289.292
289.806
290.116
291.174
291.189
290.192
290.101
291.154
291.169
290.174
289.8
289.329
289.095
289.091
289.284
289.787
290.084
291.133
291.148
290.158
290.069
291.111
291.126
290.14
289.781
289.32
289.276
289.767
290.052
291.087
291.103
290.123
290.036
291.062
291.078
290.104
289.761
289.311
289.087
288.755
288.76
288.764
288.563
288.558
288.552
288.409
288.415
288.421
288.426
288.43
288.433
288.436
288.438
288.439
288.44
288.441
288.441
288.441
288.44
288.44
288.331
288.333
288.333
288.252
288.251
288.249
288.19
288.192
288.193
288.194
288.253
288.334
288.334
288.334
288.334
288.255
288.255
288.254
288.196
288.197
288.198
288.158
288.156
288.155
288.153
288.152
288.15
288.149
288.12
288.122
288.123
288.104
288.102
288.1
288.086
288.088
288.09
288.092
288.106
288.125
288.127
288.129
288.13
288.111
288.109
288.107
288.094
288.096
288.098
288.1
288.113
288.132
288.159
288.198
288.255
288.333
288.331
288.329
288.327
288.252
288.253
288.254
288.199
288.199
288.198
288.197
288.25
288.323
288.319
288.314
288.309
288.239
288.243
288.247
288.196
288.194
288.192
288.16
288.161
288.161
288.161
288.161
288.161
288.16
288.133
288.135
288.136
288.118
288.117
288.115
288.102
288.104
288.106
288.108
288.12
288.137
288.138
288.138
288.138
288.124
288.123
288.122
288.11
288.112
288.114
288.107
288.105
288.102
288.1
288.097
288.095
288.092
288.09
288.088
288.085
288.083
288.081
288.08
288.078
288.076
288.075
288.074
288.073
288.072
288.071
288.071
288.07
288.07
288.069
288.063
288.063
288.064
288.064
288.059
288.059
288.059
288.058
288.055
288.056
288.056
288.056
288.056
288.06
288.065
288.065
288.066
288.067
288.062
288.061
288.06
288.057
288.057
288.058
288.055
288.054
288.054
288.054
288.053
288.053
288.053
288.053
288.051
288.051
288.051
288.051
288.05
288.05
288.05
288.05
288.049
288.049
288.049
288.049
288.049
288.05
288.051
288.052
288.052
288.052
288.05
288.05
288.05
288.049
288.049
288.049
288.048
288.048
288.048
288.048
288.048
288.048
288.048
288.048
288.048
288.048
288.048
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.047
288.046
288.046
288.047
288.046
288.046
288.046
288.046
288.046
288.047
288.048
288.049
288.051
288.053
288.055
288.058
288.063
288.068
288.069
288.071
288.072
288.066
288.065
288.064
288.059
288.06
288.062
288.063
288.068
288.074
288.076
288.078
288.08
288.074
288.072
288.07
288.065
288.067
288.069
288.065
288.063
288.061
288.059
288.058
288.057
288.056
288.053
288.054
288.055
288.052
288.052
288.051
288.049
288.05
288.05
288.051
288.053
288.056
288.057
288.059
288.061
288.057
288.056
288.054
288.052
288.053
288.054
288.055
288.059
288.063
288.067
288.071
288.076
288.082
288.085
288.087
288.09
288.084
288.081
288.079
288.074
288.076
288.079
288.083
288.087
288.093
288.096
288.099
288.102
288.097
288.094
288.09
288.086
288.089
288.092
288.087
288.084
288.081
288.078
288.075
288.072
288.069
288.065
288.068
288.07
288.065
288.063
288.061
288.056
288.057
288.059
288.062
288.067
288.073
288.075
288.079
288.083
288.081
288.075
288.07
288.066
288.072
288.08
288.079
288.071
288.064
288.059
288.055
288.052
288.051
288.051
288.05
288.05
288.049
288.049
288.049
288.048
288.048
288.047
288.047
288.047
288.046
288.046
288.046
288.046
288.046
288.045
288.045
288.046
288.047
288.047
288.047
288.047
288.044
288.045
288.045
288.044
288.043
288.042
288.042
288.043
288.046
288.047
288.049
288.052
288.05
288.046
288.044
288.043
288.045
288.049
288.054
288.055
288.056
288.062
288.07
288.079
288.078
288.069
288.061
288.061
288.069
288.078
288.089
288.089
288.089
288.089
288.089
288.089
288.089
288.091
288.095
288.1
288.105
288.11
288.116
288.125
288.138
288.158
288.189
288.234
288.302
288.401
288.545
288.749
289.082
289.267
289.748
290.018
291.036
291.052
290.087
290.002
291.008
291.024
290.067
289.741
289.301
289.257
289.727
289.984
290.98
290.996
290.049
289.967
290.95
290.965
290.029
289.721
289.29
289.075
289.067
289.246
289.706
289.949
290.92
290.935
290.012
289.932
290.888
290.902
289.991
289.7
289.278
289.234
289.686
289.915
290.856
290.871
289.974
289.898
290.823
290.837
289.954
289.679
289.265
289.057
288.723
288.733
288.742
288.536
288.527
288.516
288.503
288.712
289.045
289.22
289.665
289.88
290.79
290.805
289.937
289.863
290.756
290.769
289.916
289.658
289.25
289.205
289.642
289.845
290.721
290.734
289.899
289.827
290.684
290.696
289.876
289.635
289.233
289.032
289.016
289.187
289.619
289.808
290.646
290.657
289.858
289.788
290.607
290.616
289.834
289.611
289.213
289.166
289.593
289.769
290.565
290.574
289.815
289.748
290.522
290.53
289.79
289.585
289.19
288.997
288.662
288.681
288.698
288.487
288.47
288.45
288.426
288.64
288.975
289.143
289.563
289.727
290.48
290.487
289.77
289.706
290.437
290.444
289.745
289.554
289.164
289.116
289.531
289.684
290.395
290.401
289.723
289.662
290.352
290.357
289.697
289.521
289.132
288.949
288.918
289.085
289.495
289.638
290.309
290.313
289.673
289.614
290.263
290.267
289.645
289.484
289.097
289.046
289.455
289.588
290.217
290.22
289.619
289.561
290.17
290.172
289.587
289.442
289.056
288.88
288.546
288.583
288.614
288.399
288.367
288.33
288.287
288.503
288.836
289
289.408
289.532
290.122
290.123
289.558
289.502
290.072
290.071
289.522
289.393
289.008
288.945
289.354
289.468
290.02
290.017
289.489
289.433
289.965
289.962
289.448
289.335
288.951
288.782
288.718
288.881
289.29
289.394
289.91
289.906
289.41
289.354
289.854
289.849
289.365
289.266
288.884
288.804
289.213
289.309
289.796
289.79
289.321
289.262
289.734
289.727
289.27
289.183
288.804
288.641
288.319
288.391
288.451
288.237
288.179
288.112
287.994
288.054
288.106
288.152
288.192
288.227
288.257
288.283
288.306
288.325
288.343
288.358
288.371
288.383
288.393
288.294
288.284
288.274
288.212
288.22
288.228
288.184
288.179
288.173
288.166
288.201
288.262
288.248
288.232
288.213
288.161
288.176
288.19
288.157
288.146
288.134
288.123
288.132
288.139
288.145
288.15
288.153
288.156
288.138
288.137
288.135
288.126
288.126
288.126
288.118
288.119
288.12
288.121
288.126
288.133
288.13
288.125
288.118
288.117
288.121
288.124
288.12
288.12
288.119
288.12
288.113
288.11
288.111
288.119
288.143
288.193
288.169
288.142
288.111
288.072
288.099
288.122
288.103
288.084
288.062
288.038
288.043
288.075
288.035
287.99
287.939
287.929
287.971
288.009
288.011
287.981
287.95
287.996
288.012
288.03
288.048
288.067
288.084
288.099
288.101
288.091
288.082
288.106
288.107
288.109
288.123
288.127
288.133
288.14
288.106
288.073
288.065
288.059
288.055
288.116
288.111
288.107
288.149
288.16
288.174
288.19
288.123
288.052
287.981
287.918
287.884
287.881
287.925
288.033
288.235
288.548
288.714
289.122
289.209
289.669
289.66
289.217
289.154
289.601
289.589
289.157
289.084
288.711
288.61
289.013
289.092
289.528
289.514
289.095
289.026
289.451
289.433
289.022
288.964
288.601
288.438
288.305
288.488
288.881
288.951
289.368
289.347
288.948
288.87
289.28
289.255
288.859
288.815
288.468
288.341
288.716
288.78
289.185
289.155
288.768
288.683
289.082
289.046
288.661
288.631
288.308
288.147
287.876
288.015
288.134
287.942
287.838
287.723
287.596
287.718
287.959
288.163
288.511
288.573
288.967
288.922
288.547
288.453
288.836
288.782
288.412
288.399
288.11
287.941
288.251
288.315
288.69
288.628
288.268
288.162
288.528
288.452
288.099
288.1
287.856
287.731
287.442
287.656
287.912
287.986
288.34
288.253
287.915
287.788
288.128
288.022
287.702
287.708
287.521
287.285
287.458
287.556
287.873
287.74
287.452
287.281
287.565
287.407
287.156
287.171
287.054
287.047
286.894
287.286
287.535
287.44
287.204
286.907
286.658
286.488
286.497
286.746
286.829
286.965
287.207
287.024
286.82
286.605
286.79
286.562
286.419
286.443
286.421
286.051
285.973
286.166
286.261
285.955
285.91
285.572
285.558
285.164
285.227
285.397
285.584
285.945
285.545
285.286
284.863
284.859
284.707
284.318
284.507
284.312
283.978
283.772
283.967
284.489
285.003
284.836
284.333
283.854
283.613
283.523
283.744
283.658
283.42
282.973
283.071
283.482
283.533
283.561
284.351
284.827
285.405
285.949
285.997
286.176
286.496
286.422
286.444
286.577
286.071
285.543
284.856
284.5
284.643
283.871
283.434
283.378
283.169
283.607
283.84
283.677
284.093
284.184
284.173
285.152
284.761
284.426
284.342
284.537
284.67
284.849
284.74
284.546
284.809
285.096
285.367
285.526
285.554
285.735
285.921
285.995
285.919
285.706
286.377
286.126
286.075
286.057
286.301
286.359
286.687
286.477
286.607
286.945
287.042
287.198
287.411
287.431
287.546
287.588
287.739
287.955
288.028
288.268
288.186
288.074
288.133
287.844
287.646
287.234
287.125
287.404
287.305
286.812
286.944
287.262
287.523
286.619
286.055
285.676
285.811
285.116
285.183
285.031
286.32
285.846
286.357
286.861
287.24
286.79
287.291
286.921
287.504
288.203
287.969
288.644
288.629
288.456
288.461
288.393
288.453
288.566
288.721
288.891
288.925
289.057
289.021
288.864
288.654
288.606
289.222
289.203
289.188
289.242
289.455
289.65
289.739
289.87
289.8
289.59
289.411
289.401
289.593
289.259
288.864
288.919
289.221
289.839
289.926
289.879
289.926
289.966
290.02
290.138
290.21
290.256
290.37
290.496
290.526
290.719
290.697
290.853
290.907
291.017
291.153
291.259
291.329
291.4
291.455
291.44
291.259
291.139
290.913
291.012
290.889
290.548
290.581
290.329
290.355
290.486
290.115
290.095
290.254
290.255
291.123
291.131
291.178
291.407
291.524
291.534
291.55
291.615
291.743
291.849
291.899
292.012
292.122
292.248
292.13
292.304
292.379
292.403
292.508
292.567
292.634
292.625
292.725
292.806
292.904
292.856
292.747
292.572
292.484
292.484
292.334
292.384
292.263
292.011
291.801
292
291.652
291.654
291.751
291.686
292.002
291.41
291.532
291.453
290.972
290.457
290.393
290.916
291.412
291.413
290.93
290.426
289.879
289.294
289.423
288.778
289.001
288.44
287.853
288.201
287.698
288.096
287.681
287.332
287.06
286.891
286.825
286.83
286.888
287.019
287.211
287.417
287.559
287.664
287.759
287.847
287.817
287.749
287.675
287.728
287.784
287.834
287.888
287.857
287.815
287.771
287.651
287.583
287.454
287.322
287.224
287.48
287.507
287.57
287.736
287.722
287.725
287.948
287.921
287.912
287.915
287.928
287.946
287.966
288.049
288.047
288.047
288.159
288.143
288.131
288.209
288.232
288.262
288.301
288.183
288.054
288.072
288.102
288.151
288.332
288.266
288.218
288.35
288.413
288.492
288.591
288.417
288.222
288
287.751
287.477
287.182
287.174
287.212
287.318
287.71
287.578
287.505
287.809
287.907
288.052
288.244
287.901
287.506
287.765
288.09
288.462
288.787
288.449
288.15
288.482
288.761
289.073
289.322
289.032
288.769
288.54
288.347
288.195
288.08
288.318
288.445
288.603
288.825
288.662
288.527
288.71
288.852
289.018
289.207
289.015
288.794
289.017
289.267
289.54
289.731
289.471
289.231
289.419
289.651
289.9
290.164
290.008
289.832
289.634
289.409
289.154
288.867
288.545
289.017
288.725
289.248
289.764
289.581
290.088
289.954
290.515
290.99
291.461
291.528
291.062
290.619
290.729
290.249
290.408
289.958
289.489
289.718
289.289
289.537
289.761
290.121
289.929
290.321
290.145
290.562
290.968
290.847
291.257
291.156
291.591
291.964
291.916
291.88
291.853
291.859
291.897
291.963
292.069
292.485
292.611
292.702
292.728
292.914
293.034
293.078
293.106
293.232
293.277
293.189
293.251
293.172
293.355
293.367
293.423
293.489
293.57
293.505
293.614
293.648
293.713
293.772
293.873
293.928
293.97
294.002
294.096
294.148
294.076
294.007
293.854
293.804
293.779
293.658
293.709
293.57
293.784
293.928
293.968
294.095
294.198
294.233
294.241
294.316
294.357
294.4
294.45
294.516
294.581
294.63
294.672
294.725
294.69
294.57
294.503
294.376
294.424
294.289
294.293
294.48
294.599
294.442
294.225
294.318
294.078
293.84
294.096
294.332
294.456
294.679
294.801
294.875
294.914
295.004
294.946
295.003
294.949
294.903
294.871
294.84
294.815
294.75
294.794
294.837
294.894
294.95
294.797
294.691
294.729
294.767
295.028
295.062
295.104
295.171
295.219
295.261
295.301
295.246
295.15
295.102
295.09
295.012
295.116
294.991
295.199
295.248
295.287
295.314
295.374
295.396
295.437
295.461
295.515
295.551
295.57
295.616
295.631
295.692
295.73
295.765
295.786
295.841
295.875
295.799
295.766
295.666
295.615
295.521
295.581
295.486
295.479
295.394
295.436
295.355
295.34
295.479
295.404
295.568
295.602
295.678
295.742
295.818
295.868
295.91
295.936
295.977
296.002
296.025
296.052
296.093
296.123
296.153
296.192
296.207
296.244
296.277
296.31
296.32
296.362
296.388
296.319
296.392
296.424
296.449
296.47
296.502
296.529
296.545
296.58
296.616
296.639
296.667
296.678
296.712
296.738
296.755
296.763
296.791
296.821
296.772
296.836
296.852
296.88
296.9
296.924
296.952
296.966
296.988
297.014
297.03
297.056
297.066
297.096
297.11
297.128
297.137
297.161
297.184
297.195
297.225
297.202
297.14
297.121
297.06
297.038
296.981
296.98
296.957
296.896
296.89
296.864
296.814
296.853
296.774
296.676
296.733
296.675
296.752
296.65
296.568
296.568
296.545
296.476
296.518
296.464
296.435
296.382
296.419
296.435
296.486
296.4
296.284
296.344
296.274
296.206
296.169
296.094
296.074
296.057
295.984
295.958
295.936
296.026
296.047
295.99
295.922
295.886
295.826
295.967
296.062
296.122
296.157
296.225
296.191
296.186
296.31
296.392
296.511
296.587
296.699
296.773
296.821
296.853
296.899
296.941
296.991
297.024
297.064
297.104
297.149
297.183
297.215
297.241
297.257
297.279
297.301
297.313
297.338
297.346
297.374
297.383
297.393
297.421
297.438
297.454
297.467
297.489
297.506
297.522
297.534
297.552
297.57
297.58
297.596
297.585
297.528
297.513
297.457
297.444
297.391
297.395
297.37
297.322
297.361
297.318
297.3
297.252
297.291
297.251
297.225
297.29
297.251
297.331
297.358
297.389
297.426
297.467
297.492
297.518
297.563
297.59
297.613
297.623
297.642
297.659
297.671
297.688
297.698
297.718
297.727
297.732
297.758
297.771
297.79
297.802
297.821
297.835
297.848
297.856
297.869
297.884
297.897
297.905
297.911
297.931
297.902
297.889
297.845
297.838
297.785
297.771
297.731
297.737
297.715
297.673
297.673
297.653
297.613
297.647
297.617
297.598
297.588
297.616
297.646
297.672
297.705
297.735
297.765
297.788
297.82
297.844
297.876
297.892
297.925
297.952
297.975
297.984
297.997
298.008
298.026
298.035
298.044
298.059
298.068
298.081
298.098
298.107
298.116
298.126
298.135
298.15
298.155
298.163
298.17
298.187
298.167
298.206
298.215
298.226
298.232
298.245
298.251
298.267
298.273
298.284
298.294
298.303
298.313
298.33
298.336
298.35
298.353
298.366
298.377
298.379
298.388
298.39
298.401
298.385
298.378
298.346
298.335
298.3
298.291
298.261
298.288
298.268
298.252
298.217
298.225
298.202
298.179
298.204
298.16
298.108
298.142
298.117
298.159
298.107
298.066
298.059
298.018
298.055
298.027
298.007
297.969
298.004
297.974
297.955
297.994
298.016
297.974
297.919
297.941
297.871
297.814
297.764
297.703
297.65
297.583
297.652
297.71
297.762
297.82
297.869
297.923
297.968
298.02
298.062
298.112
298.152
298.175
298.202
298.217
298.242
298.259
298.286
298.299
298.325
298.338
298.364
298.375
298.4
298.422
298.436
298.449
298.446
298.476
298.471
298.485
298.489
298.494
298.504
298.514
298.527
298.536
298.543
298.549
298.557
298.567
298.574
298.584
298.574
298.544
298.535
298.508
298.5
298.473
298.496
298.472
298.453
298.435
298.449
298.432
298.423
298.45
298.466
298.434
298.396
298.413
298.36
298.319
298.282
298.239
298.199
298.281
298.321
298.358
298.396
298.43
298.467
298.499
298.533
298.554
298.576
298.595
298.604
298.61
298.614
298.623
298.619
298.64
298.637
298.649
298.656
298.668
298.67
298.691
298.692
298.702
298.706
298.705
298.715
298.707
298.684
298.666
298.651
298.647
298.615
298.624
298.606
298.584
298.61
298.593
298.575
298.572
298.582
298.603
298.613
298.634
298.644
298.666
298.672
298.693
298.711
298.729
298.73
298.747
298.743
298.76
298.757
298.772
298.778
298.782
298.79
298.801
298.802
298.799
298.805
298.804
298.817
298.809
298.837
298.845
298.846
298.844
298.855
298.849
298.861
298.866
298.878
298.882
298.896
298.897
298.909
298.91
298.894
298.915
298.92
298.933
298.919
298.94
298.92
298.946
298.954
298.971
298.971
298.972
298.976
298.985
298.999
298.974
299.002
298.999
299.004
298.996
299.001
299.012
299.023
299.03
299.036
299.042
299.042
299.047
299.038
299.018
299.013
299
299.001
298.996
298.978
299.001
298.958
298.985
298.992
299.005
299.01
299.027
299.039
299.047
299.069
299.069
299.091
299.075
299.068
299.08
299.083
299.088
299.091
299.08
299.069
299.054
299.05
299.059
299.051
299.042
299.053
299.053
299.074
299.08
299.084
299.121
299.109
299.127
299.116
299.108
299.095
299.113
299.12
299.136
299.117
299.114
299.097
299.094
299.102
299.083
299.081
299.078
299.082
299.094
299.099
299.111
299.123
299.126
299.156
299.138
299.166
299.156
299.153
299.167
299.171
299.152
299.165
299.183
299.187
299.191
299.192
299.19
299.205
299.206
299.192
299.172
299.177
299.159
299.155
299.163
299.134
299.137
299.133
299.129
299.132
299.124
299.13
299.12
299.103
299.121
299.09
299.069
299.082
299.064
299.049
299.032
299.018
299.001
298.978
298.955
298.935
298.917
298.935
298.949
298.968
298.953
298.922
298.951
298.933
298.919
298.897
298.923
298.906
298.897
298.872
298.885
298.878
298.864
298.861
298.839
298.86
298.844
298.831
298.812
298.836
298.797
298.788
298.78
298.798
298.772
298.749
298.773
298.759
298.747
298.72
298.73
298.712
298.749
298.732
298.746
298.765
298.774
298.72
298.691
298.662
298.63
298.6
298.566
298.6
298.569
298.535
298.504
298.538
298.57
298.6
298.629
298.659
298.687
298.716
298.743
298.769
298.796
298.821
298.836
298.851
298.859
298.849
298.827
298.846
298.867
298.891
298.912
298.933
298.911
298.889
298.866
298.843
298.821
298.795
298.77
298.743
298.716
298.689
298.659
298.631
298.602
298.633
298.661
298.689
298.717
298.743
298.769
298.794
298.819
298.842
298.864
298.887
298.908
298.93
298.953
298.974
298.996
299.012
298.992
299.009
299.029
299.045
299.024
299.039
299.059
299.078
299.096
299.114
299.126
299.145
299.16
299.173
299.192
299.202
299.193
299.209
299.206
299.22
299.218
299.229
299.227
299.208
299.213
299.254
299.249
299.258
299.238
299.237
299.222
299.215
299.207
299.21
299.192
299.172
299.173
299.191
299.215
299.217
299.199
299.186
299.192
299.165
299.181
299.194
299.205
299.206
299.218
299.243
299.244
299.242
299.251
299.243
299.231
299.24
299.249
299.264
299.261
299.243
299.246
299.255
299.249
299.25
299.252
299.249
299.25
299.235
299.221
299.204
299.222
299.197
299.211
299.223
299.232
299.233
299.249
299.258
299.325
299.332
299.285
299.283
299.25
299.246
299.296
299.287
299.274
299.266
299.279
299.287
299.275
299.27
299.311
299.307
299.302
299.299
299.284
299.274
299.267
299.313
299.325
299.316
299.341
299.328
299.281
299.295
299.311
299.3
299.313
299.305
299.294
299.287
299.272
299.284
299.306
299.322
299.321
299.315
299.316
299.3
299.303
299.325
299.295
299.312
299.299
299.293
299.321
299.314
299.302
299.317
299.317
299.302
299.308
299.316
299.324
299.323
299.31
299.307
299.314
299.326
299.317
299.309
299.315
299.308
299.305
299.309
299.301
299.315
299.321
299.325
299.328
299.336
299.337
299.331
299.338
299.329
299.341
299.349
299.354
299.365
299.37
299.367
299.397
299.41
299.436
299.458
299.5
299.532
299.573
299.622
299.686
299.749
299.795
299.817
299.782
299.751
299.756
299.73
299.697
299.724
299.712
299.736
299.763
299.727
299.682
299.635
299.642
299.672
299.707
299.687
299.671
299.628
299.647
299.659
299.647
299.591
299.591
299.579
299.501
299.537
299.461
299.457
299.411
299.418
299.453
299.48
299.544
299.563
299.595
299.559
299.538
299.581
299.607
299.612
299.606
299.596
299.586
299.579
299.574
299.581
299.587
299.599
299.615
299.636
299.674
299.703
299.69
299.659
299.691
299.726
299.707
299.659
299.565
299.553
299.554
299.567
299.571
299.555
299.538
299.54
299.541
299.527
299.514
299.501
299.497
299.511
299.525
299.522
299.507
299.492
299.487
299.502
299.519
299.536
299.555
299.575
299.578
299.554
299.55
299.577
299.568
299.54
299.516
299.526
299.533
299.514
299.496
299.481
299.473
299.489
299.506
299.496
299.479
299.464
299.45
299.459
299.466
299.473
299.478
299.483
299.488
299.492
299.496
299.484
299.472
299.461
299.45
299.439
299.428
299.418
299.408
299.399
299.389
299.381
299.372
299.364
299.357
299.349
299.346
299.353
299.36
299.368
299.376
299.385
299.394
299.403
299.413
299.423
299.434
299.444
299.456
299.467
299.48
299.475
299.463
299.451
299.446
299.458
299.471
299.465
299.453
299.441
299.43
299.435
299.44
299.429
299.419
299.408
299.404
299.414
299.424
299.419
299.409
299.399
299.394
299.404
299.414
299.424
299.435
299.447
299.46
299.453
299.441
299.429
299.422
299.434
299.446
299.437
299.426
299.415
299.405
299.412
299.418
299.408
299.398
299.389
299.384
299.393
299.402
299.396
299.387
299.378
299.37
299.375
299.381
299.385
299.39
299.394
299.399
299.39
299.381
299.372
299.369
299.377
299.385
299.381
299.373
299.365
299.357
299.361
299.364
299.357
299.349
299.342
299.34
299.346
299.353
299.35
299.343
299.337
299.334
299.34
299.347
299.354
299.361
299.369
299.377
299.372
299.364
299.357
299.353
299.36
299.368
299.363
299.355
299.349
299.342
299.346
299.35
299.343
299.337
299.331
299.328
299.334
299.34
299.336
299.33
299.325
299.321
299.326
299.332
299.338
299.344
299.351
299.358
299.365
299.372
299.38
299.389
299.398
299.407
299.417
299.428
299.44
299.453
299.467
299.483
299.501
299.523
299.548
299.517
299.499
299.473
299.483
299.492
299.495
299.446
299.427
299.386
299.343
299.358
299.396
299.446
299.329
299.325
299.321
299.346
299.307
299.289
299.28
299.289
299.296
299.297
299.292
299.288
299.274
299.287
299.262
299.257
299.253
299.264
299.277
299.271
299.283
299.277
299.266
299.27
299.25
299.267
299.271
299.275
299.256
299.262
299.266
299.261
299.246
299.231
299.225
299.246
299.235
299.222
299.216
299.202
299.195
299.188
299.173
299.164
299.154
299.137
299.148
299.157
299.166
299.181
299.188
299.195
299.209
299.215
299.228
299.24
299.245
299.251
299.258
299.268
299.278
299.295
299.285
299.268
299.258
299.247
299.239
299.233
299.221
299.228
299.236
299.225
299.215
299.208
299.201
299.187
299.18
299.173
299.157
299.149
299.141
299.131
299.12
299.109
299.091
299.103
299.113
299.095
299.084
299.072
299.052
299.065
299.076
299.087
299.105
299.123
299.132
299.141
299.149
299.165
299.173
299.181
299.195
299.203
299.213
299.224
299.237
299.248
299.262
299.274
299.291
299.305
299.319
299.336
299.358
299.389
299.362
299.341
299.322
299.336
299.357
299.381
299.41
299.419
299.452
299.451
299.446
299.439
299.461
299.482
299.467
299.453
299.44
299.427
299.438
299.449
299.43
299.421
299.413
299.398
299.405
299.411
299.417
299.421
299.422
299.397
299.392
299.367
299.346
299.352
299.374
299.376
299.397
299.396
299.393
299.388
299.383
299.367
299.371
299.374
299.376
299.357
299.356
299.337
299.333
299.327
299.318
299.306
299.29
299.277
299.263
299.25
299.237
299.248
299.258
299.274
299.283
299.3
299.308
299.314
299.318
299.3
299.296
299.29
299.273
299.266
299.249
299.241
299.233
299.222
299.211
299.2
299.19
299.176
299.166
299.157
299.142
299.133
299.124
299.115
299.097
299.106
299.116
299.099
299.089
299.078
299.068
299.057
299.045
299.032
299.019
299.004
298.988
298.971
298.949
298.966
298.982
298.961
298.944
298.926
298.903
298.884
298.86
298.839
298.817
298.792
298.768
298.742
298.717
298.69
298.662
298.634
298.604
298.573
298.54
298.507
298.472
298.434
298.401
298.362
298.327
298.285
298.242
298.201
298.161
298.204
298.25
298.214
298.167
298.121
298.072
298.031
297.978
297.935
297.878
297.834
297.774
297.728
297.661
297.599
297.529
297.456
297.4
297.323
297.263
297.182
297.104
297.185
297.216
297.034
296.944
296.874
297.031
297.117
297.205
297.288
297.344
297.422
297.475
297.546
297.496
297.446
297.369
297.318
297.234
297.147
297.057
296.961
296.874
296.802
296.897
296.998
296.941
296.837
296.733
296.626
296.555
296.438
296.365
296.236
296.094
295.969
295.876
295.727
295.563
295.463
295.287
295.179
295.003
294.895
295.087
295.008
294.799
294.578
294.493
294.227
293.983
293.696
293.411
293.097
293.201
293.378
293.397
292.916
292.97
293.264
293.601
293.877
294.15
294.413
294.642
294.713
294.94
294.879
295.083
295.147
295.217
295.294
295.376
295.549
295.635
295.792
295.945
296.016
296.165
296.296
296.232
296.095
296.03
295.877
295.716
295.648
295.47
295.399
295.339
295.286
295.471
295.527
295.586
295.751
295.812
295.969
296.117
296.173
296.311
296.368
296.427
296.489
296.608
296.669
296.778
296.884
296.984
297.036
297.091
297.182
297.268
297.351
297.398
297.475
297.521
297.567
297.614
297.683
297.747
297.79
297.851
297.893
297.949
297.99
298.042
298.081
298.13
298.178
298.142
298.093
298.056
298.004
297.965
297.909
297.869
297.81
297.768
297.704
297.638
297.593
297.661
297.727
297.79
297.829
297.888
297.926
297.981
298.018
298.069
298.106
298.153
298.188
298.223
298.258
298.293
298.335
298.368
298.407
298.439
298.476
298.444
298.413
298.374
298.342
298.301
298.267
298.309
298.348
298.381
298.418
298.449
298.48
298.51
298.544
298.575
298.606
298.577
298.546
298.514
298.484
298.516
298.547
298.518
298.486
298.453
298.422
298.386
298.354
298.316
298.275
298.233
298.199
298.242
298.283
298.322
298.359
298.39
298.425
298.456
298.488
298.458
298.427
298.394
298.363
298.327
298.289
298.25
298.208
298.164
298.118
298.082
298.033
297.996
297.943
297.906
297.849
297.811
297.75
297.686
297.619
297.549
297.506
297.43
297.385
297.305
297.219
297.131
297.081
297.172
297.259
297.214
297.125
297.032
296.933
296.83
296.721
296.666
296.549
296.493
296.44
296.563
296.614
296.728
296.778
296.884
296.984
297.079
297.169
297.125
297.034
296.937
296.835
296.788
296.678
296.63
296.514
296.388
296.257
296.206
296.063
295.914
295.861
295.695
295.645
295.811
295.963
296.012
296.157
296.291
296.339
296.466
296.584
296.539
296.419
296.374
296.244
296.109
296.064
295.917
295.762
295.598
295.419
295.236
295.029
294.821
294.588
294.342
294.087
293.793
293.514
293.173
292.839
292.747
292.39
292.324
292.287
292.661
292.691
293.061
293.11
293.438
293.735
294.031
294.285
294.243
293.981
293.695
293.383
293.349
293.028
293.01
292.649
292.275
292.282
292.65
293
293.001
292.659
292.314
292.35
292.677
293.013
293.305
293.308
293.315
293.327
293.637
293.663
293.941
294.209
294.18
293.911
293.889
293.617
293.604
293.599
293.859
293.873
294.131
294.153
294.39
294.419
294.455
294.497
294.541
294.767
294.984
295.186
295.14
294.942
294.721
294.683
294.902
295.1
295.292
295.331
295.372
295.552
295.716
295.874
295.832
295.674
295.508
295.467
295.635
295.792
295.755
295.599
295.43
295.254
295.064
294.864
294.651
294.621
294.831
295.033
295.003
294.802
294.594
294.367
294.347
294.115
294.103
293.85
293.597
293.31
293.027
292.704
292.384
292.021
291.658
291.729
291.355
291.45
291.085
290.707
290.843
290.483
290.632
290.294
289.96
290.137
290.451
290.768
290.892
290.592
290.296
290.438
290.719
291.005
291.292
291.194
291.086
290.969
291.302
291.197
291.541
291.875
291.803
292.139
292.08
292.421
292.735
293.042
293.061
292.767
292.462
292.505
292.196
292.253
291.946
291.629
291.711
291.401
291.493
291.579
291.862
291.789
292.079
292.014
292.308
292.594
292.549
292.834
292.8
293.083
293.351
293.335
293.32
293.598
293.846
294.094
294.088
293.847
293.601
293.608
293.85
294.085
294.085
293.856
293.619
293.369
293.107
293.133
292.869
292.903
292.637
292.362
292.413
292.141
292.199
291.93
291.658
291.383
291.108
290.834
290.565
290.302
290.049
289.808
289.583
289.375
289.187
289.019
288.871
288.744
288.636
288.546
288.47
288.408
288.357
288.316
288.281
288.252
288.228
288.207
288.189
288.174
288.16
288.149
288.139
288.131
288.125
288.121
288.119
288.117
288.116
288.114
288.112
288.107
288.11
288.112
288.111
288.106
288.103
288.099
288.104
288.111
288.12
288.116
288.115
288.12
288.126
288.134
288.146
288.134
288.124
288.131
288.144
288.159
288.171
288.154
288.139
288.126
288.114
288.105
288.097
288.097
288.107
288.118
288.122
288.109
288.098
288.099
288.111
288.125
288.141
288.136
288.131
288.146
288.163
288.183
288.193
288.172
288.153
288.159
288.179
288.202
288.228
288.217
288.204
288.19
288.175
288.16
288.145
288.157
288.171
288.188
288.214
288.194
288.176
288.194
288.216
288.24
288.268
288.238
288.206
288.227
288.251
288.279
288.329
288.294
288.264
288.299
288.335
288.375
288.418
288.372
288.332
288.296
288.265
288.237
288.212
288.229
288.256
288.288
288.308
288.274
288.244
288.257
288.289
288.325
288.366
288.346
288.323
288.362
288.406
288.456
288.49
288.437
288.389
288.411
288.462
288.519
288.543
288.484
288.43
288.382
288.339
288.301
288.267
288.237
288.21
288.186
288.164
288.145
288.128
288.113
288.1
288.101
288.115
288.13
288.132
288.116
288.102
288.102
288.116
288.133
288.151
288.15
288.148
288.168
288.19
288.215
288.219
288.193
288.17
288.172
288.195
288.221
288.25
288.248
288.243
288.275
288.311
288.35
288.357
288.317
288.28
288.283
288.32
288.361
288.407
288.403
288.395
288.444
288.499
288.561
288.573
288.51
288.454
288.459
288.516
288.58
288.65
288.643
288.63
288.61
288.583
288.551
288.513
288.469
288.421
288.368
288.312
288.35
288.394
288.446
288.527
288.466
288.414
288.473
288.533
288.601
288.679
288.597
288.507
288.58
288.665
288.765
288.88
288.772
288.679
288.768
288.868
288.982
289.071
288.953
288.847
288.752
288.668
288.593
288.527
288.576
288.647
288.727
288.778
288.694
288.618
288.654
288.733
288.821
288.918
288.871
288.816
288.916
289.027
289.149
289.216
289.09
288.975
289.025
289.143
289.271
289.411
289.353
289.284
289.203
289.109
289.002
288.881
289.014
289.166
289.335
289.466
289.295
289.141
289.252
289.408
289.58
289.766
289.653
289.523
289.727
289.947
290.181
290.297
290.069
289.854
289.965
290.176
290.398
290.487
290.269
290.061
289.864
289.679
289.507
289.348
289.432
289.592
289.764
289.837
289.664
289.503
289.562
289.724
289.897
290.08
290.02
289.949
290.144
290.349
290.563
290.628
290.417
290.214
290.272
290.474
290.682
290.726
290.519
290.319
290.127
289.945
289.772
289.609
289.457
289.316
289.185
289.065
288.956
288.856
288.765
288.683
288.705
288.789
288.882
288.9
288.806
288.72
288.728
288.815
288.91
289.014
289.003
288.984
289.096
289.217
289.349
289.371
289.238
289.116
289.127
289.25
289.384
289.528
289.514
289.492
289.644
289.807
289.98
290.004
289.831
289.668
289.681
289.845
290.018
290.2
290.186
290.163
290.354
290.552
290.758
290.779
290.575
290.377
290.39
290.588
290.792
291.002
290.99
290.969
290.939
290.898
290.847
290.785
290.713
290.629
290.534
290.425
290.678
290.937
291.2
291.283
291.029
290.778
290.867
291.111
291.358
291.606
291.54
291.465
291.73
291.993
292.253
292.303
292.051
291.796
291.856
292.103
292.349
292.39
292.15
291.908
291.666
291.423
291.183
290.945
291.013
291.245
291.48
291.529
291.298
291.07
291.118
291.343
291.57
291.799
291.762
291.717
291.955
292.192
292.427
292.458
292.227
291.995
292.029
292.257
292.485
292.71
292.686
292.659
292.627
292.591
292.552
292.509
292.462
292.72
292.679
292.937
293.187
293.16
293.407
293.387
293.631
293.864
294.087
294.092
293.873
293.645
293.66
293.428
293.449
293.214
292.971
293.003
292.759
292.795
292.829
293.062
293.033
293.265
293.24
293.47
293.693
293.676
293.896
293.884
294.099
294.305
294.301
294.3
294.301
294.303
294.309
294.317
294.33
294.553
294.571
294.778
294.977
295.161
295.189
295.219
295.397
295.564
295.721
295.69
295.532
295.366
295.338
295.504
295.662
295.81
295.839
295.871
295.905
295.94
295.979
296.02
296.159
296.2
296.331
296.453
296.495
296.611
296.653
296.697
296.742
296.846
296.891
296.989
297.082
297.04
296.946
296.903
296.803
296.76
296.719
296.822
296.862
296.958
296.999
297.089
297.129
297.17
297.212
297.254
297.298
297.341
297.42
297.462
297.536
297.577
297.646
297.605
297.565
297.494
297.453
297.377
297.335
297.412
297.485
297.525
297.593
297.632
297.671
297.71
297.772
297.83
297.868
297.923
297.959
298.011
298.046
298.094
298.129
298.174
298.216
298.183
298.14
298.105
298.059
298.024
297.975
297.939
297.886
297.85
297.793
297.733
297.695
297.756
297.814
297.868
297.904
297.955
297.989
298.037
298.071
298.116
298.149
298.191
298.224
298.257
298.295
298.332
298.367
298.397
298.429
298.459
298.489
298.518
298.548
298.577
298.606
298.634
298.662
298.689
298.716
298.74
298.766
298.789
298.815
298.836
298.856
298.88
298.898
298.921
298.938
298.915
298.892
298.874
298.85
298.831
298.811
298.785
298.764
298.737
298.714
298.686
298.661
298.633
298.605
298.631
298.659
298.684
298.711
298.733
298.76
298.781
298.806
298.826
298.844
298.868
298.885
298.908
298.931
298.954
298.976
298.997
299.011
299.025
299.037
299.017
299.004
298.99
298.969
298.983
298.996
299.008
299.029
299.048
299.06
299.07
299.081
299.063
299.052
299.04
299.021
299.032
299.044
299.024
299.013
299
298.988
298.975
298.961
298.947
298.924
298.939
298.953
298.931
298.917
298.901
298.878
298.862
298.838
298.82
298.801
298.775
298.755
298.729
298.707
298.68
298.656
298.629
298.603
298.576
298.547
298.575
298.601
298.574
298.547
298.518
298.489
298.518
298.546
298.572
298.599
298.626
298.653
298.677
298.703
298.725
298.75
298.77
298.795
298.814
298.831
298.855
298.871
298.894
298.909
298.924
298.946
298.967
298.98
298.993
299.005
298.984
298.972
298.959
298.938
298.951
298.964
298.943
298.93
298.916
298.902
298.887
298.864
298.848
298.825
298.807
298.789
298.765
298.745
298.72
298.699
298.673
298.65
298.624
298.597
298.622
298.647
298.67
298.695
298.716
298.74
298.76
298.784
298.801
298.819
298.842
298.857
298.88
298.895
298.909
298.922
298.901
298.887
298.873
298.851
298.835
298.812
298.796
298.778
298.754
298.735
298.711
298.691
298.666
298.644
298.619
298.596
298.571
298.545
298.518
298.49
298.461
298.432
298.4
298.37
298.336
298.301
298.263
298.232
298.27
298.306
298.276
298.239
298.2
298.159
298.127
298.083
298.051
298.004
297.971
297.921
297.887
297.834
297.778
297.719
297.657
297.62
297.554
297.516
297.446
297.372
297.294
297.253
297.332
297.408
297.479
297.547
297.583
297.647
297.683
297.743
297.708
297.674
297.612
297.578
297.512
297.443
297.37
297.294
297.214
297.175
297.256
297.334
297.298
297.22
297.137
297.05
297.012
296.92
296.882
296.783
296.679
296.57
296.53
296.413
296.29
296.25
296.119
296.081
296.213
296.339
296.375
296.493
296.605
296.641
296.746
296.846
296.811
296.711
296.677
296.57
296.457
296.424
296.304
296.178
296.045
296.011
296.145
296.272
296.241
296.115
295.981
295.952
296.086
296.213
296.334
296.362
296.392
296.506
296.537
296.644
296.747
296.778
296.875
296.907
296.941
296.976
297.065
297.1
297.184
297.264
297.339
297.373
297.407
297.478
297.544
297.608
297.641
297.7
297.733
297.766
297.799
297.854
297.906
297.938
297.986
298.018
298.064
298.095
298.138
298.169
298.208
298.247
298.217
298.178
298.149
298.107
298.077
298.033
298.002
297.955
297.924
297.874
297.821
297.789
297.843
297.894
297.943
297.972
298.018
298.047
298.09
298.119
298.16
298.188
298.226
298.254
298.283
298.312
298.341
298.374
298.403
298.434
298.462
298.491
298.463
298.436
298.406
298.378
298.346
298.318
298.351
298.382
298.409
298.439
298.465
298.492
298.519
298.545
298.57
298.594
298.569
298.545
298.519
298.493
298.519
298.545
298.52
298.494
298.467
298.442
298.413
298.387
298.356
298.324
298.29
298.262
298.297
298.33
298.362
298.392
298.417
298.445
298.47
298.496
298.472
298.449
298.421
298.397
298.367
298.336
298.304
298.27
298.235
298.198
298.171
298.131
298.104
298.062
298.034
297.989
297.961
297.914
297.864
297.812
297.758
297.727
297.669
297.638
297.576
297.512
297.444
297.411
297.48
297.546
297.608
297.668
297.697
297.753
297.782
297.835
297.807
297.779
297.725
297.698
297.64
297.579
297.516
297.45
297.38
297.307
297.23
297.15
297.116
297.031
296.998
296.967
297.054
297.084
297.167
297.198
297.275
297.349
297.42
297.487
297.459
297.391
297.32
297.245
297.216
297.137
297.109
297.025
296.937
296.844
296.815
296.717
296.614
296.585
296.476
296.449
296.558
296.663
296.689
296.787
296.881
296.908
296.997
297.082
297.056
296.971
296.946
296.856
296.762
296.738
296.638
296.533
296.424
296.308
296.187
296.06
295.926
295.784
295.636
295.478
295.313
295.137
294.954
294.756
294.738
294.538
294.525
294.515
294.713
294.724
294.918
294.935
295.116
295.291
295.455
295.612
295.592
295.435
295.272
295.098
295.082
294.904
294.892
294.704
294.508
294.504
294.698
294.883
294.877
294.694
294.502
294.502
294.691
294.873
295.046
295.052
295.06
295.07
295.241
295.255
295.417
295.573
295.557
295.402
295.389
295.229
295.219
295.212
295.37
295.379
295.532
295.543
295.689
295.704
295.72
295.739
295.76
295.902
296.036
296.164
296.142
296.014
295.88
295.861
295.995
296.122
296.244
296.263
296.285
296.4
296.51
296.615
296.595
296.489
296.379
296.36
296.47
296.576
296.559
296.453
296.343
296.226
296.105
295.977
295.844
295.829
295.962
296.09
296.076
295.949
295.817
295.677
295.667
295.522
295.514
295.364
295.206
295.042
294.87
294.691
294.504
294.309
294.106
294.115
293.908
293.92
293.709
293.491
293.51
293.289
293.311
293.088
292.86
292.887
293.111
293.33
293.348
293.132
292.911
292.931
293.149
293.363
293.571
293.559
293.544
293.528
293.739
293.725
293.932
294.134
294.124
294.321
294.315
294.507
294.692
294.869
294.869
294.693
294.511
294.515
294.328
294.334
294.142
293.944
293.955
293.752
293.764
293.775
293.972
293.964
294.158
294.151
294.34
294.524
294.52
294.698
294.696
294.869
295.036
295.037
295.039
295.202
295.358
295.508
295.503
295.354
295.199
295.197
295.351
295.499
295.495
295.348
295.195
295.036
294.87
294.872
294.701
294.703
294.528
294.346
294.351
294.165
294.17
293.979
293.783
293.582
293.375
293.163
292.948
292.729
292.507
292.282
292.056
291.829
291.603
291.379
291.157
291.186
291.406
291.628
291.645
291.424
291.205
291.216
291.434
291.654
291.876
291.867
291.852
292.077
292.3
292.523
292.534
292.313
292.09
292.098
292.32
292.54
292.759
292.753
292.743
292.961
293.174
293.384
293.391
293.182
292.969
292.974
293.186
293.394
293.598
293.595
293.589
293.79
293.985
294.175
294.177
293.988
293.794
293.797
293.991
294.179
294.362
294.361
294.359
294.355
294.535
294.531
294.706
294.874
294.873
295.036
295.036
295.194
295.346
295.493
295.491
295.345
295.194
295.193
295.037
295.037
294.875
294.708
294.71
294.537
294.539
294.54
294.711
294.711
294.877
294.876
295.038
295.193
295.193
295.343
295.344
295.489
295.628
295.631
295.633
295.637
295.641
295.646
295.651
295.659
295.796
295.806
295.938
296.065
296.186
296.198
296.211
296.327
296.438
296.544
296.53
296.424
296.314
296.302
296.412
296.518
296.507
296.402
296.291
296.176
296.055
295.928
295.92
295.789
295.782
295.777
295.907
295.913
296.039
296.046
296.167
296.282
296.392
296.498
296.49
296.384
296.274
296.159
296.152
296.032
296.027
295.902
295.772
295.768
295.898
296.022
296.018
295.894
295.765
295.763
295.891
296.015
296.134
296.137
296.142
296.146
296.261
296.267
296.377
296.483
296.476
296.371
296.366
296.256
296.252
296.248
296.357
296.361
296.466
296.471
296.572
296.577
296.584
296.591
296.599
296.609
296.619
296.631
296.645
296.66
296.676
296.695
296.715
296.811
296.833
296.923
297.01
297.032
297.114
297.137
297.162
297.189
297.265
297.292
297.364
297.433
297.407
297.338
297.313
297.239
297.215
297.192
297.267
297.289
297.36
297.383
297.45
297.473
297.498
297.524
297.551
297.612
297.671
297.727
297.753
297.805
297.831
297.858
297.886
297.934
297.98
298.007
298.05
298.077
298.117
298.144
298.182
298.208
298.244
298.279
298.254
298.219
298.194
298.156
298.131
298.091
298.066
298.024
297.999
297.954
297.907
297.881
297.929
297.974
298.018
298.042
298.083
298.107
298.145
298.169
298.205
298.229
298.264
298.287
298.312
298.343
298.373
298.402
298.425
298.452
298.475
298.498
298.522
298.545
298.569
298.593
298.617
298.642
298.663
298.687
298.707
298.731
298.75
298.773
298.79
298.806
298.829
298.844
298.866
298.88
298.859
298.837
298.822
298.801
298.784
298.767
298.745
298.727
298.704
298.684
298.661
298.64
298.616
298.592
298.614
298.637
298.658
298.681
298.7
298.722
298.74
298.762
298.779
298.795
298.816
298.831
298.852
298.873
298.893
298.914
298.935
298.956
298.976
298.996
299.016
299.036
299.055
299.074
299.092
299.109
299.126
299.136
299.151
299.161
299.172
299.186
299.197
299.207
299.217
299.225
299.208
299.2
299.191
299.182
299.166
299.156
299.146
299.129
299.119
299.102
299.112
299.122
299.139
299.149
299.158
299.175
299.183
299.191
299.197
299.215
299.232
299.238
299.255
299.261
299.278
299.282
299.285
299.302
299.32
299.338
299.338
299.356
299.354
299.351
299.335
299.337
299.32
299.321
299.303
299.286
299.287
299.304
299.303
299.319
299.317
299.333
299.348
299.362
299.377
299.391
299.404
299.417
299.429
299.418
299.408
299.399
299.39
299.398
299.407
299.396
299.388
299.38
299.373
299.382
299.39
299.382
299.374
299.366
299.359
299.366
299.374
299.366
299.359
299.352
299.344
299.35
299.357
299.363
299.37
299.377
299.384
299.371
299.365
299.359
299.347
299.352
299.358
299.344
299.339
299.335
299.33
299.342
299.353
299.347
299.341
299.335
299.326
299.331
299.336
299.325
299.32
299.316
299.311
299.321
299.33
299.338
299.346
299.353
299.359
299.352
299.346
299.339
299.334
299.34
299.346
299.34
299.334
299.328
299.323
299.328
299.333
299.328
299.322
299.317
299.313
299.318
299.323
299.318
299.313
299.308
299.302
299.307
299.311
299.316
299.322
299.327
299.332
299.324
299.319
299.314
299.306
299.311
299.316
299.306
299.302
299.297
299.293
299.301
299.309
299.304
299.3
299.295
299.288
299.292
299.297
299.289
299.285
299.281
299.273
299.276
299.28
299.284
299.288
299.292
299.296
299.301
299.305
299.309
299.313
299.318
299.322
299.326
299.329
299.315
299.312
299.308
299.295
299.297
299.3
299.302
299.286
299.287
299.27
299.27
299.269
299.267
299.265
299.247
299.243
299.225
299.221
299.203
299.208
299.212
299.23
299.233
299.25
299.252
299.254
299.254
299.238
299.237
299.235
299.218
299.215
299.198
299.195
299.19
299.185
299.179
299.173
299.166
299.148
299.14
299.131
299.113
299.104
299.094
299.084
299.066
299.076
299.086
299.095
299.104
299.122
299.13
299.137
299.155
299.162
299.167
299.173
299.177
299.16
299.155
299.15
299.144
299.126
299.119
299.111
299.093
299.085
299.076
299.067
299.057
299.047
299.027
299.038
299.048
299.029
299.018
299.008
298.988
298.999
299.009
299.019
299.038
299.057
299.066
299.074
299.082
299.101
299.107
299.114
299.132
299.137
299.142
299.147
299.164
299.181
299.184
299.201
299.204
299.22
299.222
299.223
299.239
299.254
299.27
299.269
299.285
299.283
299.281
299.278
299.292
299.305
299.301
299.297
299.294
299.282
299.285
299.289
299.276
299.273
299.27
299.258
299.26
299.263
299.265
299.267
299.268
299.253
299.254
299.239
299.223
299.224
299.239
299.238
299.252
299.251
299.249
299.247
299.246
299.233
299.234
299.236
299.237
299.223
299.223
299.209
299.209
299.208
299.207
299.206
299.189
299.187
299.171
299.168
299.151
299.154
299.157
299.173
299.175
299.191
299.193
299.194
299.194
299.18
299.179
299.177
299.162
299.16
299.144
299.141
299.138
299.134
299.13
299.125
299.12
299.102
299.096
299.089
299.071
299.064
299.056
299.047
299.028
299.037
299.045
299.053
299.06
299.078
299.084
299.09
299.108
299.113
299.117
299.121
299.125
299.109
299.105
299.1
299.096
299.079
299.073
299.067
299.049
299.042
299.035
299.027
299.018
299.009
299
298.99
298.979
298.967
298.947
298.959
298.97
298.95
298.939
298.927
298.906
298.919
298.93
298.942
298.961
298.98
298.99
299
299.008
298.99
298.981
298.971
298.952
298.962
298.972
298.953
298.944
298.933
298.922
298.911
298.899
298.886
298.866
298.879
298.891
298.872
298.859
298.845
298.825
298.81
298.79
298.774
298.758
298.736
298.719
298.697
298.678
298.656
298.636
298.613
298.592
298.569
298.546
298.569
298.591
298.57
298.547
298.523
298.5
298.525
298.548
298.57
298.591
298.613
298.634
298.654
298.675
298.694
298.715
298.732
298.753
298.769
298.785
298.805
298.819
298.839
298.852
298.865
298.884
298.903
298.914
298.925
298.935
298.917
298.906
298.895
298.877
298.888
298.899
298.909
298.927
298.945
298.963
298.981
298.999
299.017
299.024
299.032
299.039
299.056
299.062
299.067
299.084
299.089
299.093
299.077
299.072
299.056
299.051
299.045
299.028
299.021
299.014
299.007
298.989
298.997
299.004
299.011
299.018
299.034
299.04
299.045
299.061
299.066
299.081
299.097
299.113
299.128
299.131
299.146
299.149
299.164
299.165
299.166
299.18
299.195
299.209
299.209
299.222
299.221
299.22
299.219
299.231
299.243
299.255
299.267
299.279
299.29
299.286
299.282
299.278
299.268
299.272
299.275
299.264
299.261
299.258
299.255
299.265
299.275
299.271
299.268
299.264
299.255
299.259
299.262
299.252
299.249
299.246
299.237
299.24
299.242
299.245
299.248
299.25
299.253
299.241
299.239
299.237
299.226
299.228
299.229
299.217
299.216
299.214
299.213
299.224
299.234
299.232
299.23
299.227
299.218
299.22
299.222
299.211
299.209
299.208
299.197
299.199
299.2
299.202
299.203
299.204
299.205
299.206
299.207
299.208
299.195
299.195
299.181
299.167
299.168
299.181
299.181
299.194
299.194
299.193
299.192
299.191
299.18
299.18
299.181
299.181
299.168
299.168
299.155
299.154
299.153
299.152
299.15
299.136
299.134
299.119
299.116
299.1
299.104
299.107
299.121
299.123
299.138
299.139
299.141
299.142
299.129
299.127
299.125
299.111
299.109
299.095
299.092
299.089
299.085
299.07
299.074
299.077
299.063
299.059
299.055
299.05
299.035
299.03
299.024
299.008
299.001
298.995
298.987
298.98
298.971
298.954
298.962
298.97
298.954
298.945
298.936
298.919
298.928
298.937
298.945
298.962
298.978
298.985
298.992
298.998
299.014
299.02
299.025
299.04
299.044
299.049
299.053
299.067
299.081
299.084
299.098
299.1
299.113
299.115
299.117
299.13
299.143
299.155
299.156
299.168
299.168
299.168
299.168
299.179
299.19
299.189
299.188
299.187
299.177
299.178
299.178
299.167
299.167
299.166
299.156
299.156
299.156
299.156
299.156
299.156
299.144
299.143
299.131
299.118
299.119
299.132
299.132
299.144
299.145
299.145
299.145
299.145
299.134
299.134
299.133
299.133
299.121
299.121
299.109
299.107
299.106
299.104
299.102
299.089
299.086
299.073
299.07
299.056
299.059
299.063
299.076
299.078
299.091
299.093
299.095
299.097
299.085
299.083
299.081
299.068
299.065
299.053
299.049
299.046
299.042
299.038
299.034
299.03
299.015
299.01
299.004
298.989
298.983
298.976
298.969
298.953
298.961
298.968
298.974
298.98
298.995
299.001
299.006
299.02
299.025
299.029
299.033
299.036
299.024
299.02
299.015
299.011
298.997
298.992
298.986
298.972
298.966
298.959
298.952
298.945
298.937
298.929
298.921
298.911
298.902
298.892
298.881
298.87
298.858
298.846
298.833
298.813
298.799
298.78
298.765
298.749
298.729
298.712
298.691
298.673
298.653
298.633
298.612
298.592
298.612
298.632
298.651
298.671
298.689
298.709
298.726
298.745
298.761
298.775
298.794
298.808
298.827
298.84
298.852
298.863
298.846
298.834
298.821
298.803
298.79
298.771
298.757
298.742
298.723
298.706
298.687
298.67
298.651
298.632
298.612
298.592
298.572
298.55
298.527
298.503
298.478
298.456
298.43
298.408
298.38
298.35
298.32
298.296
298.328
298.358
298.336
298.305
298.274
298.24
298.217
298.182
298.159
298.122
298.099
298.059
298.036
297.994
297.95
297.904
297.856
297.831
297.78
297.756
297.702
297.645
297.586
297.561
297.621
297.678
297.733
297.785
297.808
297.857
297.88
297.927
297.905
297.883
297.835
297.814
297.764
297.711
297.655
297.597
297.537
297.514
297.575
297.633
297.613
297.554
297.492
297.427
297.406
297.338
297.318
297.246
297.171
297.092
297.072
296.989
296.902
296.882
296.791
296.773
296.864
296.952
296.97
297.053
297.133
297.151
297.227
297.299
297.282
297.209
297.192
297.116
297.036
297.02
296.936
296.848
296.756
296.741
296.833
296.922
296.909
296.82
296.728
296.716
296.809
296.897
296.982
296.993
297.006
297.087
297.101
297.178
297.251
297.266
297.336
297.351
297.368
297.386
297.452
297.471
297.534
297.593
297.65
297.669
297.689
297.743
297.794
297.843
297.863
297.909
297.929
297.95
297.972
298.015
298.056
298.077
298.116
298.137
298.174
298.195
298.23
298.251
298.284
298.315
298.294
298.263
298.242
298.209
298.188
298.153
298.132
298.095
298.075
298.035
297.993
297.973
298.015
298.055
298.094
298.113
298.149
298.168
298.203
298.222
298.255
298.274
298.305
298.325
298.345
298.365
298.386
298.414
298.435
298.461
298.482
298.506
298.486
298.466
298.44
298.42
298.393
298.373
298.401
298.427
298.446
298.471
298.49
298.509
298.529
298.552
298.573
298.593
298.575
298.554
298.532
298.513
298.535
298.557
298.539
298.517
298.494
298.476
298.452
298.434
298.408
298.381
298.354
298.335
298.363
298.39
298.416
298.441
298.458
298.482
298.499
298.521
298.504
298.488
298.465
298.448
298.424
298.399
298.372
298.345
298.316
298.286
298.268
298.236
298.218
298.184
298.166
298.131
298.114
298.076
298.037
297.996
297.954
297.935
297.89
297.872
297.825
297.775
297.723
297.705
297.757
297.807
297.791
297.741
297.688
297.633
297.575
297.515
297.498
297.434
297.418
297.403
297.467
297.482
297.543
297.558
297.616
297.672
297.725
297.776
297.762
297.711
297.657
297.601
297.587
297.528
297.515
297.454
297.389
297.322
297.309
297.238
297.164
297.152
297.074
297.063
297.141
297.215
297.226
297.297
297.365
297.377
297.441
297.504
297.493
297.43
297.42
297.355
297.287
297.277
297.206
297.131
297.053
296.972
296.887
296.798
296.705
296.696
296.789
296.878
296.869
296.781
296.688
296.68
296.773
296.862
296.947
296.955
296.963
297.044
297.122
297.197
297.189
297.114
297.036
297.029
297.107
297.182
297.176
297.101
297.023
296.941
296.856
296.767
296.674
296.668
296.761
296.85
296.845
296.756
296.664
296.567
296.563
296.462
296.459
296.354
296.245
296.131
296.013
295.889
295.761
295.627
295.488
295.487
295.343
295.342
295.193
295.038
295.038
294.878
295.193
295.342
295.486
295.486
295.625
295.626
295.759
295.887
296.011
296.009
295.886
295.758
295.757
295.624
295.886
296.009
296.127
296.128
296.129
296.243
296.352
296.457
296.455
296.35
296.241
296.24
296.35
296.454
296.555
296.556
296.557
296.56
296.656
296.66
296.752
296.841
296.926
296.93
296.935
297.017
297.095
297.17
297.166
297.091
297.012
297.008
297.087
297.162
297.234
297.238
297.242
297.248
297.254
297.261
297.269
297.337
297.346
297.411
297.474
297.483
297.543
297.552
297.563
297.575
297.631
297.644
297.698
297.749
297.738
297.686
297.675
297.62
297.61
297.6
297.656
297.665
297.717
297.727
297.777
297.788
297.799
297.811
297.825
297.839
297.855
297.901
297.918
297.961
297.978
298.019
298.003
297.987
297.945
297.93
297.886
297.872
297.916
297.959
297.973
298.014
298.028
298.043
298.059
298.097
298.133
298.149
298.184
298.2
298.233
298.25
298.281
298.298
298.327
298.355
298.339
298.31
298.294
298.264
298.249
298.217
298.202
298.168
298.153
298.118
298.081
298.066
298.104
298.139
298.173
298.187
298.219
298.234
298.264
298.279
298.308
298.323
298.351
298.366
298.382
298.408
298.432
298.456
298.472
298.494
298.51
298.526
298.542
298.559
298.577
298.595
298.613
298.632
298.65
298.668
298.686
298.704
298.72
298.738
298.753
298.767
298.785
298.798
298.816
298.828
298.811
298.794
298.781
298.764
298.75
298.735
298.718
298.702
298.684
298.668
298.65
298.632
298.614
298.596
298.615
298.632
298.65
298.667
298.683
298.7
298.716
298.733
298.747
298.761
298.777
298.79
298.807
298.823
298.84
298.857
298.874
298.885
298.895
298.904
298.888
298.878
298.868
298.851
298.862
298.872
298.882
298.897
298.913
298.922
298.93
298.937
298.922
298.915
298.906
298.891
298.899
298.908
298.893
298.885
298.876
298.866
298.856
298.846
298.835
298.818
298.83
298.841
298.825
298.814
298.802
298.786
298.774
298.758
298.745
298.731
298.714
298.699
298.683
298.667
298.65
298.633
298.617
298.598
298.579
298.563
298.582
298.601
298.585
298.566
298.546
298.531
298.551
298.57
298.589
298.603
298.619
298.634
298.651
298.667
298.683
298.698
298.713
298.729
298.742
298.756
298.771
298.783
298.798
298.81
298.821
298.836
298.851
298.861
298.87
298.879
298.865
298.855
298.846
298.831
298.841
298.851
298.837
298.827
298.817
298.806
298.795
298.78
298.768
298.753
298.741
298.727
298.712
298.698
298.683
298.667
298.652
298.636
298.621
298.606
298.623
298.638
298.654
298.668
298.683
298.697
298.711
298.726
298.739
298.752
298.766
298.778
298.792
298.803
298.813
298.823
298.81
298.8
298.789
298.775
298.764
298.75
298.738
298.725
298.711
298.697
298.684
298.669
298.655
298.64
298.626
298.61
298.592
298.574
298.555
298.536
298.515
298.5
298.479
298.464
298.441
298.417
298.392
298.377
298.402
298.427
298.413
298.388
298.363
298.336
298.322
298.294
298.28
298.251
298.238
298.206
298.194
298.161
298.126
298.09
298.053
298.04
298.001
297.989
297.947
297.904
297.858
297.846
297.892
297.936
297.978
298.018
298.028
298.067
298.078
298.114
298.103
298.093
298.056
298.047
298.008
297.968
297.925
297.881
297.835
297.825
297.872
297.916
297.907
297.863
297.816
297.768
297.759
297.709
297.7
297.647
297.592
297.534
297.526
297.466
297.403
297.396
297.33
297.323
297.389
297.452
297.459
297.519
297.577
297.584
297.64
297.693
297.687
297.633
297.627
297.571
297.513
297.507
297.446
297.383
297.317
297.312
297.378
297.441
297.437
297.373
297.307
297.303
297.369
297.433
297.494
297.498
297.502
297.561
297.566
297.622
297.675
297.681
297.732
297.738
297.744
297.751
297.8
297.808
297.855
297.899
297.942
297.95
297.958
297.999
298.038
298.076
298.084
298.12
298.129
298.139
298.149
298.183
298.215
298.226
298.256
298.268
298.297
298.309
298.336
298.349
298.375
298.4
298.388
298.363
298.351
298.325
298.314
298.285
298.275
298.246
298.236
298.205
298.172
298.163
298.195
298.227
298.257
298.266
298.294
298.303
298.331
298.34
298.366
298.377
298.401
298.412
298.424
298.437
298.45
298.472
298.486
298.507
298.521
298.541
298.528
298.515
298.494
298.481
298.459
298.447
298.469
298.49
298.502
298.522
298.534
298.547
298.56
298.579
298.596
298.613
298.601
298.584
298.566
298.553
298.571
298.589
298.578
298.56
298.541
298.53
298.511
298.5
298.479
298.458
298.436
298.425
298.447
298.469
298.49
298.51
298.52
298.538
298.549
298.567
298.557
298.547
298.529
298.52
298.501
298.481
298.46
298.438
298.415
298.391
298.382
298.357
298.348
298.322
298.313
298.286
298.278
298.249
298.219
298.187
298.154
298.146
298.112
298.104
298.068
298.03
297.991
297.983
298.023
298.061
298.097
298.132
298.139
298.172
298.179
298.211
298.204
298.198
298.166
298.16
298.126
298.091
298.054
298.016
297.977
297.935
297.892
297.847
297.84
297.793
297.787
297.781
297.829
297.834
297.88
297.886
297.929
297.97
298.01
298.049
298.043
298.005
297.965
297.923
297.918
297.874
297.869
297.824
297.776
297.727
297.722
297.671
297.617
297.613
297.556
297.553
297.609
297.663
297.667
297.718
297.768
297.772
297.819
297.865
297.861
297.816
297.812
297.765
297.715
297.712
297.66
297.606
297.55
297.491
297.43
297.366
297.3
297.231
297.159
297.083
297.005
296.923
296.838
296.749
296.746
296.654
296.652
296.651
296.744
296.745
296.834
296.835
296.921
297.002
297.081
297.156
297.154
297.079
297.001
296.919
296.918
296.833
297
297.078
297.153
297.226
297.227
297.228
297.298
297.364
297.428
297.426
297.362
297.296
297.295
297.362
297.425
297.487
297.487
297.489
297.548
297.604
297.658
297.657
297.603
297.546
297.545
297.602
297.656
297.708
297.709
297.71
297.76
297.762
297.81
297.856
297.858
297.902
297.905
297.909
297.913
297.955
297.96
298
298.038
298.034
297.995
297.992
297.951
297.948
297.945
297.985
297.988
298.027
298.03
298.068
298.071
298.076
298.08
298.085
298.121
298.155
298.187
298.192
298.223
298.229
298.235
298.242
298.271
298.299
298.306
298.333
298.34
298.365
298.373
298.397
298.406
298.429
298.451
298.443
298.421
298.413
298.39
298.383
298.358
298.352
298.326
298.32
298.293
298.265
298.259
298.287
298.315
298.341
298.346
298.371
298.377
298.401
298.407
298.43
298.436
298.458
298.465
298.472
298.493
298.512
298.531
298.539
298.556
298.565
298.574
298.584
298.594
298.606
298.617
298.63
298.642
298.658
298.67
298.685
298.698
298.711
298.724
298.737
298.749
298.762
298.774
298.786
298.797
298.784
298.772
298.761
298.749
298.737
298.724
298.712
298.699
298.686
298.672
298.66
298.645
298.633
298.622
298.637
298.648
298.663
298.674
298.688
298.7
298.713
298.724
298.737
298.748
298.76
298.771
298.783
298.795
298.807
298.82
298.833
298.846
298.86
298.873
298.887
298.901
298.916
298.93
298.945
298.951
298.958
298.964
298.978
298.983
298.988
299.002
299.006
299.011
299.015
299.027
299.04
299.043
299.056
299.058
299.07
299.073
299.075
299.086
299.098
299.11
299.111
299.122
299.123
299.123
299.112
299.112
299.101
299.099
299.088
299.077
299.078
299.089
299.091
299.102
299.103
299.113
299.124
299.134
299.145
299.155
299.166
299.176
299.186
299.196
299.206
299.216
299.225
299.234
299.243
299.252
299.261
299.269
299.277
299.284
299.291
299.298
299.303
299.308
299.313
299.316
299.319
299.322
299.325
299.328
299.331
299.333
299.336
299.339
299.342
299.336
299.33
299.324
299.318
299.313
299.308
299.304
299.3
299.296
299.292
299.289
299.286
299.283
299.281
299.279
299.279
299.28
299.282
299.285
299.288
299.291
299.294
299.298
299.302
299.306
299.31
299.315
299.321
299.326
299.332
299.33
299.324
299.318
299.316
299.322
299.327
299.325
299.319
299.314
299.309
299.311
299.313
299.308
299.304
299.3
299.298
299.302
299.307
299.305
299.301
299.297
299.296
299.299
299.303
299.308
299.312
299.317
299.322
299.32
299.315
299.31
299.308
299.312
299.317
299.314
299.31
299.305
299.301
299.304
299.306
299.302
299.298
299.294
299.293
299.296
299.3
299.298
299.294
299.291
299.288
299.29
299.291
299.292
299.294
299.295
299.296
299.293
299.289
299.287
299.286
299.288
299.291
299.29
299.287
299.285
299.283
299.283
299.284
299.282
299.28
299.278
299.278
299.279
299.281
299.281
299.279
299.277
299.277
299.278
299.28
299.282
299.284
299.286
299.289
299.288
299.285
299.283
299.282
299.284
299.287
299.285
299.282
299.28
299.277
299.279
299.281
299.279
299.277
299.276
299.274
299.276
299.277
299.275
299.273
299.271
299.269
299.272
299.274
299.275
299.276
299.276
299.277
299.277
299.277
299.276
299.275
299.274
299.274
299.273
299.273
299.274
299.274
299.275
299.276
299.276
299.275
299.274
299.274
299.274
299.275
299.275
299.274
299.273
299.273
299.273
299.274
299.273
299.273
299.273
299.271
299.272
299.272
299.273
299.274
299.273
299.272
299.271
299.268
299.269
299.271
299.268
299.266
299.265
299.264
299.267
299.27
299.269
299.266
299.263
299.259
299.26
299.261
299.263
299.264
299.266
299.268
299.27
299.272
299.274
299.277
299.279
299.282
299.285
299.288
299.292
299.295
299.299
299.303
299.307
299.311
299.308
299.304
299.3
299.296
299.3
299.304
299.299
299.295
299.291
299.287
299.292
299.296
299.292
299.288
299.285
299.281
299.284
299.288
299.283
299.28
299.276
299.271
299.274
299.278
299.282
299.285
299.289
299.293
299.287
299.283
299.279
299.273
299.276
299.28
299.273
299.269
299.266
299.263
299.269
299.276
299.272
299.269
299.266
299.26
299.263
299.266
299.26
299.256
299.254
299.251
299.257
299.263
299.268
299.273
299.278
299.282
299.279
299.276
299.273
299.269
299.272
299.275
299.27
299.267
299.265
299.262
299.267
299.271
299.268
299.266
299.264
299.26
299.262
299.264
299.26
299.258
299.256
299.251
299.253
299.255
299.257
299.26
299.262
299.265
299.26
299.257
299.255
299.249
299.252
299.254
299.248
299.246
299.243
299.241
299.247
299.252
299.25
299.248
299.246
299.241
299.243
299.245
299.239
299.237
299.235
299.229
299.231
299.233
299.235
299.237
299.239
299.242
299.244
299.247
299.25
299.253
299.256
299.259
299.262
299.265
299.257
299.254
299.251
299.243
299.246
299.249
299.241
299.238
299.235
299.233
299.241
299.248
299.245
299.243
299.24
299.233
299.235
299.238
299.23
299.228
299.226
299.218
299.22
299.222
299.225
299.227
299.229
299.232
299.223
299.221
299.218
299.21
299.212
299.214
299.204
299.202
299.201
299.199
299.208
299.216
299.214
299.212
299.21
299.202
299.204
299.206
299.197
299.196
299.194
299.193
299.201
299.208
299.216
299.223
299.231
299.238
299.235
299.233
299.231
299.224
299.226
299.228
299.221
299.219
299.217
299.216
299.222
299.229
299.227
299.225
299.223
299.217
299.219
299.221
299.214
299.212
299.211
299.204
299.206
299.207
299.209
299.211
299.212
299.214
299.207
299.205
299.203
299.196
299.198
299.199
299.191
299.19
299.189
299.187
299.195
299.202
299.2
299.199
299.198
299.191
299.192
299.193
299.186
299.185
299.184
299.183
299.19
299.197
299.203
299.21
299.216
299.222
299.228
299.233
299.239
299.244
299.249
299.254
299.258
299.262
299.261
299.259
299.257
299.253
299.255
299.256
299.252
299.25
299.249
299.248
299.252
299.256
299.255
299.251
299.247
299.242
299.243
299.244
299.246
299.247
299.242
299.241
299.24
299.234
299.236
299.237
299.232
299.23
299.229
299.228
299.233
299.238
299.237
299.232
299.227
299.222
299.223
299.224
299.225
299.226
299.22
299.219
299.218
299.212
299.213
299.215
299.208
299.207
299.206
299.205
299.211
299.217
299.216
299.21
299.205
299.199
299.199
299.2
299.201
299.202
299.196
299.195
299.194
299.187
299.188
299.189
299.182
299.181
299.181
299.18
299.187
299.193
299.192
299.186
299.18
299.173
299.173
299.174
299.175
299.175
299.176
299.177
299.178
299.179
299.18
299.181
299.182
299.183
299.185
299.186
299.187
299.189
299.19
299.192
299.193
299.194
299.185
299.183
299.182
299.173
299.174
299.175
299.165
299.164
299.163
299.163
299.172
299.181
299.18
299.179
299.177
299.169
299.17
299.171
299.162
299.161
299.16
299.152
299.152
299.153
299.153
299.154
299.154
299.155
299.145
299.144
299.144
299.134
299.134
299.134
299.124
299.124
299.125
299.125
299.134
299.144
299.143
299.143
299.143
299.134
299.134
299.134
299.125
299.125
299.125
299.125
299.134
299.142
299.151
299.16
299.168
299.176
299.175
299.174
299.173
299.165
299.166
299.167
299.159
299.158
299.157
299.157
299.165
299.172
299.171
299.17
299.17
299.162
299.163
299.164
299.156
299.155
299.155
299.147
299.148
299.148
299.149
299.149
299.15
299.15
299.142
299.142
299.141
299.133
299.133
299.133
299.125
299.125
299.125
299.125
299.133
299.141
299.14
299.14
299.14
299.132
299.132
299.133
299.124
299.124
299.124
299.117
299.116
299.116
299.116
299.116
299.116
299.116
299.116
299.116
299.116
299.115
299.115
299.115
299.114
299.114
299.103
299.104
299.105
299.095
299.094
299.093
299.092
299.081
299.08
299.069
299.067
299.065
299.063
299.061
299.049
299.046
299.034
299.031
299.018
299.022
299.025
299.037
299.04
299.051
299.054
299.056
299.058
299.047
299.045
299.043
299.031
299.028
299.017
299.014
299.01
299.006
299.002
298.998
298.993
298.98
298.975
298.97
298.956
298.95
298.944
298.937
298.923
298.93
298.937
298.943
298.949
298.962
298.968
298.973
298.985
298.99
298.994
298.998
299.002
298.99
298.986
298.982
298.978
298.965
298.96
298.955
298.942
298.936
298.93
298.923
298.916
298.909
298.895
298.903
298.91
298.897
298.89
298.882
298.868
298.876
298.884
298.892
298.904
298.917
298.924
298.93
298.936
298.948
298.953
298.958
298.97
298.975
298.979
298.983
298.994
299.006
299.009
299.02
299.023
299.034
299.037
299.039
299.05
299.06
299.071
299.072
299.083
299.084
299.085
299.086
299.096
299.105
299.106
299.106
299.107
299.098
299.097
299.096
299.087
299.088
299.088
299.079
299.078
299.077
299.076
299.075
299.074
299.064
299.062
299.052
299.041
299.043
299.053
299.055
299.065
299.067
299.068
299.069
299.07
299.061
299.06
299.058
299.057
299.047
299.045
299.035
299.033
299.031
299.029
299.026
299.015
299.012
299.001
298.998
298.987
298.991
298.994
299.005
299.008
299.018
299.021
299.023
299.026
299.016
299.013
299.011
299
298.997
298.987
298.984
298.98
298.976
298.972
298.968
298.963
298.952
298.947
298.941
298.93
298.924
298.918
298.911
298.899
298.905
298.912
298.918
298.924
298.935
298.94
298.946
298.957
298.961
298.965
298.97
298.973
298.963
298.959
298.955
298.95
298.94
298.935
298.929
298.918
298.913
298.907
298.9
298.894
298.887
298.879
298.872
298.863
298.855
298.842
298.851
298.859
298.847
298.838
298.829
298.817
298.826
298.835
298.843
298.855
298.867
298.875
298.882
298.889
298.877
298.87
298.863
298.851
298.859
298.866
298.856
298.848
298.84
298.832
298.823
298.814
298.805
298.793
298.802
298.812
298.801
298.791
298.781
298.77
298.759
298.748
298.737
298.725
298.714
298.701
298.69
298.677
298.666
298.652
298.641
298.626
298.611
298.6
298.616
298.631
298.622
298.607
298.591
298.582
298.598
298.613
298.628
298.637
298.646
298.656
298.669
298.68
298.693
298.703
298.715
298.726
298.737
298.748
298.759
298.769
298.78
298.79
298.799
298.81
298.821
298.829
298.837
298.845
298.835
298.827
298.818
298.808
298.816
298.825
298.832
298.842
298.852
298.863
298.873
298.884
298.895
298.902
298.908
298.913
298.924
298.929
298.934
298.944
298.949
298.953
298.943
298.939
298.929
298.924
298.919
298.908
298.903
298.897
298.891
298.88
298.887
298.893
298.898
298.904
298.914
298.919
298.924
298.933
298.938
298.947
298.957
298.967
298.977
298.981
298.99
298.994
299.003
299.006
299.009
299.018
299.028
299.037
299.039
299.049
299.05
299.052
299.053
299.062
299.071
299.08
299.089
299.098
299.107
299.107
299.108
299.108
299.099
299.099
299.099
299.09
299.09
299.091
299.092
299.1
299.108
299.108
299.108
299.109
299.101
299.1
299.1
299.092
299.092
299.093
299.085
299.084
299.084
299.083
299.083
299.082
299.081
299.072
299.073
299.074
299.065
299.064
299.063
299.055
299.056
299.057
299.058
299.066
299.075
299.076
299.076
299.077
299.069
299.068
299.067
299.059
299.06
299.061
299.061
299.069
299.077
299.085
299.093
299.101
299.109
299.117
299.124
299.132
299.14
299.147
299.154
299.162
299.169
299.168
299.168
299.167
299.16
299.161
299.161
299.154
299.154
299.153
299.153
299.16
299.167
299.166
299.16
299.153
299.146
299.146
299.146
299.146
299.147
299.139
299.139
299.139
299.132
299.132
299.132
299.124
299.124
299.124
299.124
299.131
299.139
299.139
299.131
299.124
299.117
299.117
299.117
299.117
299.117
299.109
299.109
299.109
299.102
299.101
299.101
299.093
299.094
299.094
299.094
299.102
299.109
299.109
299.102
299.095
299.087
299.087
299.086
299.086
299.086
299.078
299.078
299.079
299.071
299.071
299.07
299.062
299.063
299.063
299.064
299.072
299.079
299.079
299.072
299.064
299.057
299.056
299.056
299.055
299.054
299.054
299.053
299.052
299.051
299.05
299.048
299.047
299.046
299.044
299.043
299.041
299.032
299.03
299.021
299.011
299.014
299.023
299.025
299.034
299.035
299.037
299.039
299.04
299.032
299.03
299.028
299.027
299.018
299.016
299.007
299.004
299.002
298.999
298.997
298.987
298.984
298.974
298.971
298.961
298.965
298.968
298.978
298.981
298.99
298.993
298.995
298.998
298.989
298.986
298.984
298.975
298.971
298.962
298.959
298.955
298.951
298.942
298.946
298.95
298.941
298.937
298.933
298.928
298.919
298.914
298.909
298.9
298.894
298.889
298.883
298.876
298.87
298.86
298.866
298.873
298.863
298.857
298.85
298.84
298.847
298.854
298.86
298.869
298.879
298.885
298.89
298.896
298.905
298.91
298.915
298.924
298.928
298.932
298.936
298.945
298.953
298.957
298.966
298.969
298.978
298.98
298.983
298.992
299
299.009
299.011
299.02
299.021
299.023
299.025
299.033
299.041
299.043
299.044
299.045
299.037
299.036
299.034
299.026
299.027
299.029
299.021
299.019
299.018
299.016
299.015
299.013
299.004
299.002
298.994
298.985
298.988
298.996
298.998
299.006
299.008
299.01
299.011
299.013
299.005
299.004
299.002
299
298.992
298.99
298.982
298.98
298.977
298.974
298.972
298.963
298.96
298.952
298.948
298.94
298.943
298.946
298.955
298.958
298.966
298.969
298.971
298.974
298.966
298.963
298.961
298.953
298.95
298.941
298.938
298.935
298.931
298.927
298.923
298.919
298.91
298.906
298.901
298.892
298.887
298.881
298.876
298.866
298.872
298.878
298.87
298.864
298.858
298.851
298.845
298.838
298.83
298.823
298.815
298.807
298.798
298.789
298.779
298.769
298.759
298.749
298.738
298.727
298.717
298.705
298.695
298.683
298.673
298.66
298.651
298.643
298.656
298.664
298.677
298.686
298.698
298.707
298.719
298.728
298.739
298.75
298.759
298.769
298.779
298.788
298.797
298.805
298.796
298.788
298.779
298.769
298.76
298.751
298.741
298.73
298.721
298.71
298.702
298.69
298.682
298.669
298.662
298.649
298.635
298.62
298.605
298.59
298.573
298.566
298.549
298.542
298.524
298.505
298.485
298.478
298.498
298.517
298.512
298.492
298.472
298.451
298.446
298.424
298.418
298.395
298.39
298.366
298.361
298.336
298.309
298.282
298.253
298.248
298.218
298.214
298.182
298.15
298.116
298.111
298.145
298.178
298.21
298.24
298.244
298.273
298.277
298.305
298.301
298.297
298.269
298.265
298.236
298.206
298.174
298.141
298.107
298.103
298.138
298.171
298.168
298.135
298.1
298.064
298.062
298.024
298.022
297.983
297.942
297.9
297.898
297.854
297.808
297.806
297.759
297.758
297.806
297.852
297.852
297.897
297.939
297.94
297.981
298.02
298.019
297.98
297.979
297.938
297.896
298.018
298.056
298.056
298.058
298.059
298.095
298.098
298.132
298.165
298.197
298.2
298.202
298.233
298.262
298.29
298.293
298.32
298.324
298.327
298.331
298.357
298.381
298.386
298.409
298.413
298.436
298.44
298.462
298.467
298.487
298.506
298.502
298.482
298.478
298.457
298.453
298.431
298.427
298.405
298.401
298.378
298.353
298.349
298.374
298.398
298.421
298.424
298.446
298.449
298.47
298.474
298.493
298.497
298.516
298.52
298.525
298.53
298.536
298.553
298.559
298.576
298.582
298.598
298.592
298.586
298.57
298.565
298.548
298.543
298.56
298.576
298.581
298.597
298.602
298.607
298.613
298.628
298.642
298.655
298.649
298.636
298.622
298.616
298.631
298.644
298.64
298.626
298.612
298.607
298.592
298.588
298.572
298.556
298.538
298.534
298.552
298.569
298.585
298.6
298.603
298.618
298.622
298.635
298.632
298.629
298.615
298.611
298.597
298.581
298.565
298.548
298.531
298.513
298.509
298.49
298.487
298.467
298.464
298.442
298.44
298.418
298.395
298.371
298.346
298.343
298.317
298.315
298.288
298.259
298.23
298.228
298.257
298.285
298.284
298.255
298.226
298.195
298.163
298.13
298.128
298.094
298.093
298.092
298.127
298.127
298.161
298.162
298.194
298.224
298.254
298.282
298.281
298.253
298.223
298.193
298.192
298.16
298.223
298.252
298.281
298.308
298.308
298.309
298.311
298.313
298.339
298.341
298.366
298.368
298.392
298.39
298.388
298.364
298.362
298.337
298.336
298.361
298.385
298.386
298.409
298.411
298.413
298.415
298.437
298.458
298.461
298.481
298.484
298.503
298.506
298.524
298.527
298.545
298.562
298.559
298.542
298.539
298.522
298.519
298.5
298.498
298.479
298.477
298.456
298.435
298.433
298.454
298.475
298.494
298.496
298.515
298.517
298.535
298.537
298.554
298.557
298.573
298.575
298.578
298.594
298.609
298.623
298.626
298.639
298.642
298.645
298.649
298.653
298.657
298.662
298.668
298.675
298.687
298.694
298.706
298.713
298.724
298.732
298.743
298.753
298.761
298.77
298.779
298.788
298.779
298.771
298.762
298.754
298.745
298.735
298.727
298.717
298.71
298.698
298.692
298.68
298.675
298.67
298.681
298.686
298.698
298.703
298.714
298.72
298.731
298.737
298.747
298.756
298.764
298.772
298.78
298.788
298.796
298.805
298.814
298.821
298.829
298.836
298.827
298.82
298.813
298.804
298.812
298.819
298.826
298.834
298.843
298.849
298.855
298.861
298.853
298.847
298.841
298.833
298.839
298.846
298.838
298.832
298.825
298.818
298.811
298.804
298.796
298.788
298.796
298.804
298.797
298.789
298.781
298.774
298.765
298.759
298.75
298.74
298.734
298.724
298.719
298.709
298.704
298.693
298.689
298.677
298.665
298.661
298.673
298.685
298.682
298.67
298.658
298.655
298.667
298.679
298.69
298.693
298.696
298.7
298.71
298.714
298.724
298.729
298.738
298.744
298.753
298.761
298.767
298.776
298.782
298.79
298.797
298.804
298.811
298.818
298.825
298.831
298.824
298.818
298.811
298.804
298.811
298.818
298.812
298.805
298.798
298.791
298.784
298.778
298.77
298.764
298.756
298.747
298.743
298.734
298.73
298.72
298.717
298.707
298.704
298.701
298.711
298.714
298.723
298.726
298.735
298.739
298.747
298.751
298.76
298.768
298.772
298.78
298.785
298.792
298.799
298.806
298.801
298.794
298.787
298.782
298.775
298.771
298.764
298.756
298.752
298.744
298.741
298.733
298.73
298.721
298.719
298.709
298.699
298.688
298.676
298.665
298.652
298.65
298.637
298.634
298.62
298.606
298.591
298.589
298.604
298.618
298.616
298.602
298.587
298.571
298.569
298.552
298.55
298.533
298.531
298.513
298.512
298.493
298.473
298.453
298.431
298.43
298.408
298.407
298.384
298.36
298.335
298.334
298.359
298.383
298.407
298.429
298.429
298.451
298.452
298.472
298.471
298.471
298.45
298.491
298.491
298.492
298.511
298.529
298.53
298.547
298.549
298.565
298.567
298.583
298.585
298.6
298.614
298.613
298.598
298.597
298.581
298.58
298.564
298.563
298.547
298.546
298.528
298.51
298.51
298.528
298.545
298.562
298.563
298.579
298.579
298.595
298.596
298.61
298.611
298.626
298.627
298.628
298.63
298.632
298.645
298.647
298.66
298.662
298.674
298.672
298.67
298.658
298.656
298.643
298.642
298.655
298.667
298.668
298.68
298.682
298.684
298.686
298.696
298.707
298.717
298.715
298.705
298.695
298.693
298.703
298.713
298.712
298.702
298.691
298.69
298.679
298.677
298.665
298.653
298.64
298.639
298.652
298.664
298.676
298.687
298.688
298.699
298.7
298.711
298.71
298.709
298.698
298.697
298.687
298.675
298.663
298.651
298.638
298.624
298.624
298.609
298.609
298.594
298.594
298.578
298.609
298.623
298.623
298.637
298.637
298.65
298.663
298.662
298.65
298.649
298.636
298.662
298.674
298.674
298.674
298.686
298.697
298.707
298.708
298.718
298.718
298.719
298.72
298.722
298.723
298.725
298.726
298.728
298.737
298.739
298.747
298.75
298.758
298.76
298.768
298.775
298.778
298.785
298.789
298.796
298.792
298.788
298.782
298.779
298.772
298.765
298.763
298.755
298.754
298.745
298.744
298.735
298.734
298.732
298.741
298.742
298.75
298.752
298.76
298.761
298.768
298.77
298.777
298.783
298.786
298.792
298.795
298.798
298.802
298.807
298.812
298.818
298.824
298.83
298.837
298.844
298.851
298.859
298.867
298.875
298.883
298.889
298.897
298.902
298.906
298.915
298.919
298.923
298.927
298.93
298.922
298.919
298.915
298.911
298.903
298.898
298.893
298.885
298.88
298.872
298.877
298.882
298.89
298.895
298.899
298.907
298.911
298.915
298.918
298.926
298.934
298.937
298.945
298.947
298.955
298.958
298.96
298.968
298.976
298.984
298.986
298.994
298.996
298.997
298.99
298.988
298.98
298.978
298.97
298.963
298.965
298.972
298.974
298.982
298.984
298.991
298.999
299.006
299.014
299.022
299.03
299.038
299.046
299.047
299.047
299.048
299.04
299.04
299.039
299.031
299.032
299.033
299.033
299.041
299.049
299.049
299.042
299.034
299.027
299.026
299.025
299.024
299.023
299.015
299.017
299.018
299.01
299.009
299.008
299
299.001
299.003
299.004
299.011
299.018
299.019
299.012
299.004
298.997
298.996
298.995
298.994
298.993
298.985
298.987
298.988
298.981
298.979
298.978
298.976
298.969
298.967
298.96
298.957
298.955
298.953
298.95
298.943
298.94
298.932
298.929
298.922
298.925
298.928
298.935
298.938
298.945
298.948
298.95
298.952
298.945
298.943
298.94
298.933
298.931
298.923
298.921
298.917
298.914
298.911
298.907
298.903
298.896
298.891
298.887
298.879
298.875
298.87
298.865
298.857
298.862
298.867
298.872
298.877
298.884
298.888
298.892
298.9
298.903
298.907
298.91
298.913
298.907
298.903
298.9
298.896
298.889
298.885
298.881
298.874
298.87
298.865
298.86
298.855
298.85
298.843
298.848
298.854
298.847
298.842
298.836
298.83
298.835
298.841
298.846
298.852
298.859
298.863
298.868
298.872
298.879
298.883
298.886
298.893
298.897
298.9
298.903
298.91
298.916
298.919
298.926
298.929
298.936
298.938
298.94
298.947
298.954
298.961
298.963
298.97
298.972
298.973
298.975
298.982
298.989
298.99
298.983
298.976
298.969
298.968
298.966
298.965
298.958
298.956
298.949
298.942
298.944
298.951
298.952
298.959
298.961
298.962
298.955
298.954
298.947
298.946
298.939
298.937
298.935
298.933
298.931
298.924
298.922
298.915
298.913
298.906
298.909
298.911
298.918
298.92
298.927
298.929
298.931
298.932
298.926
298.924
298.922
298.916
298.914
298.907
298.905
298.902
298.9
298.897
298.893
298.89
298.884
298.88
298.876
298.87
298.866
298.861
298.857
298.851
298.855
298.86
298.864
298.868
298.874
298.877
298.881
298.887
298.89
298.893
298.896
298.899
298.893
298.89
298.887
298.884
298.878
298.875
298.872
298.866
298.862
298.858
298.854
298.85
298.845
298.84
298.835
298.83
298.824
298.818
298.824
298.829
298.824
298.819
298.813
298.808
298.814
298.82
298.825
298.83
298.835
298.84
298.844
298.849
298.844
298.839
298.834
298.83
298.834
298.839
298.834
298.83
298.825
298.82
298.815
298.81
298.804
298.8
298.806
298.811
298.808
298.803
298.797
298.795
298.789
298.788
298.782
298.775
298.774
298.767
298.766
298.758
298.757
298.749
298.748
298.74
298.731
298.73
298.738
298.747
298.746
298.737
298.729
298.728
298.737
298.745
298.753
298.754
298.755
298.756
298.763
298.764
298.771
298.773
298.779
298.78
298.786
298.792
298.793
298.799
298.801
298.806
298.811
298.813
298.817
298.821
298.826
298.83
298.827
298.823
298.818
298.815
298.82
298.824
298.828
298.831
298.835
298.839
298.843
298.848
298.853
298.857
298.861
298.864
298.869
298.873
298.876
298.882
298.884
298.887
298.882
298.879
298.874
298.871
298.867
298.862
298.859
298.856
298.852
298.847
298.851
298.854
298.858
298.861
298.866
298.869
298.871
298.876
298.879
298.884
298.89
298.895
298.901
298.904
298.91
298.912
298.918
298.92
298.921
298.928
298.934
298.941
298.942
298.948
298.935
298.929
298.923
298.917
298.915
298.914
298.908
298.906
298.9
298.898
298.892
298.894
298.896
298.902
298.904
298.909
298.911
298.905
298.9
298.898
298.893
298.891
298.889
298.887
298.881
298.883
298.886
298.88
298.878
298.876
298.874
298.869
298.866
298.864
298.859
298.856
298.853
298.85
298.846
298.843
298.839
298.842
298.846
298.842
298.838
298.835
298.832
298.835
298.838
298.842
298.845
298.849
298.852
298.855
298.858
298.862
298.864
298.867
298.871
298.874
298.876
298.878
298.882
298.887
298.889
298.894
298.884
298.879
298.875
298.873
298.871
298.869
298.865
298.862
298.86
298.856
298.854
298.851
298.848
298.845
298.847
298.85
298.852
298.854
298.858
298.86
298.862
298.867
298.868
298.87
298.866
298.864
298.86
298.858
298.857
298.853
298.851
298.849
298.846
298.844
298.841
298.838
298.835
298.832
298.829
298.825
298.821
298.817
298.813
298.809
298.804
298.803
298.798
298.797
298.791
298.785
298.784
298.778
298.777
298.77
298.77
298.762
298.762
298.761
298.768
298.769
298.776
298.776
298.783
298.783
298.789
298.79
298.796
298.801
298.802
298.806
298.807
298.812
298.816
298.82
298.819
298.815
298.811
298.81
298.806
298.805
298.8
298.795
298.794
298.789
298.788
298.782
298.781
298.775
298.774
298.767
298.76
298.752
298.744
298.736
298.727
298.726
298.717
298.717
298.707
298.696
298.685
298.685
298.696
298.706
298.716
298.726
298.726
298.735
298.735
298.744
298.744
298.743
298.735
298.751
298.752
298.752
298.76
298.767
298.774
298.774
298.767
298.759
298.759
298.766
298.773
298.78
298.78
298.78
298.781
298.787
298.787
298.793
298.794
298.799
298.799
298.804
298.809
298.809
298.814
298.814
298.818
298.817
298.817
298.813
298.813
298.808
298.804
298.803
298.798
298.798
298.793
298.792
298.786
298.786
298.786
298.792
298.792
298.797
298.798
298.803
298.803
298.808
298.808
298.812
298.816
298.817
298.82
298.82
298.821
298.821
298.822
298.823
298.827
298.83
298.833
298.831
298.828
298.825
298.824
298.827
298.83
298.832
298.834
298.836
298.838
298.841
298.843
298.841
298.839
298.836
298.835
298.837
298.839
298.837
298.836
298.834
298.832
298.829
298.827
298.824
298.824
298.826
298.829
298.829
298.826
298.823
298.823
298.82
298.82
298.816
298.812
298.812
298.807
298.807
298.802
298.802
298.797
298.807
298.811
298.812
298.816
298.816
298.819
298.823
298.823
298.826
298.826
298.829
298.831
298.831
298.831
298.833
298.835
298.836
298.836
298.835
298.833
298.833
298.834
298.836
298.836
298.834
298.833
298.831
298.828
298.828
298.826
298.826
298.823
298.819
298.819
298.815
298.822
298.826
298.828
298.828
298.831
298.831
298.833
298.834
298.836
298.836
298.834
298.833
298.833
298.831
298.834
298.836
298.837
298.837
298.837
298.837
298.837
298.837
298.838
298.839
298.84
298.843
298.845
298.847
298.849
298.851
298.855
298.856
298.858
298.862
298.854
298.853
298.849
298.848
298.846
298.844
298.842
298.843
298.845
298.846
298.847
298.851
298.844
298.843
298.842
298.841
298.84
298.839
298.84
298.841
298.839
298.839
298.838
298.838
298.838
298.839
298.839
298.84
298.841
298.842
298.84
298.839
298.839
298.839
298.839
298.838
298.838
298.838
298.838
298.838
298.838
298.838
298.838
298.838
298.838
298.838
298.839
298.839
298.839
298.839
298.839
298.839
299.347
299.325
299.322
299.314
299.32
299.239
299.223
299.234
299.239
299.156
298.705
298.881
298.957
298.943
299.034
299.04
298.644
298.52
298.504
298.488
298.429
298.423
298.044
298.071
298.089
298.25
297.961
297.952
297.707
296.29
296.538
296.6
296.629
296.943
295.92
295.876
295.329
295.288
294.205
294.161
293.431
293.06
292.988
292.508
286.605
284.983
299.275
299.274
299.274
299.275
299.276
299.275
299.273
299.273
299.273
299.273
299.273
299.273
299.272
299.271
299.268
299.265
299.261
299.257
299.253
299.249
299.245
299.24
299.235
299.231
299.226
299.22
299.215
299.209
299.204
299.198
299.192
299.185
299.179
299.173
299.166
299.159
299.152
299.146
299.139
299.131
299.124
299.117
299.11
299.102
299.095
299.087
299.08
299.073
299.065
299.058
299.05
299.043
299.035
299.028
299.02
299.013
299.006
298.998
298.991
298.984
298.977
298.97
298.964
298.957
298.95
298.944
298.938
298.931
298.925
298.919
298.914
298.908
298.902
298.897
298.892
298.887
298.882
298.878
298.873
298.869
298.865
298.861
298.857
298.853
298.849
298.846
298.843
298.841
298.839
298.839
298.839
298.839
299.274
299.275
299.277
299.273
)
;
boundaryField
{
bottomEmptyFaces
{
type empty;
}
topEmptyFaces
{
type empty;
}
inlet
{
type totalTemperature;
gamma 1.4;
T0 uniform 300;
value nonuniform List<scalar>
95
(
298.839
298.839
298.839
298.839
298.84
298.841
298.844
298.847
298.851
298.855
298.859
298.863
298.867
298.871
298.875
298.879
298.884
298.889
298.894
298.899
298.904
298.909
298.915
298.921
298.926
298.932
298.939
298.945
298.951
298.958
298.964
298.971
298.978
298.985
298.992
298.999
299.006
299.014
299.021
299.028
299.036
299.043
299.05
299.058
299.065
299.073
299.08
299.088
299.095
299.103
299.11
299.117
299.124
299.131
299.139
299.146
299.152
299.159
299.166
299.172
299.179
299.185
299.191
299.197
299.203
299.209
299.214
299.22
299.225
299.23
299.235
299.239
299.244
299.248
299.252
299.256
299.26
299.264
299.267
299.271
299.273
299.274
299.274
299.273
299.273
299.273
299.274
299.276
299.28
299.273
299.273
298.839
299.32
299.294
299.286
)
;
}
outlet
{
type inletOutlet;
inletValue uniform 300;
value nonuniform List<scalar>
36
(
288.047
288.047
288.048
288.048
288.049
288.05
288.051
288.053
288.055
288.058
288.062
288.068
288.077
288.089
288.107
288.133
288.171
288.226
288.301
288.398
288.521
288.677
288.878
288.74
288.963
289.124
289.794
289.379
289.89
290.351
291.332
291.646
292.035
291.966
291.852
288.047
)
;
}
walls
{
type zeroGradient;
}
rightWall
{
type inletOutlet;
inletValue uniform 300;
value nonuniform List<scalar>
28
(
299.472
299.462
299.447
299.443
299.44
299.436
299.434
299.432
299.43
299.428
299.427
299.425
299.425
299.424
299.423
299.423
299.423
299.422
299.422
299.424
299.43
299.437
299.42
299.431
299.432
299.501
299.463
299.425
)
;
}
symmetryLine
{
type symmetryPlane;
}
}
// ************************************************************************* //
| [
"mhoeper3234@gmail.com"
] | mhoeper3234@gmail.com | |
adf832c0a33a313cea1afac6a7e86a25c6da75c6 | 6150a2fdcad77bbdc5f7d6a20d955d0d95f2e894 | /modules/LocLossVertex.h | 3a705e495f2ec0a9922ad5955a4aef93391aeabb | [] | no_license | ljc2356/UWB_G2O | c9c224d4be23bfd95168568cbfc53bf630d54cc2 | 212a24d9f49826f84bf211b30128c7b0ecd09563 | refs/heads/master | 2023-07-04T19:33:36.419490 | 2021-08-16T04:01:33 | 2021-08-16T04:01:33 | 394,518,939 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 552 | h | //
// Created by Jason on 2021/8/10.
//
#ifndef UWB_G2O_LOCLOSSVERTEX_H
#define UWB_G2O_LOCLOSSVERTEX_H
#include "Eigen/Core"
#include "Eigen/Dense"
#include "g2o/core/base_vertex.h"
#include "../tools/UWBtools.h"
#include <iostream>
class LocLossVertex : public g2o::BaseVertex<2,Eigen::Vector2d>{
public:
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
void setToOriginImpl();
void oplusImpl(const double * v);
bool read(std::istream& in);
bool write(std:: ostream& os) const;
};
#endif //UWB_G2O_LOCLOSSVERTEX_H
| [
"936448623@qq.com"
] | 936448623@qq.com |
f552dc97a6dbcab610b22eac2a0fe0126da5ca83 | 3b1b0aee56e6948e863b953b8b2ab0691656ca0e | /src/qt/bitcoinstrings.cpp | 218cd960b50a781ac3830d23faee3398c0eb724c | [
"MIT"
] | permissive | Caponecoin/CaponeCoinmaster | 5c4e209c9b986366dfe7b67f9a98b13089ecdb9f | 403f16fddab2ef6516b52da6dff29a378ef1a92f | refs/heads/master | 2020-04-18T04:12:57.791567 | 2016-09-05T09:56:37 | 2016-09-05T09:56:37 | 67,408,835 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,160 | cpp | #include <QtGlobal>
// Automatically generated by extract_strings.py
#ifdef __GNUC__
#define UNUSED __attribute__((unused))
#else
#define UNUSED
#endif
static const char UNUSED *bitcoin_strings[] = {QT_TRANSLATE_NOOP("bitcoin-core", "To use the %s option"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"%s, you must set a rpcpassword in the configuration file:\n"
" %s\n"
"It is recommended you use the following random password:\n"
"rpcuser=CaponeCoinrpc\n"
"rpcpassword=%s\n"
"(you do not need to remember this password)\n"
"The username and password MUST NOT be the same.\n"
"If the file does not exist, create it with owner-readable-only file "
"permissions.\n"
"It is also recommended to set alertnotify so you are notified of problems;\n"
"for example: alertnotify=echo %%s | mail -s \"CaponeCoin Alert\" admin@foo."
"com\n"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"An error occurred while setting up the RPC port %u for listening on IPv6, "
"falling back to IPv4: %s"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"An error occurred while setting up the RPC port %u for listening on IPv4: %s"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"You must set rpcpassword=<password> in the configuration file:\n"
"%s\n"
"If the file does not exist, create it with owner-readable-only file "
"permissions."),
QT_TRANSLATE_NOOP("bitcoin-core", "CaponeCoin version"),
QT_TRANSLATE_NOOP("bitcoin-core", "Usage:"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send command to -server or CaponeCoind"),
QT_TRANSLATE_NOOP("bitcoin-core", "List commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "Get help for a command"),
QT_TRANSLATE_NOOP("bitcoin-core", "CaponeCoin"),
QT_TRANSLATE_NOOP("bitcoin-core", "Options:"),
QT_TRANSLATE_NOOP("bitcoin-core", "This help message"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify configuration file (default: CaponeCoin.conf)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify pid file (default: CaponeCoind.pid)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify data directory"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify wallet file (within data directory)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set database cache size in megabytes (default: 25)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set database disk log size in megabytes (default: 100)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify connection timeout in milliseconds (default: 5000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect through socks proxy"),
QT_TRANSLATE_NOOP("bitcoin-core", "Select the version of socks proxy to use (4-5, default: 5)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use proxy to reach tor hidden services (default: same as -proxy)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"),
QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on <port> (default: 15714 or testnet: 25714)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most <n> connections to peers (default: 125)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to and attempt to keep the connection open"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect only to the specified node(s)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect to a node to retrieve peer addresses, and disconnect"),
QT_TRANSLATE_NOOP("bitcoin-core", "Specify your own public address"),
QT_TRANSLATE_NOOP("bitcoin-core", "Only connect to nodes in network <net> (IPv4, IPv6 or Tor)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Discover own IP address (default: 1 when listening and no -externalip)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using internet relay chat (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Accept connections from outside (default: 1 if no -proxy or -connect)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Bind to given address. Use [host]:port notation for IPv6"),
QT_TRANSLATE_NOOP("bitcoin-core", "Find peers using DNS lookup (default: 1)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Stake your coins to support network and gain reward (default: 1)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Sync time with other nodes. Disable if time on your system is precise e.g. "
"syncing with NTP (default: 1)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Sync checkpoints policy (default: strict)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Threshold for disconnecting misbehaving peers (default: 100)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Number of seconds to keep misbehaving peers from reconnecting (default: "
"86400)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection receive buffer, <n>*1000 bytes (default: 5000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maximum per-connection send buffer, <n>*1000 bytes (default: 1000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 1 when listening)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use UPnP to map the listening port (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Detach block and address databases. Increases shutdown time (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Fee per KB to add to transactions you send"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"When creating transactions, ignore inputs with value less than this "
"(default: 0.01)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Accept command line and JSON-RPC commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "Run in the background as a daemon and accept commands"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use the test network"),
QT_TRANSLATE_NOOP("bitcoin-core", "Output extra debugging information. Implies all other -debug* options"),
QT_TRANSLATE_NOOP("bitcoin-core", "Output extra network debugging information"),
QT_TRANSLATE_NOOP("bitcoin-core", "Prepend debug output with timestamp"),
QT_TRANSLATE_NOOP("bitcoin-core", "Shrink debug.log file on client startup (default: 1 when no -debug)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to console instead of debug.log file"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to debugger"),
QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Listen for JSON-RPC connections on <port> (default: 15715 or testnet: 25715)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Allow JSON-RPC connections from specified IP address"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send commands to node running on <ip> (default: 127.0.0.1)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Execute command when the best block changes (%s in cmd is replaced by block "
"hash)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Execute command when a wallet transaction changes (%s in cmd is replaced by "
"TxID)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Require a confirmations for change (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Enforce transaction scripts to use canonical PUSH operators (default: 1)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Execute command when a relevant alert is received (%s in cmd is replaced by "
"message)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Upgrade wallet to latest format"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set key pool size to <n> (default: 100)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Rescan the block chain for missing wallet transactions"),
QT_TRANSLATE_NOOP("bitcoin-core", "Attempt to recover private keys from a corrupt wallet.dat"),
QT_TRANSLATE_NOOP("bitcoin-core", "How many blocks to check at startup (default: 2500, 0 = all)"),
QT_TRANSLATE_NOOP("bitcoin-core", "How thorough the block verification is (0-6, default: 1)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Imports blocks from external blk000?.dat file"),
QT_TRANSLATE_NOOP("bitcoin-core", "Block creation options:"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set minimum block size in bytes (default: 0)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Set maximum block size in bytes (default: 250000)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Set maximum size of high-priority/low-fee transactions in bytes (default: "
"27000)"),
QT_TRANSLATE_NOOP("bitcoin-core", "SSL options: (see the Bitcoin Wiki for SSL setup instructions)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use OpenSSL (https) for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Server certificate file (default: server.cert)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Server private key (default: server.pem)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Acceptable ciphers (default: TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!AH:!3DES:"
"@STRENGTH)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -paytxfee=<amount>: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: -paytxfee is set very high! This is the transaction fee you will "
"pay if you send a transaction."),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -mininput=<amount>: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Wallet %s resides outside data directory %s."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Cannot obtain a lock on data directory %s. CaponeCoin is probably already "
"running."),
QT_TRANSLATE_NOOP("bitcoin-core", "Verifying database integrity..."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Error initializing database environment %s! To recover, BACKUP THAT "
"DIRECTORY, then remove everything from it except for wallet.dat."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: wallet.dat corrupt, data salvaged! Original wallet.dat saved as "
"wallet.{timestamp}.bak in %s; if your balance or transactions are incorrect "
"you should restore from a backup."),
QT_TRANSLATE_NOOP("bitcoin-core", "wallet.dat corrupt, salvage failed"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unknown -socks proxy version requested: %i"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unknown network specified in -onlynet: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -proxy address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid -tor address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -bind address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Failed to listen on any port. Use -listen=0 if you want this."),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot resolve -externalip address: '%s'"),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount for -reservebalance=<amount>"),
QT_TRANSLATE_NOOP("bitcoin-core", "Unable to sign checkpoint, wrong checkpointkey?\n"),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading block index..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading blkindex.dat"),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading wallet..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet corrupted"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: error reading wallet.dat! All keys read correctly, but transaction "
"data or address book entries might be missing or incorrect."),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat: Wallet requires newer version of CaponeCoin"),
QT_TRANSLATE_NOOP("bitcoin-core", "Wallet needed to be rewritten: restart CaponeCoin to complete"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error loading wallet.dat"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot downgrade wallet"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot initialize keypool"),
QT_TRANSLATE_NOOP("bitcoin-core", "Cannot write default address"),
QT_TRANSLATE_NOOP("bitcoin-core", "Rescanning..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Importing blockchain data file."),
QT_TRANSLATE_NOOP("bitcoin-core", "Importing bootstrap blockchain data file."),
QT_TRANSLATE_NOOP("bitcoin-core", "Loading addresses..."),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: could not start node"),
QT_TRANSLATE_NOOP("bitcoin-core", "Done loading"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Unable to bind to %s on this computer. CaponeCoin is probably already running."),
QT_TRANSLATE_NOOP("bitcoin-core", "Unable to bind to %s on this computer (bind returned error %d, %s)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet locked, unable to create transaction "),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: Wallet unlocked for staking only, unable to create transaction."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Error: This transaction requires a transaction fee of at least %s because of "
"its amount, complexity, or use of recently received funds "),
QT_TRANSLATE_NOOP("bitcoin-core", "Error: Transaction creation failed "),
QT_TRANSLATE_NOOP("bitcoin-core", "Sending..."),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Error: The transaction was rejected. This might happen if some of the coins "
"in your wallet were already spent, such as if you used a copy of wallet.dat "
"and coins were spent in the copy but not marked as spent here."),
QT_TRANSLATE_NOOP("bitcoin-core", "Invalid amount"),
QT_TRANSLATE_NOOP("bitcoin-core", "Insufficient funds"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Warning: Please check that your computer's date and time are correct! If "
"your clock is wrong CaponeCoin will not work properly."),
QT_TRANSLATE_NOOP("bitcoin-core", "Warning: This version is obsolete, upgrade required!"),
QT_TRANSLATE_NOOP("bitcoin-core", "WARNING: syncronized checkpoint violation detected, but skipped!"),
QT_TRANSLATE_NOOP("bitcoin-core", "Warning: Disk space is low!"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"WARNING: Invalid checkpoint found! Displayed transactions may not be "
"correct! You may need to upgrade, or notify developers."),
}; | [
"caponecoin@gmail.com"
] | caponecoin@gmail.com |
b8f58249c0ce1220a8bbd13c6cc52e44efa55f9a | 8dc84558f0058d90dfc4955e905dab1b22d12c08 | /components/invalidation/impl/unacked_invalidation_set.cc | dd02f6d41b190e1cef773807e70eb31d8687f826 | [
"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 | 8,007 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/invalidation/impl/unacked_invalidation_set.h"
#include <utility>
#include "base/strings/string_number_conversions.h"
#include "components/invalidation/public/ack_handle.h"
#include "components/invalidation/public/object_id_invalidation_map.h"
namespace {
const char kSourceKey[] = "source";
const char kNameKey[] = "name";
const char kInvalidationListKey[] = "invalidation-list";
} // namespace
namespace syncer {
const size_t UnackedInvalidationSet::kMaxBufferedInvalidations = 5;
// static
UnackedInvalidationSet::UnackedInvalidationSet(
invalidation::ObjectId id)
: registered_(false),
object_id_(id) {}
UnackedInvalidationSet::UnackedInvalidationSet(
const UnackedInvalidationSet& other)
: registered_(other.registered_),
object_id_(other.object_id_),
invalidations_(other.invalidations_) {
}
UnackedInvalidationSet::~UnackedInvalidationSet() {}
const invalidation::ObjectId& UnackedInvalidationSet::object_id() const {
return object_id_;
}
void UnackedInvalidationSet::Add(
const Invalidation& invalidation) {
SingleObjectInvalidationSet set;
set.Insert(invalidation);
AddSet(set);
if (!registered_)
Truncate(kMaxBufferedInvalidations);
}
void UnackedInvalidationSet::AddSet(
const SingleObjectInvalidationSet& invalidations) {
invalidations_.insert(invalidations.begin(), invalidations.end());
if (!registered_)
Truncate(kMaxBufferedInvalidations);
}
void UnackedInvalidationSet::ExportInvalidations(
base::WeakPtr<AckHandler> ack_handler,
scoped_refptr<base::SingleThreadTaskRunner> ack_handler_task_runner,
ObjectIdInvalidationMap* out) const {
for (SingleObjectInvalidationSet::const_iterator it = invalidations_.begin();
it != invalidations_.end(); ++it) {
// Copy the invalidation and set the copy's ack_handler.
Invalidation inv(*it);
inv.SetAckHandler(ack_handler, ack_handler_task_runner);
out->Insert(inv);
}
}
void UnackedInvalidationSet::Clear() {
invalidations_.clear();
}
void UnackedInvalidationSet::SetHandlerIsRegistered() {
registered_ = true;
}
void UnackedInvalidationSet::SetHandlerIsUnregistered() {
registered_ = false;
Truncate(kMaxBufferedInvalidations);
}
// Removes the matching ack handle from the list.
void UnackedInvalidationSet::Acknowledge(const AckHandle& handle) {
bool handle_found = false;
for (SingleObjectInvalidationSet::const_iterator it = invalidations_.begin();
it != invalidations_.end(); ++it) {
if (it->ack_handle().Equals(handle)) {
invalidations_.erase(*it);
handle_found = true;
break;
}
}
DLOG_IF(WARNING, !handle_found)
<< "Unrecognized to ack for object " << ObjectIdToString(object_id_);
(void)handle_found; // Silence unused variable warning in release builds.
}
// Erase the invalidation with matching ack handle from the list. Also creates
// an 'UnknownVersion' invalidation with the same ack handle and places it at
// the beginning of the list. If an unknown version invalidation currently
// exists, it is replaced.
void UnackedInvalidationSet::Drop(const AckHandle& handle) {
SingleObjectInvalidationSet::const_iterator it;
for (it = invalidations_.begin(); it != invalidations_.end(); ++it) {
if (it->ack_handle().Equals(handle)) {
break;
}
}
if (it == invalidations_.end()) {
DLOG(WARNING) << "Unrecognized drop request for object "
<< ObjectIdToString(object_id_);
return;
}
Invalidation unknown_version = Invalidation::InitFromDroppedInvalidation(*it);
invalidations_.erase(*it);
// If an unknown version is in the list, we remove it so we can replace it.
if (!invalidations_.empty() && invalidations_.begin()->is_unknown_version()) {
invalidations_.erase(*invalidations_.begin());
}
invalidations_.insert(unknown_version);
}
// static
bool UnackedInvalidationSet::DeserializeSetIntoMap(
const base::DictionaryValue& dict,
UnackedInvalidationsMap* map) {
std::string source_str;
if (!dict.GetString(kSourceKey, &source_str)) {
DLOG(WARNING) << "Unable to deserialize source";
return false;
}
int source = 0;
if (!base::StringToInt(source_str, &source)) {
DLOG(WARNING) << "Invalid source: " << source_str;
return false;
}
std::string name;
if (!dict.GetString(kNameKey, &name)) {
DLOG(WARNING) << "Unable to deserialize name";
return false;
}
invalidation::ObjectId id(source, name);
UnackedInvalidationSet storage(id);
const base::ListValue* invalidation_list = nullptr;
if (!dict.GetList(kInvalidationListKey, &invalidation_list) ||
!storage.ResetListFromValue(*invalidation_list)) {
// Earlier versions of this class did not set this field, so we don't treat
// parsing errors here as a fatal failure.
DLOG(WARNING) << "Unable to deserialize invalidation list.";
}
map->insert(std::make_pair(id, storage));
return true;
}
std::unique_ptr<base::DictionaryValue> UnackedInvalidationSet::ToValue() const {
std::unique_ptr<base::DictionaryValue> value(new base::DictionaryValue);
value->SetString(kSourceKey, base::IntToString(object_id_.source()));
value->SetString(kNameKey, object_id_.name());
std::unique_ptr<base::ListValue> list_value(new base::ListValue);
for (InvalidationsSet::const_iterator it = invalidations_.begin();
it != invalidations_.end(); ++it) {
list_value->Append(it->ToValue());
}
value->Set(kInvalidationListKey, std::move(list_value));
return value;
}
bool UnackedInvalidationSet::ResetFromValue(
const base::DictionaryValue& value) {
std::string source_str;
if (!value.GetString(kSourceKey, &source_str)) {
DLOG(WARNING) << "Unable to deserialize source";
return false;
}
int source = 0;
if (!base::StringToInt(source_str, &source)) {
DLOG(WARNING) << "Invalid source: " << source_str;
return false;
}
std::string name;
if (!value.GetString(kNameKey, &name)) {
DLOG(WARNING) << "Unable to deserialize name";
return false;
}
object_id_ = invalidation::ObjectId(source, name);
const base::ListValue* invalidation_list = nullptr;
if (!value.GetList(kInvalidationListKey, &invalidation_list)
|| !ResetListFromValue(*invalidation_list)) {
// Earlier versions of this class did not set this field, so we don't treat
// parsing errors here as a fatal failure.
DLOG(WARNING) << "Unable to deserialize invalidation list.";
}
return true;
}
bool UnackedInvalidationSet::ResetListFromValue(
const base::ListValue& list) {
for (size_t i = 0; i < list.GetSize(); ++i) {
const base::DictionaryValue* dict;
if (!list.GetDictionary(i, &dict)) {
DLOG(WARNING) << "Failed to get invalidation dictionary at index " << i;
return false;
}
std::unique_ptr<Invalidation> invalidation =
Invalidation::InitFromValue(*dict);
if (!invalidation) {
DLOG(WARNING) << "Failed to parse invalidation at index " << i;
return false;
}
invalidations_.insert(*invalidation);
}
return true;
}
void UnackedInvalidationSet::Truncate(size_t max_size) {
DCHECK_GT(max_size, 0U);
if (invalidations_.size() <= max_size) {
return;
}
while (invalidations_.size() > max_size) {
invalidations_.erase(*invalidations_.begin());
}
// We dropped some invalidations. We remember the fact that an unknown
// amount of information has been lost by ensuring this list begins with
// an UnknownVersion invalidation. We remove the oldest remaining
// invalidation to make room for it.
invalidation::ObjectId id = invalidations_.begin()->object_id();
invalidations_.erase(*invalidations_.begin());
Invalidation unknown_version = Invalidation::InitUnknownVersion(id);
invalidations_.insert(unknown_version);
}
} // namespace syncer
| [
"arnaud@geometry.ee"
] | arnaud@geometry.ee |
58db73a96651d540cc003b6b4bc35deb71f42365 | a7fc7959c99a1af67339533d1d9d390fcbc452af | /C++/atan/atan_demo.cpp | da36e8bd363d28d4ea35bd1d3d197ff3187b41eb | [] | no_license | clhne/lc_programs | e28ff504c4383f95eff01d8bed76e33032aa70f8 | 116b315a566d84e548d6674492097e12fce3178c | refs/heads/master | 2021-09-19T07:28:48.416301 | 2018-07-25T03:39:11 | 2018-07-25T03:39:11 | 121,187,577 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 867 | cpp | #include <iostream>
#include <stdlib.h>
#include <math.h>
#include <errno.h>
#define PI 3.14159265
#define cov (180 / PI)
using namespace std;
int main(int ac, char* av[])
{
double x, y, theta;
if(ac != 3)
{
fprintf(stderr,"Usage: %s <x> <y> \n",av[0]);
return 1;
}
x = atof(av[1]);
theta = atan(x);
printf("Arctangent of %f / %f: %f\n",1.0, x, cov*theta);
y = atof(av[2]);
theta = atan2(y, x);
printf("Arctangent of %f / %f: %f\n",y, x, theta);
printf("Arctangent of 1.0/0 : %f\n",cov*atan2(1,0)); //atan2中第二个参数可以为0,atan不能;atan2 in the interval [-pi,+pi], atan [-pi/2,+pi/2]
printf("atan2(-1/1) : %f\n",cov*atan2(1.0,-1));
printf("atan(-1/1) : %f\n",cov*atan(-1));
printf("atan2f (-1,1) : %f\n",cov * atan2f(-1.0,1));
//system("pause");
return 0;
}
| [
"luchenglin@leadcoretech.com"
] | luchenglin@leadcoretech.com |
1d423cb4f76b1703267a19b0215adc804a242b4b | 84cfb10b1438300d80bb87eeaeda3985535fcb2e | /bush/test/unordered_map.cpp | 76a2daabcf090874d8c734c6fa7e486b633f0146 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | gbarrand/g4view | fd090cf3204ab4f1996ab280687f2380d3f2425c | c404aab32d8b66c15797c0bca3a0d9f6f2b3ad80 | refs/heads/master | 2021-09-11T00:35:58.483762 | 2021-09-06T13:59:58 | 2021-09-06T13:59:58 | 134,150,499 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 778 | cpp |
#include <unordered_map>
class A;
class B;
using Key=std::pair<const A*,const B*>;
class cycleCountEntry;
class Key_Hash {
public:
Key_Hash();
virtual ~Key_Hash();
Key_Hash(const Key_Hash&);
Key_Hash& operator=(const Key_Hash&);
public:
//inline size_t operator()(const Key& x) const throw() {
inline size_t operator()(const Key& x) const { //clang/Linux : with throw() it does not compile.
return 0;
}
};
class Key_EqualTo {
public:
Key_EqualTo();
virtual ~Key_EqualTo();
Key_EqualTo(const Key_EqualTo&);
Key_EqualTo& operator=(const Key_EqualTo&);
public:
inline bool operator()(const Key& lhs, const Key& rhs ) const {
return true;
}
};
using Cache=std::unordered_map<Key,cycleCountEntry*,Key_Hash,Key_EqualTo>;
Cache fastPathCache;
| [
"guy.barrand@gmail.com"
] | guy.barrand@gmail.com |
1aa34bfd365743fc891be9b6c0b8156938cdf4bb | 61dd7e7c1788344cabf21d1056cdbca3a54708fe | /Sync_TERMAL/Sync_TERMAL.cpp | d81b0b0a9f24090c5bf0ff84cb930773ad57f82b | [] | no_license | KUNYOUNGLEE/Sync_TERMAL | db70493d73af3e8610c49eb4249c055f074b255f | 554d69c6c3ff250fd57769e6a9a61eafb2f45cc0 | refs/heads/master | 2020-03-16T22:54:43.435265 | 2018-05-10T05:15:11 | 2018-05-10T05:15:11 | 133,057,319 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 3,459 | cpp | // Sync_TERMAL.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다.
//
#include "stdafx.h"
#include <iostream>
#include <vector>
using namespace std;
typedef struct termal_info {
char hour_min[9];
int sec;
int m_sec;
int termal_value[100];
termal_info():sec(0),m_sec(0)
{
for (int i = 0; i < 100; i++)
{
termal_value[i] = 0;
}
}
};
int main()
{
FILE *fp1 = NULL;
FILE *fp2 = NULL;
char filename[40] = "12-15 12시44분_열정보_4윤경.csv";
char read_path[100] = "C:\\Users\\guy92\\Desktop\\열화상CNN_data_테스트용\\윤경\\";
char write_path[100] = "C:\\Users\\guy92\\Desktop\\열화상CNN_data_테스트용\\";
strcat(read_path, filename);
strcat(write_path, filename);
fp1 = fopen(read_path, "r");
//fp1 = fopen("C:\\Users\\guy92\\Desktop\\열화상CNN_data_테스트용\\12-15 12시51분_열정보_2건영.csv", "r");
char temp[20] = { 0, };
char line[620] = { 0, };
char *str = NULL;
vector<termal_info> data;
vector<termal_info> data2;
//수정 혹은 보간하기전에 Data 읽어와서 vector 자료구조에 저장하는 코드
while(1)
{
termal_info temp_data;
str = NULL;
str = fgets(line, sizeof(line), fp1);
if (str == NULL) break;
memcpy(temp, &str[0], 8);
temp[8] = 0;
strcpy(temp_data.hour_min, temp);
memcpy(temp, &str[9], 3);
temp[3] = 0;
temp_data.sec = atoi(temp);
memcpy(temp, &str[12], 3);
temp[3] = 0;
temp_data.m_sec = atoi(temp);
for (int i = 0; i < 100; i++)
{
memcpy(temp, &str[16 + (6 * i)], 6);
temp[6] = 0;
temp_data.termal_value[i] = atoi(temp);
}
data.push_back(temp_data);
}
//저장된 Data 수정 혹 보간하는 코드!!!114화
int count = 0;
for (int i = 1; i < data.size(); i++)
{
if (abs(data[i - 1].m_sec - data[i].m_sec) > 80 && !((data[i - 1].m_sec < 1000 && data[i - 1].m_sec > 940) && data[i].m_sec < 30))
{
termal_info temp_data;
count++;
printf("count = %d //%d - %d %s %d;%d\n", count, data[i - 1].m_sec, data[i].m_sec, data[i].hour_min, data[i].sec, data[i].m_sec);
strcpy(temp_data.hour_min, data[i - 1].hour_min);
//sec 설정 59 -> 0 넘어가는 구간(950ms 와 50ms 사이 보간할 때 사용!)
if (data[i - 1].m_sec < 1000 && data[i - 1].m_sec > 940)
{
if (data[i - 1].sec == 59)
{
temp_data.sec = 0;
}
else
{
temp_data.sec = data[i - 1].sec + 1;
}
}
else
{
temp_data.sec = data[i - 1].sec;
}
if (data[i - 1].m_sec < 880)
{
temp_data.m_sec = (data[i - 1].m_sec + data[i].m_sec) / 2;
}
else if ((data[i - 1].m_sec < 1000 && data[i - 1].m_sec > 940) && ((data[i].m_sec > 30) && (data[i].m_sec < 80)))
{
temp_data.m_sec = 0;
}
else if ((data[i - 1].m_sec < 930 && data[i - 1].m_sec > 880) && ((data[i].m_sec - 30) < 0))
{
temp_data.m_sec = 950;
}
for (int j = 0; j < 100; j++)
{
temp_data.termal_value[j] = (data[i - 1].termal_value[j] + data[i].termal_value[j]) / 2;
}
data2.push_back(data[i - 1]);
data2.push_back(temp_data);
}
else
{
data2.push_back(data[i-1]);
}
}
//수정 혹은 보간된 Data 쓰는 코드
fp2 = fopen(write_path, "a");
for (int i = 0; i < data2.size(); i++)
{
fprintf(fp2, "%s,", data2[i].hour_min);
fprintf(fp2, "%2d;%3d,", data2[i].sec, data2[i].m_sec);
for (int j = 0; j < 100; j++)
{
fprintf(fp2, "%d,", data2[i].termal_value[j]);
}
fprintf(fp2, "\n");
}
return 0;
}
| [
"33278903+KUNYOUNGLEE@users.noreply.github.com"
] | 33278903+KUNYOUNGLEE@users.noreply.github.com |
6d9faadd62d43947e1b54614ec2f4502a6fda7e8 | a9fa300486c390308131a368b2f0b2758c552c1e | /Atcoder/ABC151/B.cpp | 2f7fd3a5df4342109eed408207f8f8b86b4bb950 | [] | no_license | sekiya9311/Programming-Contest | 630a426c022254ba8929096495bb09333a493fa0 | 3b3eb796b222122c22054e9d8111f484c8fa20f1 | refs/heads/master | 2023-03-16T11:02:46.598628 | 2023-03-04T06:34:59 | 2023-03-04T06:34:59 | 61,473,645 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,986 | cpp | #include <iostream>
#include <string>
#include <queue>
#include <stack>
#include <algorithm>
#include <list>
#include <vector>
#include <complex>
#include <utility>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <climits>
#include <bitset>
#include <ctime>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <cassert>
#include <cstddef>
#include <iomanip>
#include <numeric>
#include <tuple>
#include <sstream>
#include <fstream>
#include <functional>
using namespace std;
#define REP(i, n) for (int (i) = 0; (i) < (n); (i)++)
#define FOR(i, a, b) for (int (i) = (a); (i) < (b); (i)++)
#define RREP(i, a) for(int (i) = (a) - 1; (i) >= 0; (i)--)
#define FORR(i, a, b) for(int (i) = (a) - 1; (i) >= (b); (i)--)
#define DEBUG(C) cerr << #C << " = " << C << endl;
using LL = long long;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<LL>;
using VVL = vector<VL>;
using VD = vector<double>;
using VVD = vector<VD>;
using PII = pair<int, int>;
using PDD = pair<double, double>;
using PLL = pair<LL, LL>;
using VPII = vector<PII>;
template<typename T> using VT = vector<T>;
#define ALL(a) begin((a)), end((a))
#define RALL(a) rbegin((a)), rend((a))
#define SORT(a) sort(ALL((a)))
#define RSORT(a) sort(RALL((a)))
#define REVERSE(a) reverse(ALL((a)))
#define MP make_pair
#define FORE(a, b) for (auto &&a : (b))
#define EB emplace_back
#define GREATER(T) T, VT<T> greater<T>
template<typename T> inline bool chmax(T &a, T b){if (a < b){a = b;return true;}return false;}
template<typename T> inline bool chmin(T &a, T b){if (a > b){a = b;return true;}return false;}
const int INF = 1e9;
const int MOD = INF + 7;
const LL LLINF = 1e18;
int main(void) {
int N, K, M;
cin >> N >> K >> M;
VI A(N - 1); REP(i, N - 1) cin >> A[i];
const auto cur_sum = accumulate(ALL(A), 0);
const auto ans = M * N - cur_sum;
if (ans > K) cout << -1 << endl;
else cout << max(ans, 0) << endl;
}
| [
"sekiya9311@gmail.com"
] | sekiya9311@gmail.com |
ff104a9ce171328380d72b70e1c47dfea3a6a763 | 4d37d0ad66b2131e845cb2ffb5e4ae6a35040d31 | /sys/msys_graphics.cpp | ff2246090705049e4d42560e994f220574eede4d | [] | no_license | mrdooz/dagaa | 6fe6c33971a7b16a61564e2312d890a79fe5e62c | 1468beecbd5fa66a3f0eff151f081c09056596e6 | refs/heads/master | 2021-01-10T06:14:45.252089 | 2016-02-05T16:45:19 | 2016-02-05T16:45:19 | 48,619,164 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,730 | cpp | #include "msys_graphics.hpp"
#include "msys_libc.h"
#include "_win32/msys_filewatcherOS.hpp"
#include "gpu_objects.hpp"
#include "msys_utils.hpp"
#include <shaders/out/tl_common_VsQuad.vso.hpp>
#if WITH_FILE_UTILS
#include <sys/msys_file.hpp>
#endif
#define DEFAULTS_TO_ZERO(type, val)
#define HR(x) \
if (FAILED(x)) \
return 0;
DXGraphics* g_Graphics;
ObjectHandle EMPTY_OBJECT_HANDLE;
//-----------------------------------------------------------------------------
DXGraphics::DXGraphics()
{
msys_zeromem((void*)&_resources[0], sizeof(_resources));
}
//------------------------------------------------------------------------------
bool DXGraphics::CreateBufferInner(
D3D11_BIND_FLAG bind, int size, bool dynamic, const void* data, ID3D11Buffer** buffer)
{
CD3D11_BUFFER_DESC desc(((size + 15) & ~0xf),
bind,
dynamic ? D3D11_USAGE_DYNAMIC : D3D11_USAGE_DEFAULT,
dynamic ? D3D11_CPU_ACCESS_WRITE : 0);
HRESULT hr;
if (data)
{
D3D11_SUBRESOURCE_DATA init_data;
ZeroMemory(&init_data, sizeof(init_data));
init_data.pSysMem = data;
hr = _device->CreateBuffer(&desc, &init_data, buffer);
}
else
{
hr = _device->CreateBuffer(&desc, nullptr, buffer);
}
return SUCCEEDED(hr);
}
//------------------------------------------------------------------------------
ObjectHandle DXGraphics::CreateBuffer(D3D11_BIND_FLAG bind, int size, bool dynamic, const void* buf)
{
ID3D11Buffer* buffer = 0;
if (CreateBufferInner(bind, size, dynamic, buf, &buffer))
{
if (bind == D3D11_BIND_INDEX_BUFFER)
{
return AddResource(ObjectHandle::IndexBuffer, buffer);
}
else if (bind == D3D11_BIND_VERTEX_BUFFER)
{
return AddResource(ObjectHandle::VertexBuffer, buffer);
}
else if (bind == D3D11_BIND_CONSTANT_BUFFER)
{
return AddResource(ObjectHandle::ConstantBuffer, buffer);
}
else
{
// LOG_ERROR_LN("Implement me!");
}
}
return EMPTY_OBJECT_HANDLE;
}
//------------------------------------------------------------------------------
HRESULT DXGraphics::Map(
ObjectHandle h,
UINT sub,
D3D11_MAP type,
UINT flags,
D3D11_MAPPED_SUBRESOURCE *res)
{
return _context->Map(GetResource<ID3D11Resource>(h), sub, type, flags, res);
}
//------------------------------------------------------------------------------
void DXGraphics::Unmap(ObjectHandle h, UINT sub)
{
return _context->Unmap(GetResource<ID3D11Resource>(h), sub);
}
//------------------------------------------------------------------------------
void DXGraphics::CopyToBuffer(ObjectHandle h, const void* data, u32 len)
{
D3D11_MAPPED_SUBRESOURCE res;
if (SUCCEEDED(Map(h, 0, D3D11_MAP_WRITE_DISCARD, 0, &res)))
{
memcpy(res.pData, data, len);
Unmap(h, 0);
}
else
{
ASSERT(!"Unable to map buffer!");
}
}
//-----------------------------------------------------------------------------
void DXGraphics::Clear()
{
float black[4] = {0.1f, 0.1f, 0.1f, 0.1f};
_context->ClearRenderTargetView(_renderTargetView, black);
_context->ClearDepthStencilView(
_depthStencilView, D3D11_CLEAR_DEPTH | D3D11_CLEAR_STENCIL, 1.0f, 0);
}
//-----------------------------------------------------------------------------
void DXGraphics::Present()
{
_swapChain->Present(_vsync ? 1 : 0, 0);
}
//-----------------------------------------------------------------------------
static void InitTextureDesc(D3D11_TEXTURE2D_DESC* desc,
u32 width,
u32 height,
D3D11_USAGE usage,
DXGI_FORMAT fmt,
D3D11_BIND_FLAG bindFlag,
u32 cpuAccessFlags = 0)
{
msys_memset(desc, 0, sizeof(D3D11_TEXTURE2D_DESC));
desc->Width = width;
desc->Height = height;
desc->MipLevels = 1;
desc->ArraySize = 1;
desc->SampleDesc.Count = 1;
DEFAULTS_TO_ZERO(desc->SampleDesc.Quality, 0);
desc->Usage = usage;
desc->Format = fmt;
desc->BindFlags = bindFlag;
desc->CPUAccessFlags = cpuAccessFlags;
DEFAULTS_TO_ZERO(desc->MiscFlags, 0);
}
//-----------------------------------------------------------------------------
int DXGraphics::FindFreeResource(int start)
{
for (int i = start; i < MAX_NUM_RESOURCES; ++i)
{
if (_resources[i].ptr == nullptr)
return i;
}
return -1;
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::AddResource(ObjectHandle::Type type, void* resource, u32 hash)
{
int idx = _firstFreeResource != -1 ? _firstFreeResource : FindFreeResource(0);
ASSERT(idx != -1);
_firstFreeResource = -1;
_resources[idx] = Resource{resource, type, 0, hash};
ObjectHandle h = ObjectHandle(type, idx);
return h;
}
//-----------------------------------------------------------------------------
void DXGraphics::SetPixelShader(ObjectHandle h)
{
ASSERT(h.type == ObjectHandle::PixelShader);
_context->PSSetShader(GetResource<ID3D11PixelShader>(h), nullptr, 0);
}
//-----------------------------------------------------------------------------
void DXGraphics::SetVertexShader(ObjectHandle h)
{
ASSERT(h.type == ObjectHandle::VertexShader);
_context->VSSetShader(GetResource<ID3D11VertexShader>(h), 0, 0);
}
//-----------------------------------------------------------------------------
void DXGraphics::SetConstantBuffer(ObjectHandle h, ShaderType type, int slot)
{
ID3D11Buffer* cbs[] = { GetResource<ID3D11Buffer>(h) };
switch (type)
{
case ShaderType::VertexShader: _context->VSSetConstantBuffers(slot, 1, cbs); break;
case ShaderType::PixelShader: _context->PSSetConstantBuffers(slot, 1, cbs); break;
}
}
//-----------------------------------------------------------------------------
void DXGraphics::SetGpuObjects(const GpuObjects& objects)
{
u32 strides[] = { objects._vb.userdata };
u32 ofs[] = { 0 };
ID3D11Buffer* vbs[] = { GetResource<ID3D11Buffer>(objects._vb) };
_context->IASetPrimitiveTopology(objects._topology);
_context->IASetIndexBuffer(GetResource<ID3D11Buffer>(objects._ib), DXGI_FORMAT_R32_UINT, 0);
_context->IASetInputLayout(GetResource<ID3D11InputLayout>(objects._layout));
_context->IASetVertexBuffers(0, 1, vbs, strides, ofs);
_context->VSSetShader(GetResource<ID3D11VertexShader>(objects._vs), NULL, 0);
_context->PSSetShader(GetResource<ID3D11PixelShader>(objects._ps), NULL, 0);
}
//-----------------------------------------------------------------------------
void DXGraphics::SetGpuState(const GpuState& state)
{
float blendFactor[4] = {1, 1, 1, 1};
_context->OMSetBlendState(
GetResource<ID3D11BlendState>(state._blendState), blendFactor, 0xffffffff);
_context->RSSetState(GetResource<ID3D11RasterizerState>(state._rasterizerState));
_context->OMSetDepthStencilState(GetResource<ID3D11DepthStencilState>(state._depthStencilState), 0);
ID3D11SamplerState* sampler = GetResource<ID3D11SamplerState>(_samplers[DXGraphics::Linear]);
_context->PSSetSamplers(1, 1, &sampler);
}
//-----------------------------------------------------------------------------
void DXGraphics::ReleaseResource(ObjectHandle h)
{
if (!h.IsValid())
return;
int idx = h.id;
if (!_resources[idx].ptr)
return;
#define RELEASE_RESOURCE(type, klass) \
case ObjectHandle::type: \
if (_resources[idx].ptr) \
{ \
((klass*)_resources[idx].ptr)->Release(); \
_resources[idx].ptr = nullptr; \
} \
break;
switch (_resources[idx].type)
{
RELEASE_RESOURCE(InputLayout, ID3D11InputLayout);
RELEASE_RESOURCE(VertexShader, ID3D11VertexShader);
RELEASE_RESOURCE(PixelShader, ID3D11PixelShader);
RELEASE_RESOURCE(IndexBuffer, ID3D11Buffer);
RELEASE_RESOURCE(VertexBuffer, ID3D11Buffer);
RELEASE_RESOURCE(ConstantBuffer, ID3D11Buffer);
RELEASE_RESOURCE(BlendState, ID3D11BlendState);
RELEASE_RESOURCE(RasterizeState, ID3D11RasterizerState);
RELEASE_RESOURCE(DepthStencilState, ID3D11DepthStencilState);
RELEASE_RESOURCE(Texture2d, ID3D11Texture2D);
RELEASE_RESOURCE(RenderTargetView, ID3D11RenderTargetView);
RELEASE_RESOURCE(DepthStencilView, ID3D11DepthStencilView);
RELEASE_RESOURCE(ShaderResourceView, ID3D11ShaderResourceView);
RELEASE_RESOURCE(Sampler, ID3D11SamplerState);
case ObjectHandle::RenderTargetData:
{
RenderTargetResource* rt = (RenderTargetResource*)_resources[idx].ptr;
ReleaseResource(rt->texture);
ReleaseResource(rt->rtv);
if (rt->srv.IsValid())
ReleaseResource(rt->srv);
delete rt;
break;
}
case ObjectHandle::TextureData:
{
TextureResource* t = (TextureResource*)_resources[idx].ptr;
ReleaseResource(t->texture);
ReleaseResource(t->srv);
delete t;
break;
}
default: ASSERT(!"Unhandled resource type!");
}
_firstFreeResource = idx;
_resources[idx].ptr = nullptr;
#undef RELEASE_RESOURCE
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::CreateRenderTarget(int width, int height, bool createSrv)
{
D3D11_TEXTURE2D_DESC desc;
D3D11_BIND_FLAG bindFlags = D3D11_BIND_RENDER_TARGET;
if (createSrv)
bindFlags = (D3D11_BIND_FLAG)(bindFlags | D3D11_BIND_SHADER_RESOURCE);
InitTextureDesc(&desc, width, height, D3D11_USAGE_DEFAULT, DXGI_FORMAT_R8G8B8A8_UNORM, bindFlags);
ID3D11Texture2D* t;
if (FAILED(_device->CreateTexture2D(&desc, nullptr, &t)))
EMPTY_OBJECT_HANDLE;
RenderTargetResource* rtData = new RenderTargetResource();
ObjectHandle hData = AddResource(ObjectHandle::RenderTargetData, rtData);
rtData->texture = AddResource(ObjectHandle::Texture2d, t);
CD3D11_RENDER_TARGET_VIEW_DESC rtDesc =
CD3D11_RENDER_TARGET_VIEW_DESC(D3D11_RTV_DIMENSION_TEXTURE2D, desc.Format);
ID3D11RenderTargetView* rtv;
_device->CreateRenderTargetView(t, &rtDesc, &rtv);
rtData->rtv = AddResource(ObjectHandle::RenderTargetView, rtv);
// create SRV
if (createSrv)
{
D3D11_SRV_DIMENSION dim = D3D11_SRV_DIMENSION_TEXTURE2D;
CD3D11_SHADER_RESOURCE_VIEW_DESC srvDesc = CD3D11_SHADER_RESOURCE_VIEW_DESC(dim, desc.Format);
ID3D11ShaderResourceView* srv;
if (FAILED(_device->CreateShaderResourceView(t, &srvDesc, &srv)))
return EMPTY_OBJECT_HANDLE;
rtData->srv = AddResource(ObjectHandle::ShaderResourceView, srv);
}
return hData;
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::CreateTexture(
int width, int height, DXGI_FORMAT fmt, void* data, int dataWidth)
{
D3D11_TEXTURE2D_DESC desc;
D3D11_BIND_FLAG bindFlags = D3D11_BIND_SHADER_RESOURCE;
InitTextureDesc(&desc,
width,
height,
data ? D3D11_USAGE_DYNAMIC : D3D11_USAGE_DEFAULT,
DXGI_FORMAT_R8G8B8A8_UNORM,
bindFlags,
data ? D3D11_CPU_ACCESS_WRITE : 0);
ID3D11Texture2D* t;
if (FAILED(_device->CreateTexture2D(&desc, nullptr, &t)))
EMPTY_OBJECT_HANDLE;
TextureResource* tData = new TextureResource();
ObjectHandle hData = AddResource(ObjectHandle::TextureData, tData);
tData->texture = AddResource(ObjectHandle::Texture2d, t);
// create SRV
D3D11_SRV_DIMENSION dim = D3D11_SRV_DIMENSION_TEXTURE2D;
CD3D11_SHADER_RESOURCE_VIEW_DESC srvDesc = CD3D11_SHADER_RESOURCE_VIEW_DESC(dim, desc.Format);
ID3D11ShaderResourceView* srv;
if (FAILED(_device->CreateShaderResourceView(t, &srvDesc, &srv)))
return EMPTY_OBJECT_HANDLE;
tData->srv = AddResource(ObjectHandle::ShaderResourceView, srv);
if (data)
{
D3D11_MAPPED_SUBRESOURCE resource;
if (SUCCEEDED(_context->Map(t, 0, D3D11_MAP_WRITE_DISCARD, 0, &resource)))
{
uint8_t* src = (uint8_t*)data;
uint8_t* dst = (uint8_t*)resource.pData;
const int w = dataWidth == -1 ? width : msys_min(width, dataWidth);
const int h = height;
// TODO(magnus): hardcoded pitch
const int pitch = width * 4;
if (pitch == resource.RowPitch)
{
memcpy(dst, src, h * pitch);
}
else
{
for (int i = 0; i < h; ++i)
{
memcpy(dst, src, pitch);
src += pitch;
dst += resource.RowPitch;
}
}
_context->Unmap(t, 0);
}
}
return hData;
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::CreateShader(const char* filename,
const void* buf,
int len,
ObjectHandle::Type type,
#if WITH_FILE_WATCHER
const FileWatcherWin32::cbFileChanged& cbChained)
#else
const void*)
#endif
{
#if WITH_FILE_WATCHER
ObjectHandle h = ReserveHandle(type);
#endif
if (type == ObjectHandle::VertexShader)
{
#if WITH_FILE_WATCHER
g_FileWatcher->AddFileWatch(filename,
true,
[=, this](const char* filename, const char* buf, int len)
{
ID3D11VertexShader* vs;
if (SUCCEEDED(_device->CreateVertexShader(buf, len, nullptr, &vs)))
{
UpdateHandle(h, vs);
if (cbChained)
cbChained(filename, buf, len);
return true;
}
return false;
});
return h;
#else
ID3D11VertexShader* vs;
if (SUCCEEDED(_device->CreateVertexShader(buf, len, nullptr, &vs)))
return AddResource(type, vs);
#endif
}
else if (type == ObjectHandle::PixelShader)
{
#if WITH_FILE_WATCHER
g_FileWatcher->AddFileWatch(filename,
true,
[=, this](const char* filename, const char* buf, int len)
{
ID3D11PixelShader* ps;
if (SUCCEEDED(_device->CreatePixelShader(buf, len, nullptr, &ps)))
{
UpdateHandle(h, ps);
if (cbChained)
cbChained(filename, buf, len);
return true;
}
return false;
});
return h;
#else
ID3D11PixelShader* ps;
if (SUCCEEDED(_device->CreatePixelShader(buf, len, nullptr, &ps)))
return AddResource(type, ps);
#endif
}
return EMPTY_OBJECT_HANDLE;
}
//-----------------------------------------------------------------------------
int DXGraphics::CreateDevice(HWND h, u32 width, u32 height)
{
u32 flags = D3D11_CREATE_DEVICE_SINGLETHREADED;
#ifdef _DEBUG
// NB: The requires enabling "Graphics Tools" on win10
flags |= D3D11_CREATE_DEVICE_DEBUG;
#endif
// Create device
HR(D3D11CreateDevice(nullptr,
D3D_DRIVER_TYPE_HARDWARE,
0,
flags,
0,
0,
D3D11_SDK_VERSION,
&_device,
&_featureLevel,
&_context));
// Create swap chain
msys_memset(&_swapChainDesc, 0, sizeof(_swapChainDesc));
_swapChainDesc.BufferDesc.Width = width;
_swapChainDesc.BufferDesc.Height = height;
_swapChainDesc.BufferDesc.RefreshRate.Numerator = 60;
_swapChainDesc.BufferDesc.RefreshRate.Denominator = 1;
_swapChainDesc.BufferDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
_swapChainDesc.SampleDesc.Count = 1;
DEFAULTS_TO_ZERO(_swapChainDesc.SampleDesc.Quality, 0);
_swapChainDesc.BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT;
_swapChainDesc.BufferCount = 1;
_swapChainDesc.OutputWindow = h;
// TODO(magnus): pass in info
_swapChainDesc.Windowed = true;
// Get the IDXGIFactory that created the device, and use that to create the swap chain
IDXGIDevice* dxgiDevice;
HR(_device->QueryInterface(__uuidof(IDXGIDevice), (void**)&dxgiDevice));
IDXGIAdapter* dxgiAdapter;
HR(dxgiDevice->GetParent(__uuidof(IDXGIAdapter), (void**)&dxgiAdapter));
// Finally got the IDXGIFactory interface.
IDXGIFactory* dxgiFactory;
HR(dxgiAdapter->GetParent(__uuidof(IDXGIFactory), (void**)&dxgiFactory));
// Now, create the swap chain.
HR(dxgiFactory->CreateSwapChain(_device, &_swapChainDesc, &_swapChain));
// Create render target view for backbuffer
_swapChain->GetBuffer(0, __uuidof(ID3D11Texture2D), (void**)&_backBuffer);
_device->CreateRenderTargetView(_backBuffer, 0, &_renderTargetView);
AddResource(ObjectHandle::Texture2d, _backBuffer);
_defaultBackBuffer = AddResource(ObjectHandle::RenderTargetView, _renderTargetView);
_backBuffer->Release();
dxgiDevice->Release();
dxgiAdapter->Release();
dxgiFactory->Release();
// Create depth/stencil
D3D11_TEXTURE2D_DESC depthStencilDesc;
InitTextureDesc(&depthStencilDesc,
width,
height,
D3D11_USAGE_DEFAULT,
DXGI_FORMAT_D24_UNORM_S8_UINT,
D3D11_BIND_DEPTH_STENCIL);
HR(_device->CreateTexture2D(&depthStencilDesc, 0, &_depthStencilBuffer));
HR(_device->CreateDepthStencilView(_depthStencilBuffer, 0, &_depthStencilView));
_defaultDepthStencil = AddResource(ObjectHandle::DepthStencilView, _depthStencilView);
AddResource(ObjectHandle::Texture2d, _depthStencilBuffer);
_viewport = CD3D11_VIEWPORT(0.f, 0.f, (float)width, (float)height);
return 1;
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::FindByHash(u32 hash, ObjectHandle::Type type)
{
for (int i = 0; i < MAX_NUM_RESOURCES; ++i)
{
if (_resources[i].ptr && _resources[i].type == type && _resources[i].hash == hash)
return ObjectHandle(type, i);
}
return EMPTY_OBJECT_HANDLE;
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::CreateRasterizerState(const D3D11_RASTERIZER_DESC& desc)
{
u32 hash = CalcHash(desc);
ObjectHandle h = FindByHash(hash, ObjectHandle::RasterizeState);
if (h.IsValid())
return h;
ID3D11RasterizerState* rasterizerState;
_device->CreateRasterizerState(&desc, &rasterizerState);
return AddResource(ObjectHandle::RasterizeState, rasterizerState, hash);
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::CreateDepthStencilState(const D3D11_DEPTH_STENCIL_DESC& desc)
{
u32 hash = CalcHash(desc);
ObjectHandle h = FindByHash(hash, ObjectHandle::DepthStencilState);
if (h.IsValid())
return h;
ID3D11DepthStencilState* depthStencilState;
_device->CreateDepthStencilState(&desc, &depthStencilState);
return AddResource(ObjectHandle::DepthStencilState, depthStencilState, hash);
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::CreateBlendState(const D3D11_BLEND_DESC& desc)
{
u32 hash = CalcHash(desc);
ObjectHandle h = FindByHash(hash, ObjectHandle::BlendState);
if (h.IsValid())
return h;
ID3D11BlendState* blendState;
_device->CreateBlendState(&desc, &blendState);
return AddResource(ObjectHandle::BlendState, blendState, hash);
}
//-----------------------------------------------------------------------------
void DXGraphics::CreateDefaultStates()
{
_defaultBlendState = CreateBlendState(CD3D11_BLEND_DESC(CD3D11_DEFAULT()));
_defaultRasterizerState = CreateRasterizerState(CD3D11_RASTERIZER_DESC(CD3D11_DEFAULT()));
_defaultDepthStencilState = CreateDepthStencilState(CD3D11_DEPTH_STENCIL_DESC(CD3D11_DEFAULT()));
D3D11_DEPTH_STENCIL_DESC depthDescDepthDisabled = CD3D11_DEPTH_STENCIL_DESC(CD3D11_DEFAULT());
depthDescDepthDisabled = CD3D11_DEPTH_STENCIL_DESC(CD3D11_DEFAULT());
depthDescDepthDisabled.DepthEnable = FALSE;
_depthDisabledState = CreateDepthStencilState(depthDescDepthDisabled);
CD3D11_SAMPLER_DESC samplerDesc = CD3D11_SAMPLER_DESC(CD3D11_DEFAULT());
_samplers[Linear] = CreateSamplerState(samplerDesc);
samplerDesc.AddressU = samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP;
_samplers[LinearWrap] = CreateSamplerState(samplerDesc);
samplerDesc.AddressU = samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_BORDER;
_samplers[LinearBorder] = CreateSamplerState(samplerDesc);
samplerDesc.AddressU = samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_CLAMP;
samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_POINT;
_samplers[Point] = CreateSamplerState(samplerDesc);
_vsFullScreen = CreateShader(FW_STR("shaders/out/tl_common_VsQuadD.vso"),
tl_common_VsQuad_bin,
sizeof(tl_common_VsQuad_bin),
ObjectHandle::VertexShader,
nullptr);
}
//-----------------------------------------------------------------------------
ObjectHandle DXGraphics::ReserveHandle(ObjectHandle::Type type)
{
return ObjectHandle(type, FindFreeResource(0));
}
//-----------------------------------------------------------------------------
void DXGraphics::UpdateHandle(ObjectHandle handle, void* buf)
{
_resources[handle.id] = Resource{buf, handle.type};
}
//-----------------------------------------------------------------------------
int DXGraphics::Init(HWND h, u32 width, u32 height)
{
_backBufferWidth = width;
_backBufferHeight = height;
// TODO(magnus): meh, this is all messed up..
int res = CreateDevice(h, width, height);
CreateDefaultStates();
_context->OMSetRenderTargets(1, &_renderTargetView, _depthStencilView);
return 1;
}
//-----------------------------------------------------------------------------
void DXGraphics::Close()
{
for (int i = 0; i < MAX_NUM_RESOURCES; ++i)
{
ReleaseResource(ObjectHandle((ObjectHandle::Type)_resources[i].type, i));
}
// Release any resources that aren't added to the resource list
_swapChain->Release();
_context->Release();
_device->Release();
}
//------------------------------------------------------------------------------
ObjectHandle DXGraphics::CreateSamplerState(const D3D11_SAMPLER_DESC& desc)
{
ID3D11SamplerState* ss;
if (FAILED(_device->CreateSamplerState(&desc, &ss)))
return EMPTY_OBJECT_HANDLE;
return AddResource(ObjectHandle::Sampler, ss);
}
//------------------------------------------------------------------------------
void DXGraphics::SetDefaultRenderTarget()
{
SetRenderTarget(_defaultBackBuffer, _defaultDepthStencil);
}
//------------------------------------------------------------------------------
void DXGraphics::SetRenderTarget(ObjectHandle rt, ObjectHandle ds)
{
if (rt.type == ObjectHandle::RenderTargetData)
{
rt = GetResource<RenderTargetResource>(rt)->rtv;
}
ASSERT(rt.type == ObjectHandle::RenderTargetView || rt == EMPTY_OBJECT_HANDLE);
ID3D11RenderTargetView* rtViews[] = { GetResource<ID3D11RenderTargetView>(rt) };
ID3D11DepthStencilView* dsView = ds.IsValid() ? GetResource<ID3D11DepthStencilView>(ds) : nullptr;
_context->OMSetRenderTargets(1, rtViews, dsView);
}
//------------------------------------------------------------------------------
void DXGraphics::SetShaderResource(ObjectHandle h, ShaderType type, u32 slot)
{
if (h.type == ObjectHandle::RenderTargetData)
{
h = g_Graphics->GetResource<DXGraphics::RenderTargetResource>(h)->srv;
}
else if (h.type == ObjectHandle::TextureData)
{
h = g_Graphics->GetResource<DXGraphics::TextureResource>(h)->srv;
}
ASSERT(h.type == ObjectHandle::ShaderResourceView || h == EMPTY_OBJECT_HANDLE);
ID3D11ShaderResourceView* views[] = { GetResource<ID3D11ShaderResourceView>(h) };
switch (type)
{
case ShaderType::VertexShader: _context->VSSetShaderResources(slot, 1, views); break;
case ShaderType::PixelShader: _context->PSSetShaderResources(slot, 1, views); break;
case ShaderType::ComputeShader: _context->CSSetShaderResources(slot, 1, views); break;
case ShaderType::GeometryShader: _context->GSSetShaderResources(slot, 1, views); break;
}
}
//------------------------------------------------------------------------------
void DXGraphics::SetViewport(const D3D11_VIEWPORT& viewPort)
{
_context->RSSetViewports(1, &viewPort);
}
//------------------------------------------------------------------------------
void DXGraphics::SetScissorRect(const D3D11_RECT& r)
{
_context->RSSetScissorRects(1, &r);
}
//------------------------------------------------------------------------------
#if WITH_FILE_UTILS
std::pair<ObjectHandle, ObjectHandle> DXGraphics::LoadVertexShader(
const char* filename, D3D11_INPUT_ELEMENT_DESC* inputElements, int numElements)
{
std::vector<char> buf;
if (LoadFile(filename, &buf))
{
ID3D11VertexShader* vs;
if (SUCCEEDED(_device->CreateVertexShader(buf.data(), buf.size(), nullptr, &vs)))
{
ObjectHandle hVs = AddResource(ObjectHandle::VertexShader, vs);
if (!inputElements)
return std::make_pair(hVs, EMPTY_OBJECT_HANDLE);
u32 ofs = 0;
for (int i = 0; i < numElements; ++i)
{
D3D11_INPUT_ELEMENT_DESC& e = inputElements[i];
e.AlignedByteOffset = ofs;
ofs += SizeFromFormat(e.Format);
}
ID3D11InputLayout* layout;
if (SUCCEEDED(_device->CreateInputLayout(
inputElements, numElements, buf.data(), buf.size(), &layout)))
{
return std::make_pair(hVs, AddResource(ObjectHandle::InputLayout, layout));
}
}
}
return std::make_pair(EMPTY_OBJECT_HANDLE, EMPTY_OBJECT_HANDLE);
}
//------------------------------------------------------------------------------
ObjectHandle DXGraphics::LoadPixelShader(const char* filename)
{
std::vector<char> buf;
if (LoadFile(filename, &buf))
{
ID3D11PixelShader* ps;
if (SUCCEEDED(_device->CreatePixelShader(buf.data(), buf.size(), nullptr, &ps)))
{
return AddResource(ObjectHandle::PixelShader, ps);
}
}
return EMPTY_OBJECT_HANDLE;
}
#endif
| [
"magnus.osterlind@gmail.com"
] | magnus.osterlind@gmail.com |
6eacadb0992618ac4150ad9973fb0ab90f24c1f9 | 7782c7dd70620b011d3a644cdb8c94c5ed6fb05f | /test/strct/iterate.cpp | be8d5e8881119c4a940aed7661193602030a07bd | [] | no_license | yubako/cflowmake | a07dc03d382ff2836163730685fe848a6e5ba44c | 63a91901029c4a789fe9ba72f5281a1c28af2044 | refs/heads/master | 2020-12-24T18:13:58.271778 | 2016-05-12T22:31:40 | 2016-05-12T22:31:40 | 56,612,749 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 471 | cpp |
#include "gtest/gtest.h"
#include "pars/cytypes.h"
#include "pars/cyparse.h"
#include <stdio.h>
extern int yydebug;
TEST(iterate, WhileStatement)
{
const char* path = "loadsrcs/iterate.c";
EXPECT_EQ( 0 ,cflowSrcParse(path));
}
TEST(iterate, DoStatement)
{
const char* path = "loadsrcs/dostmt.c";
EXPECT_EQ( 0 ,cflowSrcParse(path));
}
TEST(iterate, ForStatement)
{
const char* path = "loadsrcs/for.c";
EXPECT_EQ( 0 ,cflowSrcParse(path));
}
| [
"user@localhost.localdomain"
] | user@localhost.localdomain |
0a37fc04ba5bb21cd67dc185920495679ac8e806 | 4a60a88fc98fdf7c6a6f062c3bafd13a0f20f030 | /Source/GraphFormatter/Private/EvenlyPlaceStrategy.cpp | 5f788b2139c5d8d2e70f912947aea5417c3b462e | [
"MIT"
] | permissive | howaajin/graphformatter | 011e37cae16b9b57bead3652593664ecc9d27d54 | 62fe2003cd33f3bffff3190b024ba270f6cba2c7 | refs/heads/master | 2023-08-19T10:32:55.105991 | 2023-08-15T06:57:50 | 2023-08-15T06:57:50 | 178,136,554 | 89 | 16 | MIT | 2023-05-23T07:56:41 | 2019-03-28T06:02:14 | C++ | UTF-8 | C++ | false | false | 3,001 | cpp | /*---------------------------------------------------------------------------------------------
* Copyright (c) Howaajin. All rights reserved.
* Licensed under the MIT License. See License in the project root for license information.
*--------------------------------------------------------------------------------------------*/
#include "EvenlyPlaceStrategy.h"
#include "FormatterGraph.h"
#include "FormatterSettings.h"
FBox2D FEvenlyPlaceStrategy::PlaceNodeInLayer(TArray<FFormatterNode*>& Layer, const FBox2D& PreBound)
{
FBox2D Bound(ForceInit);
const UFormatterSettings& Settings = *GetDefault<UFormatterSettings>();
FVector2D Position;
if (PreBound.bIsValid)
{
Position = FVector2D(PreBound.Max.X + Settings.HorizontalSpacing, 0);
}
else
{
Position = FVector2D(0, 0);
}
for (auto Node : Layer)
{
if (Node->OriginalNode == nullptr)
{
Node->SetPosition(Position);
continue;
}
Node->SetPosition(Position);
if (Bound.bIsValid)
{
Bound += FBox2D(Position, Position + Node->Size);
}
else
{
Bound = FBox2D(Position, Position + Node->Size);
}
Position.Y += Node->Size.Y + Settings.VerticalSpacing;
}
return Bound;
}
FFormatterNode* FEvenlyPlaceStrategy::FindFirstNodeInLayeredList(TArray<TArray<FFormatterNode*>>& InLayeredNodes)
{
for (const auto& Layer : InLayeredNodes)
{
for (auto Node : Layer)
{
return Node;
}
}
return nullptr;
}
FEvenlyPlaceStrategy::FEvenlyPlaceStrategy(TArray<TArray<FFormatterNode*>>& InLayeredNodes)
: IPositioningStrategy(InLayeredNodes)
{
FVector2D StartPosition;
FFormatterNode* FirstNode = FindFirstNodeInLayeredList(InLayeredNodes);
if (FirstNode != nullptr)
{
StartPosition = FirstNode->GetPosition();
}
float MaxHeight = 0;
FBox2D PreBound(ForceInit);
TArray<FBox2D> Bounds;
for (auto& Layer : InLayeredNodes)
{
PreBound = PlaceNodeInLayer(Layer, PreBound);
Bounds.Add(PreBound);
if (TotalBound.bIsValid)
{
TotalBound += PreBound;
}
else
{
TotalBound = PreBound;
}
const float Height = PreBound.GetSize().Y;
if (Height > MaxHeight)
{
MaxHeight = Height;
}
}
StartPosition -= FVector2D(0, MaxHeight - Bounds[0].GetSize().Y) / 2.0f;
for (int32 i = 0; i < InLayeredNodes.Num(); i++)
{
const FVector2D Offset = FVector2D(0, (MaxHeight - Bounds[i].GetSize().Y) / 2.0f) + StartPosition;
for (auto Node : InLayeredNodes[i])
{
Node->SetPosition(Node->GetPosition() + Offset);
}
}
TotalBound = FBox2D(StartPosition, StartPosition + TotalBound.GetSize());
}
| [
"howaajin@outlook.com"
] | howaajin@outlook.com |
2e099d3c0bd6ad2d9e2bf2ea10c876f724d35b96 | 4365cdadad0026cabdf008bb46cacbaa397122f3 | /Taewoo/algorithms/DataStructure1/18258_큐2.cpp | e86d4eed5d14efbf00d4172acf28fe51e42468a8 | [] | no_license | thalals/Algorithm_Study | 31e124df727fb0af9bf9d4905f3eade35a722813 | 3d067442e5e0d6ca6896a0b0c8e58a0dc41e717e | refs/heads/main | 2023-07-06T05:52:04.679220 | 2021-08-19T06:11:56 | 2021-08-19T06:11:56 | 331,019,217 | 1 | 1 | null | 2021-01-19T15:10:19 | 2021-01-19T15:10:18 | null | UTF-8 | C++ | false | false | 1,158 | cpp | /*
Problem : https://www.acmicpc.net/problem/18258
Comment : 그저 큐 사용하기
*/
#include <bits/stdc++.h>
using namespace std;
queue<int> q;
int N;
void input() {
cin >> N;
}
void pro() {
for(int i = 0; i < N; i++) {
string input;
cin >> input;
if(input == "push") {
int num;
cin >> num;
q.push(num);
}
else if(input == "pop") {
if(!q.empty()) {
cout << q.front() << "\n";
q.pop();
}
else cout << -1 << "\n";
}
else if(input == "size") cout << q.size() << "\n";
else if(input == "empty") {
if(!q.empty()) cout << q.empty() << "\n";
else cout << q.empty() << "\n";
}
else if(input == "front") {
if(!q.empty()) cout << q.front() << "\n";
else cout << -1 << "\n";
}
else {
if(!q.empty()) cout << q.back() << "\n";
else cout << -1 << "\n";
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
input();
pro();
return 0;
} | [
"skaxodn97@gmail.com"
] | skaxodn97@gmail.com |
abc1619f294e7558fa6e4ed138bb0747c98833cd | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14482/function14482_schedule_24/function14482_schedule_24_wrapper.cpp | 6c07c0a4788ee943c05a944aa0b368541c6e0d44 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,481 | cpp | #include "Halide.h"
#include "function14482_schedule_24_wrapper.h"
#include "tiramisu/utils.h"
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <fstream>
#include <chrono>
#define MAX_RAND 200
int main(int, char **){
Halide::Buffer<int32_t> buf00(64, 64, 64);
Halide::Buffer<int32_t> buf01(64);
Halide::Buffer<int32_t> buf02(64, 64, 64);
Halide::Buffer<int32_t> buf03(64, 64);
Halide::Buffer<int32_t> buf04(64);
Halide::Buffer<int32_t> buf05(64, 64, 64);
Halide::Buffer<int32_t> buf06(64, 64);
Halide::Buffer<int32_t> buf07(64);
Halide::Buffer<int32_t> buf08(64, 128);
Halide::Buffer<int32_t> buf0(64, 128, 64, 64);
init_buffer(buf0, (int32_t)0);
auto t1 = std::chrono::high_resolution_clock::now();
function14482_schedule_24(buf00.raw_buffer(), buf01.raw_buffer(), buf02.raw_buffer(), buf03.raw_buffer(), buf04.raw_buffer(), buf05.raw_buffer(), buf06.raw_buffer(), buf07.raw_buffer(), buf08.raw_buffer(), buf0.raw_buffer());
auto t2 = std::chrono::high_resolution_clock::now();
std::chrono::duration<double> diff = t2 - t1;
std::ofstream exec_times_file;
exec_times_file.open("../data/programs/function14482/function14482_schedule_24/exec_times.txt", std::ios_base::app);
if (exec_times_file.is_open()){
exec_times_file << diff.count() * 1000000 << "us" <<std::endl;
exec_times_file.close();
}
return 0;
} | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
3c66d6d4c137da4bedd0519be9878f058f7c76e0 | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/BatchJobGroup/UNIX_BatchJobGroup_HPUX.hxx | a9319945a6b126669082cbe85a1561dede1dd205 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,810 | hxx | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor licenses this file to you under the OpenPegasus Open
// Source License; you may not use this file except in compliance with the
// License.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included
// in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
// IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
// CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
// TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
// SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
//////////////////////////////////////////////////////////////////////////
//
//%/////////////////////////////////////////////////////////////////////////
#ifdef PEGASUS_OS_HPUX
#ifndef __UNIX_BATCHJOBGROUP_PRIVATE_H
#define __UNIX_BATCHJOBGROUP_PRIVATE_H
#endif
#endif
| [
"brunolauze@msn.com"
] | brunolauze@msn.com |
ab7cdf6a23bcf078cb74929b8b742dcbb3d4cbae | 1729f98dcd81506ef5e5e6ded8b539894a647680 | /tensorflow/compiler/xla/service/hlo_module.cc | 6fe2134466ffaf1402e5ecbc81aea9aafe2a468b | [
"Apache-2.0"
] | permissive | PipelineAI/tensorflow | f539227fd5d3f304b4f246877e35303dbd388a0c | a0b68c666b8a06d237cc6776183ab8cd31055fcb | refs/heads/r1.5 | 2021-05-05T21:54:02.830548 | 2018-01-21T08:48:53 | 2018-01-21T08:48:53 | 115,791,564 | 0 | 1 | Apache-2.0 | 2018-01-15T05:38:46 | 2017-12-30T11:08:37 | C++ | UTF-8 | C++ | false | false | 21,719 | cc | /* Copyright 2017 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/compiler/xla/service/hlo_module.h"
#include <iterator>
#include <set>
#include <sstream>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include "tensorflow/compiler/xla/map_util.h"
#include "tensorflow/compiler/xla/ptr_util.h"
#include "tensorflow/compiler/xla/shape_util.h"
#include "tensorflow/compiler/xla/types.h"
#include "tensorflow/core/lib/gtl/map_util.h"
#include "tensorflow/core/lib/strings/strcat.h"
#include "tensorflow/core/platform/types.h"
namespace xla {
HloModule::HloModule(const string& name,
const VersionedComputationHandle& entry_computation_handle,
const HloModuleConfig& config)
: name_(NameUniquer::GetSanitizedName(name)),
config_(config),
has_entry_computation_handle_(true),
entry_computation_handle_(entry_computation_handle) {}
HloModule::HloModule(const string& name)
: name_(NameUniquer::GetSanitizedName(name)) {}
HloModule::HloModule(const string& name, const HloModuleConfig& config)
: name_(NameUniquer::GetSanitizedName(name)), config_(config) {}
HloComputation* HloModule::AddComputationInternal(
std::unique_ptr<HloComputation> computation, bool is_entry,
bool uniquify_names) {
if (is_entry) {
CHECK_EQ(nullptr, entry_computation_);
entry_computation_ = computation.get();
// If the module configuration has no entry layout computation set, create a
// default one based on the program shape.
if (!config_.has_entry_computation_layout()) {
config_.SetDefaultComputationLayout(
entry_computation_->ComputeProgramShape());
}
}
if (uniquify_names) {
computation->UniquifyName(&computation_name_uniquer_);
for (auto* instruction : computation->instructions()) {
instruction->UniquifyName(&instruction_name_uniquer_);
}
} else {
// Don't uniquify the names of the computation or instruction, but we must
// run the names through the uniquifiers to prevent future name collisions
// for computations and instructions created later.
computation_name_uniquer_.GetUniqueName(computation->name());
for (auto* instruction : computation->instructions()) {
instruction_name_uniquer_.GetUniqueName(instruction->name());
}
}
// Pick unique IDs for each instruction.
for (auto* instruction : computation->instructions()) {
instruction->SetUniqueId(NewUniqueInstructionId());
}
computation->set_parent(this);
computations_.push_back(std::move(computation));
return computations_.back().get();
}
HloComputation* HloModule::AddEntryComputation(
std::unique_ptr<HloComputation> computation) {
return AddComputationInternal(std::move(computation), /*is_entry=*/true,
/*uniquify_names=*/true);
}
Status HloModule::RemoveEmbeddedComputation(HloComputation* to_remove) {
auto it =
std::find_if(computations_.begin(), computations_.end(),
[&to_remove](const std::unique_ptr<HloComputation>& comp) {
return comp.get() == to_remove;
});
TF_RET_CHECK(it->get() == to_remove);
computations_.erase(it);
return Status::OK();
}
HloComputation* HloModule::AddEmbeddedComputation(
std::unique_ptr<HloComputation> computation) {
return AddComputationInternal(std::move(computation), /*is_entry=*/false,
/*uniquify_names=*/true);
}
void HloModule::ReplaceComputations(
const std::unordered_map<HloComputation*, HloComputation*>& replacements) {
// Replace all uses of non-canonical computations with their
// representatives.
std::vector<std::unique_ptr<HloComputation>> new_computations;
new_computations.reserve(computations_.size());
for (std::unique_ptr<HloComputation>& computation : computations_) {
for (auto* instruction : computation->instructions()) {
switch (instruction->opcode()) {
case HloOpcode::kCall:
case HloOpcode::kMap:
case HloOpcode::kReduce:
case HloOpcode::kReduceWindow: {
HloComputation* new_arg = tensorflow::gtl::FindWithDefault(
replacements, instruction->to_apply(), nullptr);
if (new_arg != nullptr) {
instruction->set_to_apply(new_arg);
}
break;
}
case HloOpcode::kWhile: {
HloComputation* new_condition = tensorflow::gtl::FindWithDefault(
replacements, instruction->while_condition(), nullptr);
if (new_condition != nullptr) {
instruction->set_while_condition(new_condition);
}
HloComputation* new_body = tensorflow::gtl::FindWithDefault(
replacements, instruction->while_body(), nullptr);
if (new_body != nullptr) {
instruction->set_while_body(new_body);
}
break;
}
case HloOpcode::kSelectAndScatter: {
HloComputation* new_select = tensorflow::gtl::FindWithDefault(
replacements, instruction->select(), nullptr);
if (new_select != nullptr) {
instruction->set_select(new_select);
}
HloComputation* new_scatter = tensorflow::gtl::FindWithDefault(
replacements, instruction->scatter(), nullptr);
if (new_scatter != nullptr) {
instruction->set_scatter(new_scatter);
}
break;
}
default:
break;
}
}
if (replacements.find(computation.get()) == replacements.end()) {
new_computations.push_back(std::move(computation));
}
}
// Replace entry_computation if necessary.
entry_computation_ = tensorflow::gtl::FindWithDefault(
replacements, entry_computation_, entry_computation_);
computations_ = std::move(new_computations);
}
string HloModule::ToString(bool include_large_constants) const {
std::ostringstream s;
s << "HloModule " << name() << ":\n\n";
for (const HloComputation* computation : MakeComputationPostOrder()) {
if (computation == entry_computation()) {
s << "ENTRY ";
}
s << computation->ToString(
/*nested_level=*/0,
/*include_large_constants=*/include_large_constants)
<< "\n\n";
}
return s.str();
}
HloModuleProto HloModule::ToProto() const {
HloModuleProto proto;
proto.set_name(name_);
proto.set_entry_computation_name(entry_computation_->name());
for (const HloComputation* computation : MakeComputationPostOrder()) {
// Fusion computations are added when the fusion instructions are created by
// HloInstruction::CreateFromProto.
if (computation->IsFusionComputation()) {
continue;
}
HloComputationProto computation_proto = computation->ToProto();
proto.add_computations()->Swap(&computation_proto);
}
return proto;
}
namespace {
// Construct a ProgramShape matching the shape of the parameters and root of the
// given module's entry computation.
StatusOr<ProgramShape> ProgramShapeFromProto(const HloModuleProto& module) {
const HloComputationProto* entry_computation = nullptr;
for (const HloComputationProto& computation : module.computations()) {
if (computation.name() == module.entry_computation_name()) {
entry_computation = &computation;
break;
}
}
TF_RET_CHECK(entry_computation != nullptr)
<< "No computation with entry computation name"
<< module.entry_computation_name();
tensorflow::gtl::FlatMap<int64, std::pair<string, const Shape*>> parameters;
const HloInstructionProto* root = nullptr;
for (const HloInstructionProto& instruction :
entry_computation->instructions()) {
if (instruction.name() == entry_computation->root_name()) {
TF_RET_CHECK(root == nullptr) << "Entry computation has more than "
"one instruction with (root) name "
<< instruction.name();
root = &instruction;
}
if (instruction.opcode() == HloOpcodeString(HloOpcode::kParameter)) {
TF_RET_CHECK(!ContainsKey(parameters, instruction.parameter_number()))
<< "Entry computation has more than one parameter instruction "
"with parameter number "
<< instruction.parameter_number();
parameters[instruction.parameter_number()] = {
instruction.parameter_name(), &instruction.shape()};
}
}
TF_RET_CHECK(root != nullptr)
<< "Entry computation is missing root instruction named "
<< entry_computation->root_name();
ProgramShape program_shape;
*program_shape.mutable_result() = root->shape();
for (int64 i = 0; i < parameters.size(); ++i) {
TF_RET_CHECK(ContainsKey(parameters, i))
<< "Entry computation missing parameter number " << i;
const string& name = parameters.at(i).first;
const Shape& shape = *parameters.at(i).second;
*program_shape.add_parameters() = shape;
program_shape.add_parameter_names(name);
}
return std::move(program_shape);
}
} // namespace
/* static */
StatusOr<std::unique_ptr<HloModule>> HloModule::CreateFromProto(
const HloModuleProto& proto, const HloModuleConfig& module_config,
const VersionedComputationHandle& entry_computation_handle) {
// The ProgramShape in the passed in module config must match the shapes of
// the entry parameters and root.
TF_ASSIGN_OR_RETURN(ProgramShape expected_program_shape,
ProgramShapeFromProto(proto));
TF_RET_CHECK(expected_program_shape.parameters_size() ==
module_config.entry_computation_layout().parameter_count());
for (int i = 0; i < expected_program_shape.parameters_size(); ++i) {
const Shape& parameter_shape =
module_config.entry_computation_layout().parameter_layout(i).shape();
TF_RET_CHECK(
ShapeUtil::Equal(expected_program_shape.parameters(i), parameter_shape))
<< "HloModuleConfig has different shape for parameter " << i
<< " than the HLO module. Expected: "
<< ShapeUtil::HumanStringWithLayout(
expected_program_shape.parameters(i))
<< ", actual: " << ShapeUtil::HumanStringWithLayout(parameter_shape);
}
const Shape& result_shape =
module_config.entry_computation_layout().result_layout().shape();
TF_RET_CHECK(ShapeUtil::Equal(expected_program_shape.result(), result_shape))
<< "HloModuleConfig has different result shape than the HLO module. "
"Expected: "
<< ShapeUtil::HumanStringWithLayout(expected_program_shape.result())
<< ", actual: " << ShapeUtil::HumanStringWithLayout(result_shape);
auto module = MakeUnique<HloModule>(proto.name(), entry_computation_handle,
module_config);
tensorflow::gtl::FlatMap<string, HloComputation*> computation_map;
for (const HloComputationProto& computation_proto : proto.computations()) {
TF_ASSIGN_OR_RETURN(
std::unique_ptr<HloComputation> computation,
HloComputation::CreateFromProto(
module.get(), computation_proto, computation_map,
/*add_fused_computation=*/
[&module](std::unique_ptr<HloComputation> fused_computation) {
module->AddComputationInternal(std::move(fused_computation),
/*is_entry=*/false,
/*uniquify_names=*/false);
}));
CHECK_NE(computation.get(), nullptr);
TF_RET_CHECK(!ContainsKey(computation_map, computation->name()));
string computation_name = computation->name();
// Don't uniquify names because we want names to be stable across
// serialization and deserialization.
computation_map[computation_name] = module->AddComputationInternal(
std::move(computation),
/*is_entry=*/proto.entry_computation_name() == computation_name,
/*uniquify_names=*/false);
}
TF_RET_CHECK(module->entry_computation_ != nullptr);
// Because we didn't uniquify the names, double-check that the instruction and
// computation names are unique from the proto.
tensorflow::gtl::FlatSet<string> computation_names;
tensorflow::gtl::FlatSet<string> instruction_names;
for (HloComputation* computation : module->computations()) {
if (computation->IsFusionComputation()) {
continue;
}
TF_RET_CHECK(!ContainsKey(computation_names, computation->name()))
<< "Computation name is not unique: " << computation->name();
computation_names.insert(computation->name());
for (HloInstruction* instruction : computation->instructions()) {
TF_RET_CHECK(!ContainsKey(instruction_names, instruction->name()))
<< "Instruction name is not unique: " << instruction->name();
instruction_names.insert(instruction->name());
}
}
return std::move(module);
}
/* static */
StatusOr<HloModuleConfig> HloModule::CreateModuleConfigFromProto(
const HloModuleProto& module) {
TF_ASSIGN_OR_RETURN(ProgramShape program_shape,
ProgramShapeFromProto(module));
HloModuleConfig module_config(program_shape);
// The module config is constructed with default layouts regardless of what is
// passed in via the ProgramShape. Set the layouts to the appropriate values.
ComputationLayout* entry_layout =
module_config.mutable_entry_computation_layout();
for (int64 i = 0; i < entry_layout->parameter_count(); ++i) {
TF_RETURN_IF_ERROR(
entry_layout->mutable_parameter_layout(i)->CopyLayoutFromShape(
program_shape.parameters(i)));
}
TF_RETURN_IF_ERROR(entry_layout->mutable_result_layout()->CopyLayoutFromShape(
program_shape.result()));
return module_config;
}
namespace {
// Returns whether `hlo` is used outside the given subcomputation.
// `instructions_in_subcomputation` is the instruction set of the given
// subcomputation.
bool IsUsedOutsideSubcomputation(
const HloInstruction& hlo,
const std::unordered_set<HloInstruction*>& instructions_in_subcomputation) {
for (HloInstruction* user : hlo.users()) {
if (!instructions_in_subcomputation.count(user)) {
return true;
}
}
return false;
}
} // anonymous namespace
HloInstruction* HloModule::OutlineExpressionFromComputation(
tensorflow::gtl::ArraySlice<HloInstruction*> instructions_to_outline,
const string& outlined_computation_name, HloComputation* computation) {
auto builder = HloComputation::Builder(outlined_computation_name);
// A map from original instructions to their counterparts in the new outlined
// function.
std::unordered_map<HloInstruction*, HloInstruction*> outlined_instructions;
// A set that contains all instructions to be outlined.
std::unordered_set<HloInstruction*> instruction_set_to_outline(
instructions_to_outline.begin(), instructions_to_outline.end());
std::vector<HloInstruction*> arguments;
std::vector<HloInstruction*> outputs;
int64 parameter_count = 0;
for (HloInstruction* instruction_to_outline : instructions_to_outline) {
// Clone the original instruction.
HloInstruction* outlined_instruction =
builder.AddInstruction(instruction_to_outline->Clone());
// Replace its operands to their counterparts in the new function.
for (int64 operand_num = 0;
operand_num < outlined_instruction->operand_count(); ++operand_num) {
HloInstruction* old_operand =
outlined_instruction->mutable_operand(operand_num);
HloInstruction** operand_slot = &(outlined_instructions[old_operand]);
if (*operand_slot == nullptr) {
// Because instructions_to_outline is in topological order, if
// old_operand is not in outlined_instructions, old_operand must be an
// input of the outlined subcomputation and thus should be represented
// as a parameter in the new function.
arguments.push_back(old_operand);
*operand_slot = builder.AddInstruction(HloInstruction::CreateParameter(
parameter_count, old_operand->shape(), ""));
++parameter_count;
}
TF_CHECK_OK(
outlined_instruction->ReplaceOperandWith(operand_num, *operand_slot));
}
// Insert the new instruction into the outlined_instructions map.
InsertOrDie(&outlined_instructions, instruction_to_outline,
outlined_instruction);
// Mark instruction_to_outline an output if it is used outside the
// subcomputation or is the output of the original computation (i.e. used
// externally).
if (instruction_to_outline->user_count() == 0 ||
IsUsedOutsideSubcomputation(*instruction_to_outline,
instruction_set_to_outline)) {
outputs.push_back(instruction_to_outline);
}
}
if (outputs.size() != 1) {
string error_message =
"The subcomputation to outline has multiple outputs:\n";
for (HloInstruction* output : outputs) {
tensorflow::strings::StrAppend(&error_message, output->ToString(), "\n");
}
LOG(FATAL) << error_message;
}
HloInstruction* output = outputs[0];
// Creates a call to the nested computation.
HloComputation* nested_computation = AddEmbeddedComputation(
builder.Build(FindOrDie(outlined_instructions, output)));
HloInstruction* call = computation->AddInstruction(HloInstruction::CreateCall(
output->shape(), arguments, nested_computation));
VLOG(2) << "Outlining the following instructions";
for (auto* instruction_to_outline : instructions_to_outline) {
VLOG(2) << " " << instruction_to_outline->ToString();
}
VLOG(2) << "as a call " << call->ToString();
VLOG(2) << "to " << nested_computation->ToString();
TF_CHECK_OK(output->ReplaceAllUsesWith(call));
for (auto i = instructions_to_outline.rbegin();
i != instructions_to_outline.rend(); ++i) {
TF_CHECK_OK(computation->RemoveInstruction(*i));
}
return call;
}
std::list<HloComputation*> HloModule::MakeComputationPostOrder() const {
// First determine all root computations by building a set of nonroot
// computations (computations which are called by an instruction in the
// module).
std::set<HloComputation*> nonroot_computations;
for (auto& computation : computations_) {
for (auto* instruction : computation->instructions()) {
for (HloComputation* called_computation :
instruction->called_computations()) {
nonroot_computations.insert(called_computation);
}
}
}
// Keep track of computations which have already been added to the post
// order. This prevents duplication as an embedded computation may be called
// from two different root computations.
std::set<HloComputation*> added_computations;
std::list<HloComputation*> post_order;
for (auto& computation : computations_) {
if (nonroot_computations.count(computation.get()) == 0) {
for (HloComputation* embedded_computation :
computation->MakeEmbeddedComputationsList()) {
if (added_computations.count(embedded_computation) == 0) {
post_order.push_back(embedded_computation);
added_computations.insert(embedded_computation);
}
}
// Root computations should only be encountered once.
CHECK_EQ(0, added_computations.count(computation.get()));
post_order.push_back(computation.get());
added_computations.insert(computation.get());
}
}
CHECK_EQ(post_order.size(), computations_.size());
return post_order;
}
std::vector<HloComputation*> HloModule::MakeNonfusionComputations() const {
std::vector<HloComputation*> result;
for (auto* c : computations()) {
if (c->IsFusionComputation()) {
continue;
}
result.push_back(c);
}
return result;
}
std::unique_ptr<HloModule> HloModule::Clone(const string& suffix) const {
VLOG(1) << "Cloning module :" << name_ << " --> " << suffix << "\n";
auto module = MakeUnique<HloModule>(name_ + "-" + suffix);
module->config_ = config_;
module->entry_computation_handle_ = entry_computation_handle_;
module->has_entry_computation_handle_ = has_entry_computation_handle_;
std::unordered_map<HloComputation*, HloComputation*> clone_map;
for (auto& computation : computations_) {
auto cloned_computation = computation->Clone(suffix);
InsertOrDie(&clone_map, computation.get(), cloned_computation.get());
if (entry_computation_ == computation.get()) {
module->AddEntryComputation(std::move(cloned_computation));
} else {
module->AddEmbeddedComputation(std::move(cloned_computation));
}
}
for (auto& cloned_computation : module->computations_) {
for (auto* instruction : cloned_computation->instructions()) {
// Rewrite instruction's called_computation to point to the cloned
// computations.
instruction->ReplaceCalledComputations(
[&](HloComputation* hlo) { return FindOrDie(clone_map, hlo); });
}
}
return module;
}
uint64 HloModule::RandomNew64() const {
tensorflow::mutex_lock l(rng_mutex_);
return rng_();
}
} // namespace xla
| [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
7daf5037d6d23e75b689bf540ace298061fee6c6 | c322279e4155ca257a4a78c4130efbac2ae1380a | /分类/动态规划/找规律/青蛙跳台阶.cpp | fd5a2b298e388420b407860fb3de3a97f11ee79f | [] | no_license | xieliang555/leetcode | 43c87087ad358ca1a3faa7e74e3849e55052a00e | 09f6ff8e34ac9db6c59b0e2c244a2ba93b0ae8ed | refs/heads/master | 2020-06-27T06:06:21.642472 | 2019-08-30T07:14:20 | 2019-08-30T07:14:20 | 199,864,278 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 531 | cpp | #include<iostream>
#include<vector>
#include<cmath>
using namespace std;
/**
* 剑指offer: 10_2
*
* 动态规划:通过计算前几个简单例子找规律
*/
// 一次只可以跳1个台阶或2个台阶
int solution(int n){
if(n==1 || n==2) return 1;
vector<int> dp(n+1);
dp[1]=1;
dp[2]=1;
for(int i=3;i<=n;i++)
dp[i]=dp[i-1]+dp[i-2];
return dp.back();
}
//一次可以跳n个台阶
int solution_2(int n){
return pow(2,n-1);
}
int main(int argc, char const *argv[])
{
cout<<solution_2(6)<<endl;
return 0;
} | [
"xieliang555@gmail.com"
] | xieliang555@gmail.com |
688e2c46273192729fda8fc1789db352c1184e15 | 061f361081763866f8bb23cb37eac0e195044b8e | /idle_handler_p.h | 4197994f837b3453b8bfbfbe8a32cbcf5ab7f6fd | [
"Unlicense"
] | permissive | master-gekus/mg_proxy_test | 28846b687ca52617ca65638071a83913495e705f | d38622a85d6891dfb1d3355674e1ee547606d9d3 | refs/heads/master | 2022-11-06T23:27:35.793795 | 2020-06-21T12:26:04 | 2020-06-21T12:26:04 | 273,742,425 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 489 | h | #ifndef IDLE_HANDLER_P_H
#define IDLE_HANDLER_P_H
#include <QTimer>
#include "idle_handler.h"
class IdleHandlerPrivate final : public QObject
{
Q_OBJECT
private:
explicit IdleHandlerPrivate(IdleHandler* owner);
~IdleHandlerPrivate() override;
private:
bool eventFilter(QObject *object, QEvent *) override final;
private:
IdleHandler *owner_;
QObject *object_;
QTimer timer_;
private slots:
void onTimer();
friend class IdleHandler;
};
#endif // IDLE_HANDLER_P_H
| [
"master.gekus@gmail.com"
] | master.gekus@gmail.com |
e45ea6a1e233c8bfc4aca01cce39a0bd16f1cd96 | 980b5ebcef6f22f4620dea9b8799715fe674c13f | /State.h | 3b61e58f0a014de21816bf37a1a65542350fed2a | [] | no_license | tshaked94/PongTris | 90a3e3c51eef2bbe43bb75d0ff0eb1a445259886 | ec4455dec5851f7bb1cc6ccc8d52bbd02566e437 | refs/heads/master | 2020-09-01T14:52:56.213130 | 2019-11-01T12:51:40 | 2019-11-01T12:51:40 | 218,984,887 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 72 | h | #pragma once
class BallState
{
public:
BallState();
~BallState();
};
| [
"tomershaked22@gmail.com"
] | tomershaked22@gmail.com |
74c557831c8e94161300af27bab70125901cc61e | 9945c4919caeeb5752acef69b772059bd0520f59 | /cocos2dx/support/CCNotificationHandler.cpp | c71b813246f83ab519a71584a1dab0c283d55de8 | [
"MIT"
] | permissive | BetaS/cocos2d-x | 97bce88f6f1a9033003009a0c2b0816524aad33a | 1236bf03ea35fc113a0942a4c727869cdb81bf3a | refs/heads/master | 2021-01-17T16:24:47.517181 | 2013-12-11T07:22:44 | 2013-12-11T07:22:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,023 | cpp | #include "CCNotificationHandler.h"
void CCNotificationHandler::postNotificationOnMainThread(const char *name)
{
postNotificationOnMainThread(name, NULL);
}
void CCNotificationHandler::postNotificationOnMainThread(const char *name, CCObject *object)
{
CCObject *target = new CCNotificationHandler(name, object);
target->retain();
target->autorelease();
CCDirector::sharedDirector()->getScheduler()->scheduleSelector(schedule_selector(CCNotificationHandler::postNotification), target, 0, 0, 0, false);
}
CCNotificationHandler::~CCNotificationHandler()
{
if (_object) _object->release();
}
CCNotificationHandler::CCNotificationHandler(const char *name, CCObject *object)
{
_name = name;
_object = object;
if (_object) _object->retain();
}
void CCNotificationHandler::postNotification(float dt)
{
CCNotificationCenter::sharedNotificationCenter()->postNotification(_name.c_str(), _object);
// this->autorelease();
// CCTimer will unschedule this selector later, and 'this' will be autoreleased by main loop
} | [
"k09089@naver.com"
] | k09089@naver.com |
e01b5f90cd51ec61771049a73ca063547647d491 | af27fdc62d46654e096458d44cdcedfbb17211f7 | /editor_src/WolfEditor/itemwater.h | 1b564a4c85cbcf10731d67d3694726dbc6f2894b | [
"MIT"
] | permissive | PBrrtrn/75.42-TP-grupal | af5d69d40ce987798ba25d8c6ba07c9ba26b3b5a | ec76c5c90f340916c34b867f14ec9af12123c921 | refs/heads/master | 2023-03-18T06:54:45.819034 | 2021-03-10T21:15:39 | 2021-03-10T21:15:39 | 313,773,793 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 175 | h | #ifndef ITEMWATER_H
#define ITEMWATER_H
#include "itemdraggable.h"
class ItemWater : public ItemDraggable
{
public:
ItemWater(QWidget* widget);
};
#endif // ITEMFOOD_H
| [
"german.samoluk@gmail.com"
] | german.samoluk@gmail.com |
2dbaf6aea157b1f0a5e06a52ad1cda31c84ea71d | 1c09b78f9f35025680ccf42c70f0b7be45306d34 | /neo/renderer/tr_light.cpp | f45d4d8a7b184dd51f88e9ca3cf7f246231c04d9 | [] | no_license | CodeLikeCXK/idtech4cdk | dbfbe6028d7017ceab11b6aed0dbdd184ac5eceb | b904be160f72f502594902d7f1e0fdfd186639bf | refs/heads/master | 2021-12-04T10:44:58.300295 | 2012-07-07T23:05:19 | 2012-07-07T23:05:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 52,082 | cpp | /*
===========================================================================
Doom 3 GPL Source Code
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
This file is part of the Doom 3 GPL Source Code (?Doom 3 Source Code?).
Doom 3 Source Code 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.
Doom 3 Source Code 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 Doom 3 Source Code. If not, see <http://www.gnu.org/licenses/>.
In addition, the Doom 3 Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the Doom 3 Source Code. If not, please request a copy in writing from id Software at the address below.
If you have questions concerning this license or the applicable additional terms, you may contact in writing id Software LLC, c/o ZeniMax Media Inc., Suite 120, Rockville, Maryland 20850 USA.
===========================================================================
*/
#include "precompiled.h"
#pragma hdrstop
#include "tr_local.h"
// jmarshall
#include "../vt/VirtualTexture.h"
// jmarshall end
static const float CHECK_BOUNDS_EPSILON = 1.0f;
/*
===========================================================================================
VERTEX CACHE GENERATORS
===========================================================================================
*/
/*
==================
R_CreateAmbientCache
Create it if needed
==================
*/
bool R_CreateAmbientCache( srfTriangles_t *tri, bool needsLighting ) {
if ( tri->ambientCache ) {
return true;
}
// we are going to use it for drawing, so make sure we have the tangents and normals
if ( needsLighting && !tri->tangentsCalculated ) {
R_DeriveTangents( tri );
}
vertexCache.Alloc( tri->verts, tri->numVerts * sizeof( tri->verts[0] ), &tri->ambientCache );
if ( !tri->ambientCache ) {
return false;
}
return true;
}
/*
==================
R_CreateLightingCache
Returns false if the cache couldn't be allocated, in which case the surface should be skipped.
==================
*/
bool R_CreateLightingCache( const idRenderEntityLocal *ent, const idRenderLightLocal *light, srfTriangles_t *tri ) {
idVec3 localLightOrigin;
// fogs and blends don't need light vectors
if ( light->lightShader->IsFogLight() || light->lightShader->IsBlendLight() ) {
return true;
}
// not needed if we have vertex programs
if ( tr.backEndRendererHasVertexPrograms ) {
return true;
}
R_GlobalPointToLocal( ent->modelMatrix, light->globalLightOrigin, localLightOrigin );
int size = tri->ambientSurface->numVerts * sizeof( lightingCache_t );
lightingCache_t *cache = (lightingCache_t *)_alloca16( size );
#if 1
SIMDProcessor->CreateTextureSpaceLightVectors( &cache[0].localLightVector, localLightOrigin,
tri->ambientSurface->verts, tri->ambientSurface->numVerts, tri->indexes, tri->numIndexes );
#else
bool *used = (bool *)_alloca16( tri->ambientSurface->numVerts * sizeof( used[0] ) );
memset( used, 0, tri->ambientSurface->numVerts * sizeof( used[0] ) );
// because the interaction may be a very small subset of the full surface,
// it makes sense to only deal with the verts used
for ( int j = 0; j < tri->numIndexes; j++ ) {
int i = tri->indexes[j];
if ( used[i] ) {
continue;
}
used[i] = true;
idVec3 lightDir;
const idDrawVert *v;
v = &tri->ambientSurface->verts[i];
lightDir = localLightOrigin - v->xyz;
cache[i].localLightVector[0] = lightDir * v->tangents[0];
cache[i].localLightVector[1] = lightDir * v->tangents[1];
cache[i].localLightVector[2] = lightDir * v->normal;
}
#endif
vertexCache.Alloc( cache, size, &tri->lightingCache );
if ( !tri->lightingCache ) {
return false;
}
return true;
}
/*
==================
R_CreatePrivateShadowCache
This is used only for a specific light
==================
*/
void R_CreatePrivateShadowCache( srfTriangles_t *tri ) {
if ( !tri->shadowVertexes ) {
return;
}
vertexCache.Alloc( tri->shadowVertexes, tri->numVerts * sizeof( *tri->shadowVertexes ), &tri->shadowCache );
}
/*
==================
R_CreateVertexProgramShadowCache
This is constant for any number of lights, the vertex program
takes care of projecting the verts to infinity.
==================
*/
void R_CreateVertexProgramShadowCache( srfTriangles_t *tri ) {
if ( tri->verts == NULL ) {
return;
}
shadowCache_t *temp = (shadowCache_t *)_alloca16( tri->numVerts * 2 * sizeof( shadowCache_t ) );
#if 1
SIMDProcessor->CreateVertexProgramShadowCache( &temp->xyz, tri->verts, tri->numVerts );
#else
int numVerts = tri->numVerts;
const idDrawVert *verts = tri->verts;
for ( int i = 0; i < numVerts; i++ ) {
const float *v = verts[i].xyz.ToFloatPtr();
temp[i*2+0].xyz[0] = v[0];
temp[i*2+1].xyz[0] = v[0];
temp[i*2+0].xyz[1] = v[1];
temp[i*2+1].xyz[1] = v[1];
temp[i*2+0].xyz[2] = v[2];
temp[i*2+1].xyz[2] = v[2];
temp[i*2+0].xyz[3] = 1.0f; // on the model surface
temp[i*2+1].xyz[3] = 0.0f; // will be projected to infinity
}
#endif
vertexCache.Alloc( temp, tri->numVerts * 2 * sizeof( shadowCache_t ), &tri->shadowCache );
}
/*
==================
R_SkyboxTexGen
==================
*/
void R_SkyboxTexGen( drawSurf_t *surf, const idVec3 &viewOrg ) {
int i;
idVec3 localViewOrigin;
R_GlobalPointToLocal( surf->space->modelMatrix, viewOrg, localViewOrigin );
int numVerts = surf->geo->numVerts;
int size = numVerts * sizeof( idVec3 );
idVec3 *texCoords = (idVec3 *) _alloca16( size );
const idDrawVert *verts = surf->geo->verts;
for ( i = 0; i < numVerts; i++ ) {
texCoords[i][0] = verts[i].xyz[0] - localViewOrigin[0];
texCoords[i][1] = verts[i].xyz[1] - localViewOrigin[1];
texCoords[i][2] = verts[i].xyz[2] - localViewOrigin[2];
}
surf->dynamicTexCoords = vertexCache.AllocFrameTemp( texCoords, size );
}
/*
==================
R_WobbleskyTexGen
==================
*/
void R_WobbleskyTexGen( drawSurf_t *surf, const idVec3 &viewOrg ) {
int i;
idVec3 localViewOrigin;
const int *parms = surf->material->GetTexGenRegisters();
float wobbleDegrees = surf->shaderRegisters[ parms[0] ];
float wobbleSpeed = surf->shaderRegisters[ parms[1] ];
float rotateSpeed = surf->shaderRegisters[ parms[2] ];
wobbleDegrees = wobbleDegrees * idMath::PI / 180;
wobbleSpeed = wobbleSpeed * 2 * idMath::PI / 60;
rotateSpeed = rotateSpeed * 2 * idMath::PI / 60;
// very ad-hoc "wobble" transform
float transform[16];
float a = tr.viewDef->floatTime * wobbleSpeed;
float s = sin( a ) * sin( wobbleDegrees );
float c = cos( a ) * sin( wobbleDegrees );
float z = cos( wobbleDegrees );
idVec3 axis[3];
axis[2][0] = c;
axis[2][1] = s;
axis[2][2] = z;
axis[1][0] = -sin( a * 2 ) * sin( wobbleDegrees );
axis[1][2] = -s * sin( wobbleDegrees );
axis[1][1] = sqrt( 1.0f - ( axis[1][0] * axis[1][0] + axis[1][2] * axis[1][2] ) );
// make the second vector exactly perpendicular to the first
axis[1] -= ( axis[2] * axis[1] ) * axis[2];
axis[1].Normalize();
// construct the third with a cross
axis[0].Cross( axis[1], axis[2] );
// add the rotate
s = sin( rotateSpeed * tr.viewDef->floatTime );
c = cos( rotateSpeed * tr.viewDef->floatTime );
transform[0] = axis[0][0] * c + axis[1][0] * s;
transform[4] = axis[0][1] * c + axis[1][1] * s;
transform[8] = axis[0][2] * c + axis[1][2] * s;
transform[1] = axis[1][0] * c - axis[0][0] * s;
transform[5] = axis[1][1] * c - axis[0][1] * s;
transform[9] = axis[1][2] * c - axis[0][2] * s;
transform[2] = axis[2][0];
transform[6] = axis[2][1];
transform[10] = axis[2][2];
transform[3] = transform[7] = transform[11] = 0.0f;
transform[12] = transform[13] = transform[14] = 0.0f;
R_GlobalPointToLocal( surf->space->modelMatrix, viewOrg, localViewOrigin );
int numVerts = surf->geo->numVerts;
int size = numVerts * sizeof( idVec3 );
idVec3 *texCoords = (idVec3 *) _alloca16( size );
const idDrawVert *verts = surf->geo->verts;
for ( i = 0; i < numVerts; i++ ) {
idVec3 v;
v[0] = verts[i].xyz[0] - localViewOrigin[0];
v[1] = verts[i].xyz[1] - localViewOrigin[1];
v[2] = verts[i].xyz[2] - localViewOrigin[2];
R_LocalPointToGlobal( transform, v, texCoords[i] );
}
surf->dynamicTexCoords = vertexCache.AllocFrameTemp( texCoords, size );
}
/*
=================
R_SpecularTexGen
Calculates the specular coordinates for cards without vertex programs.
=================
*/
static void R_SpecularTexGen( drawSurf_t *surf, const idVec3 &globalLightOrigin, const idVec3 &viewOrg ) {
const srfTriangles_t *tri;
idVec3 localLightOrigin;
idVec3 localViewOrigin;
R_GlobalPointToLocal( surf->space->modelMatrix, globalLightOrigin, localLightOrigin );
R_GlobalPointToLocal( surf->space->modelMatrix, viewOrg, localViewOrigin );
tri = surf->geo;
// FIXME: change to 3 component?
int size = tri->numVerts * sizeof( idVec4 );
idVec4 *texCoords = (idVec4 *) _alloca16( size );
#if 1
SIMDProcessor->CreateSpecularTextureCoords( texCoords, localLightOrigin, localViewOrigin,
tri->verts, tri->numVerts, tri->indexes, tri->numIndexes );
#else
bool *used = (bool *)_alloca16( tri->numVerts * sizeof( used[0] ) );
memset( used, 0, tri->numVerts * sizeof( used[0] ) );
// because the interaction may be a very small subset of the full surface,
// it makes sense to only deal with the verts used
for ( int j = 0; j < tri->numIndexes; j++ ) {
int i = tri->indexes[j];
if ( used[i] ) {
continue;
}
used[i] = true;
float ilength;
const idDrawVert *v = &tri->verts[i];
idVec3 lightDir = localLightOrigin - v->xyz;
idVec3 viewDir = localViewOrigin - v->xyz;
ilength = idMath::RSqrt( lightDir * lightDir );
lightDir[0] *= ilength;
lightDir[1] *= ilength;
lightDir[2] *= ilength;
ilength = idMath::RSqrt( viewDir * viewDir );
viewDir[0] *= ilength;
viewDir[1] *= ilength;
viewDir[2] *= ilength;
lightDir += viewDir;
texCoords[i][0] = lightDir * v->tangents[0];
texCoords[i][1] = lightDir * v->tangents[1];
texCoords[i][2] = lightDir * v->normal;
texCoords[i][3] = 1;
}
#endif
surf->dynamicTexCoords = vertexCache.AllocFrameTemp( texCoords, size );
}
//=======================================================================================================
/*
=============
R_SetEntityDefViewEntity
If the entityDef isn't already on the viewEntity list, create
a viewEntity and add it to the list with an empty scissor rect.
This does not instantiate dynamic models for the entity yet.
=============
*/
viewEntity_t *R_SetEntityDefViewEntity( idRenderEntityLocal *def ) {
viewEntity_t *vModel;
if ( def->viewCount == tr.viewCount ) {
return def->viewEntity;
}
def->viewCount = tr.viewCount;
// set the model and modelview matricies
vModel = (viewEntity_t *)R_ClearedFrameAlloc( sizeof( *vModel ) );
vModel->entityDef = def;
// the scissorRect will be expanded as the model bounds is accepted into visible portal chains
vModel->scissorRect.Clear();
// copy the model and weapon depth hack for back-end use
vModel->modelDepthHack = def->parms.modelDepthHack;
vModel->weaponDepthHack = def->parms.weaponDepthHack;
R_AxisToModelMatrix( def->parms.axis, def->parms.origin, vModel->modelMatrix );
// we may not have a viewDef if we are just creating shadows at entity creation time
if ( tr.viewDef ) {
myGlMultMatrix( vModel->modelMatrix, tr.viewDef->worldSpace.modelViewMatrix, vModel->modelViewMatrix );
vModel->next = tr.viewDef->viewEntitys;
tr.viewDef->viewEntitys = vModel;
}
def->viewEntity = vModel;
return vModel;
}
/*
====================
R_TestPointInViewLight
====================
*/
static const float INSIDE_LIGHT_FRUSTUM_SLOP = 32;
// this needs to be greater than the dist from origin to corner of near clip plane
static bool R_TestPointInViewLight( const idVec3 &org, const idRenderLightLocal *light ) {
int i;
idVec3 local;
for ( i = 0 ; i < 6 ; i++ ) {
float d = light->frustum[i].Distance( org );
if ( d > INSIDE_LIGHT_FRUSTUM_SLOP ) {
return false;
}
}
return true;
}
/*
===================
R_PointInFrustum
Assumes positive sides face outward
===================
*/
static bool R_PointInFrustum( idVec3 &p, idPlane *planes, int numPlanes ) {
for ( int i = 0 ; i < numPlanes ; i++ ) {
float d = planes[i].Distance( p );
if ( d > 0 ) {
return false;
}
}
return true;
}
/*
=============
R_SetLightDefViewLight
If the lightDef isn't already on the viewLight list, create
a viewLight and add it to the list with an empty scissor rect.
=============
*/
viewLight_t *R_SetLightDefViewLight( idRenderLightLocal *light ) {
viewLight_t *vLight;
if ( light->viewCount == tr.viewCount ) {
return light->viewLight;
}
light->viewCount = tr.viewCount;
// add to the view light chain
vLight = (viewLight_t *)R_ClearedFrameAlloc( sizeof( *vLight ) );
vLight->lightDef = light;
// the scissorRect will be expanded as the light bounds is accepted into visible portal chains
vLight->scissorRect.Clear();
// calculate the shadow cap optimization states
vLight->viewInsideLight = R_TestPointInViewLight( tr.viewDef->renderView.vieworg, light );
if ( !vLight->viewInsideLight ) {
vLight->viewSeesShadowPlaneBits = 0;
for ( int i = 0 ; i < light->numShadowFrustums ; i++ ) {
float d = light->shadowFrustums[i].planes[5].Distance( tr.viewDef->renderView.vieworg );
if ( d < INSIDE_LIGHT_FRUSTUM_SLOP ) {
vLight->viewSeesShadowPlaneBits|= 1 << i;
}
}
} else {
// this should not be referenced in this case
vLight->viewSeesShadowPlaneBits = 63;
}
// see if the light center is in view, which will allow us to cull invisible shadows
vLight->viewSeesGlobalLightOrigin = R_PointInFrustum( light->globalLightOrigin, tr.viewDef->frustum, 4 );
// copy data used by backend
vLight->globalLightOrigin = light->globalLightOrigin;
vLight->lightProject[0] = light->lightProject[0];
vLight->lightProject[1] = light->lightProject[1];
vLight->lightProject[2] = light->lightProject[2];
vLight->lightProject[3] = light->lightProject[3];
vLight->fogPlane = light->frustum[5];
vLight->frustumTris = light->frustumTris;
vLight->falloffImage = light->falloffImage;
vLight->lightShader = light->lightShader;
vLight->shaderRegisters = NULL; // allocated and evaluated in R_AddLightSurfaces
// link the view light
vLight->next = tr.viewDef->viewLights;
tr.viewDef->viewLights = vLight;
light->viewLight = vLight;
return vLight;
}
/*
=================
idRenderWorldLocal::CreateLightDefInteractions
When a lightDef is determined to effect the view (contact the frustum and non-0 light), it will check to
make sure that it has interactions for all the entityDefs that it might possibly contact.
This does not guarantee that all possible interactions for this light are generated, only that
the ones that may effect the current view are generated. so it does need to be called every view.
This does not cause entityDefs to create dynamic models, all work is done on the referenceBounds.
All entities that have non-empty interactions with viewLights will
have viewEntities made for them and be put on the viewEntity list,
even if their surfaces aren't visible, because they may need to cast shadows.
Interactions are usually removed when a entityDef or lightDef is modified, unless the change
is known to not effect them, so there is no danger of getting a stale interaction, we just need to
check that needed ones are created.
An interaction can be at several levels:
Don't interact (but share an area) (numSurfaces = 0)
Entity reference bounds touches light frustum, but surfaces haven't been generated (numSurfaces = -1)
Shadow surfaces have been generated, but light surfaces have not. The shadow surface may still be empty due to bounds being conservative.
Both shadow and light surfaces have been generated. Either or both surfaces may still be empty due to conservative bounds.
=================
*/
void idRenderWorldLocal::CreateLightDefInteractions( idRenderLightLocal *ldef ) {
areaReference_t *eref;
areaReference_t *lref;
idRenderEntityLocal *edef;
portalArea_t *area;
idInteraction *inter;
for ( lref = ldef->references ; lref ; lref = lref->ownerNext ) {
area = lref->area;
// check all the models in this area
for ( eref = area->entityRefs.areaNext ; eref != &area->entityRefs ; eref = eref->areaNext ) {
edef = eref->entity;
// if the entity doesn't have any light-interacting surfaces, we could skip this,
// but we don't want to instantiate dynamic models yet, so we can't check that on
// most things
// if the entity isn't viewed
if ( tr.viewDef && edef->viewCount != tr.viewCount ) {
// if the light doesn't cast shadows, skip
if ( !ldef->lightShader->LightCastsShadows() ) {
continue;
}
// if we are suppressing its shadow in this view, skip
if ( !r_skipSuppress.GetBool() ) {
if ( edef->parms.suppressShadowInViewID && edef->parms.suppressShadowInViewID == tr.viewDef->renderView.viewID ) {
continue;
}
if ( edef->parms.suppressShadowInLightID && edef->parms.suppressShadowInLightID == ldef->parms.lightId ) {
continue;
}
}
}
// some big outdoor meshes are flagged to not create any dynamic interactions
// when the level designer knows that nearby moving lights shouldn't actually hit them
if ( edef->parms.noDynamicInteractions && edef->world->generateAllInteractionsCalled ) {
continue;
}
// if any of the edef's interaction match this light, we don't
// need to consider it.
if ( r_useInteractionTable.GetBool() && this->interactionTable ) {
// allocating these tables may take several megs on big maps, but it saves 3% to 5% of
// the CPU time. The table is updated at interaction::AllocAndLink() and interaction::UnlinkAndFree()
int index = ldef->index * this->interactionTableWidth + edef->index;
inter = this->interactionTable[ index ];
if ( inter ) {
// if this entity wasn't in view already, the scissor rect will be empty,
// so it will only be used for shadow casting
if ( !inter->IsEmpty() ) {
R_SetEntityDefViewEntity( edef );
}
continue;
}
} else {
// scan the doubly linked lists, which may have several dozen entries
// we could check either model refs or light refs for matches, but it is
// assumed that there will be less lights in an area than models
// so the entity chains should be somewhat shorter (they tend to be fairly close).
for ( inter = edef->firstInteraction; inter != NULL; inter = inter->entityNext ) {
if ( inter->lightDef == ldef ) {
break;
}
}
// if we already have an interaction, we don't need to do anything
if ( inter != NULL ) {
// if this entity wasn't in view already, the scissor rect will be empty,
// so it will only be used for shadow casting
if ( !inter->IsEmpty() ) {
R_SetEntityDefViewEntity( edef );
}
continue;
}
}
//
// create a new interaction, but don't do any work other than bbox to frustum culling
//
idInteraction *inter = idInteraction::AllocAndLink( edef, ldef );
// do a check of the entity reference bounds against the light frustum,
// trying to avoid creating a viewEntity if it hasn't been already
float modelMatrix[16];
float *m;
if ( edef->viewCount == tr.viewCount ) {
m = edef->viewEntity->modelMatrix;
} else {
R_AxisToModelMatrix( edef->parms.axis, edef->parms.origin, modelMatrix );
m = modelMatrix;
}
if ( R_CullLocalBox( edef->referenceBounds, m, 6, ldef->frustum ) ) {
inter->MakeEmpty();
continue;
}
// we will do a more precise per-surface check when we are checking the entity
// if this entity wasn't in view already, the scissor rect will be empty,
// so it will only be used for shadow casting
R_SetEntityDefViewEntity( edef );
}
}
}
//===============================================================================================================
/*
=================
R_LinkLightSurf
=================
*/
void R_LinkLightSurf( const drawSurf_t **link, const srfTriangles_t *tri, const viewEntity_t *space,
const idRenderLightLocal *light, const idMaterial *shader, const idScreenRect &scissor, bool viewInsideShadow ) {
drawSurf_t *drawSurf;
if ( !space ) {
space = &tr.viewDef->worldSpace;
}
drawSurf = (drawSurf_t *)R_FrameAlloc( sizeof( *drawSurf ) );
drawSurf->geo = tri;
drawSurf->space = space;
drawSurf->material = shader;
drawSurf->scissorRect = scissor;
drawSurf->dsFlags = 0;
if ( viewInsideShadow ) {
drawSurf->dsFlags |= DSF_VIEW_INSIDE_SHADOW;
}
/*
if ( !shader ) {
// shadows won't have a shader
drawSurf->shaderRegisters = NULL;
} else {
// process the shader expressions for conditionals / color / texcoords
const float *constRegs = shader->ConstantRegisters();
if ( constRegs ) {
// this shader has only constants for parameters
drawSurf->shaderRegisters = constRegs;
} else {
// FIXME: share with the ambient surface?
float *regs = (float *)R_FrameAlloc( shader->GetNumRegisters() * sizeof( float ) );
drawSurf->shaderRegisters = regs;
shader->EvaluateRegisters( regs, space->entityDef->parms.shaderParms, tr.viewDef, space->entityDef->parms.referenceSound );
}
// calculate the specular coordinates if we aren't using vertex programs
if ( !tr.backEndRendererHasVertexPrograms && !r_skipSpecular.GetBool() ) {
R_SpecularTexGen( drawSurf, light->globalLightOrigin, tr.viewDef->renderView.vieworg );
// if we failed to allocate space for the specular calculations, drop the surface
if ( !drawSurf->dynamicTexCoords ) {
return;
}
}
}
*/
// actually link it in
drawSurf->nextOnLight = *link;
*link = drawSurf;
}
/*
======================
R_ClippedLightScissorRectangle
======================
*/
idScreenRect R_ClippedLightScissorRectangle( viewLight_t *vLight ) {
int i, j;
const idRenderLightLocal *light = vLight->lightDef;
idScreenRect r;
idFixedWinding w;
r.Clear();
for ( i = 0 ; i < 6 ; i++ ) {
const idWinding *ow = light->frustumWindings[i];
// projected lights may have one of the frustums degenerated
if ( !ow ) {
continue;
}
// the light frustum planes face out from the light,
// so the planes that have the view origin on the negative
// side will be the "back" faces of the light, which must have
// some fragment inside the portalStack to be visible
if ( light->frustum[i].Distance( tr.viewDef->renderView.vieworg ) >= 0 ) {
continue;
}
w = *ow;
// now check the winding against each of the frustum planes
for ( j = 0; j < 5; j++ ) {
if ( !w.ClipInPlace( -tr.viewDef->frustum[j] ) ) {
break;
}
}
// project these points to the screen and add to bounds
for ( j = 0; j < w.GetNumPoints(); j++ ) {
idPlane eye, clip;
idVec3 ndc;
R_TransformModelToClip( w[j].ToVec3(), tr.viewDef->worldSpace.modelViewMatrix, tr.viewDef->projectionMatrix, eye, clip );
if ( clip[3] <= 0.01f ) {
clip[3] = 0.01f;
}
R_TransformClipToDevice( clip, tr.viewDef, ndc );
float windowX = 0.5f * ( 1.0f + ndc[0] ) * ( tr.viewDef->viewport.x2 - tr.viewDef->viewport.x1 );
float windowY = 0.5f * ( 1.0f + ndc[1] ) * ( tr.viewDef->viewport.y2 - tr.viewDef->viewport.y1 );
if ( windowX > tr.viewDef->scissor.x2 ) {
windowX = tr.viewDef->scissor.x2;
} else if ( windowX < tr.viewDef->scissor.x1 ) {
windowX = tr.viewDef->scissor.x1;
}
if ( windowY > tr.viewDef->scissor.y2 ) {
windowY = tr.viewDef->scissor.y2;
} else if ( windowY < tr.viewDef->scissor.y1 ) {
windowY = tr.viewDef->scissor.y1;
}
r.AddPoint( windowX, windowY );
}
}
// add the fudge boundary
r.Expand();
return r;
}
/*
==================
R_CalcLightScissorRectangle
The light screen bounds will be used to crop the scissor rect during
stencil clears and interaction drawing
==================
*/
int c_clippedLight, c_unclippedLight;
idScreenRect R_CalcLightScissorRectangle( viewLight_t *vLight ) {
idScreenRect r;
srfTriangles_t *tri;
idPlane eye, clip;
idVec3 ndc;
if ( vLight->lightDef->parms.pointLight ) {
idBounds bounds;
idRenderLightLocal *lightDef = vLight->lightDef;
tr.viewDef->viewFrustum.ProjectionBounds( idBox( lightDef->parms.origin, lightDef->parms.lightRadius, lightDef->parms.axis ), bounds );
return R_ScreenRectFromViewFrustumBounds( bounds );
}
if ( r_useClippedLightScissors.GetInteger() == 2 ) {
return R_ClippedLightScissorRectangle( vLight );
}
r.Clear();
tri = vLight->lightDef->frustumTris;
for ( int i = 0 ; i < tri->numVerts ; i++ ) {
R_TransformModelToClip( tri->verts[i].xyz, tr.viewDef->worldSpace.modelViewMatrix,
tr.viewDef->projectionMatrix, eye, clip );
// if it is near clipped, clip the winding polygons to the view frustum
if ( clip[3] <= 1 ) {
c_clippedLight++;
if ( r_useClippedLightScissors.GetInteger() ) {
return R_ClippedLightScissorRectangle( vLight );
} else {
r.x1 = r.y1 = 0;
r.x2 = ( tr.viewDef->viewport.x2 - tr.viewDef->viewport.x1 ) - 1;
r.y2 = ( tr.viewDef->viewport.y2 - tr.viewDef->viewport.y1 ) - 1;
return r;
}
}
R_TransformClipToDevice( clip, tr.viewDef, ndc );
float windowX = 0.5f * ( 1.0f + ndc[0] ) * ( tr.viewDef->viewport.x2 - tr.viewDef->viewport.x1 );
float windowY = 0.5f * ( 1.0f + ndc[1] ) * ( tr.viewDef->viewport.y2 - tr.viewDef->viewport.y1 );
if ( windowX > tr.viewDef->scissor.x2 ) {
windowX = tr.viewDef->scissor.x2;
} else if ( windowX < tr.viewDef->scissor.x1 ) {
windowX = tr.viewDef->scissor.x1;
}
if ( windowY > tr.viewDef->scissor.y2 ) {
windowY = tr.viewDef->scissor.y2;
} else if ( windowY < tr.viewDef->scissor.y1 ) {
windowY = tr.viewDef->scissor.y1;
}
r.AddPoint( windowX, windowY );
}
// add the fudge boundary
r.Expand();
c_unclippedLight++;
return r;
}
/*
=================
R_AddLightSurfaces
Calc the light shader values, removing any light from the viewLight list
if it is determined to not have any visible effect due to being flashed off or turned off.
Adds entities to the viewEntity list if they are needed for shadow casting.
Add any precomputed shadow volumes.
Removes lights from the viewLights list if they are completely
turned off, or completely off screen.
Create any new interactions needed between the viewLights
and the viewEntitys due to game movement
=================
*/
void R_AddLightSurfaces( void ) {
viewLight_t *vLight;
idRenderLightLocal *light;
viewLight_t **ptr;
// go through each visible light, possibly removing some from the list
ptr = &tr.viewDef->viewLights;
while ( *ptr ) {
vLight = *ptr;
light = vLight->lightDef;
const idMaterial *lightShader = light->lightShader;
if ( !lightShader ) {
common->Error( "R_AddLightSurfaces: NULL lightShader" );
}
// see if we are suppressing the light in this view
if ( !r_skipSuppress.GetBool() ) {
if ( light->parms.suppressLightInViewID
&& light->parms.suppressLightInViewID == tr.viewDef->renderView.viewID ) {
*ptr = vLight->next;
light->viewCount = -1;
continue;
}
if ( light->parms.allowLightInViewID
&& light->parms.allowLightInViewID != tr.viewDef->renderView.viewID ) {
*ptr = vLight->next;
light->viewCount = -1;
continue;
}
}
// evaluate the light shader registers
float *lightRegs =(float *)R_FrameAlloc( lightShader->GetNumRegisters() * sizeof( float ) );
vLight->shaderRegisters = lightRegs;
lightShader->EvaluateRegisters( lightRegs, light->parms.shaderParms, tr.viewDef, light->parms.referenceSound );
// if this is a purely additive light and no stage in the light shader evaluates
// to a positive light value, we can completely skip the light
if ( !lightShader->IsFogLight() && !lightShader->IsBlendLight() ) {
int lightStageNum;
for ( lightStageNum = 0 ; lightStageNum < lightShader->GetNumStages() ; lightStageNum++ ) {
const shaderStage_t *lightStage = lightShader->GetStage( lightStageNum );
// ignore stages that fail the condition
if ( !lightRegs[ lightStage->conditionRegister ] ) {
continue;
}
const int *registers = lightStage->color.registers;
// snap tiny values to zero to avoid lights showing up with the wrong color
if ( lightRegs[ registers[0] ] < 0.001f ) {
lightRegs[ registers[0] ] = 0.0f;
}
if ( lightRegs[ registers[1] ] < 0.001f ) {
lightRegs[ registers[1] ] = 0.0f;
}
if ( lightRegs[ registers[2] ] < 0.001f ) {
lightRegs[ registers[2] ] = 0.0f;
}
// FIXME: when using the following values the light shows up bright red when using nvidia drivers/hardware
// this seems to have been fixed ?
//lightRegs[ registers[0] ] = 1.5143074e-005f;
//lightRegs[ registers[1] ] = 1.5483369e-005f;
//lightRegs[ registers[2] ] = 1.7014690e-005f;
if ( lightRegs[ registers[0] ] > 0.0f ||
lightRegs[ registers[1] ] > 0.0f ||
lightRegs[ registers[2] ] > 0.0f ) {
break;
}
}
if ( lightStageNum == lightShader->GetNumStages() ) {
// we went through all the stages and didn't find one that adds anything
// remove the light from the viewLights list, and change its frame marker
// so interaction generation doesn't think the light is visible and
// create a shadow for it
*ptr = vLight->next;
light->viewCount = -1;
continue;
}
}
if ( r_useLightScissors.GetBool() ) {
// calculate the screen area covered by the light frustum
// which will be used to crop the stencil cull
idScreenRect scissorRect = R_CalcLightScissorRectangle( vLight );
// intersect with the portal crossing scissor rectangle
vLight->scissorRect.Intersect( scissorRect );
if ( r_showLightScissors.GetBool() ) {
R_ShowColoredScreenRect( vLight->scissorRect, light->index );
}
}
#if 0
// this never happens, because CullLightByPortals() does a more precise job
if ( vLight->scissorRect.IsEmpty() ) {
// this light doesn't touch anything on screen, so remove it from the list
*ptr = vLight->next;
continue;
}
#endif
// this one stays on the list
ptr = &vLight->next;
// if we are doing a soft-shadow novelty test, regenerate the light with
// a random offset every time
if ( r_lightSourceRadius.GetFloat() != 0.0f ) {
for ( int i = 0 ; i < 3 ; i++ ) {
light->globalLightOrigin[i] += r_lightSourceRadius.GetFloat() * ( -1 + 2 * (rand()&0xfff)/(float)0xfff );
}
}
// create interactions with all entities the light may touch, and add viewEntities
// that may cast shadows, even if they aren't directly visible. Any real work
// will be deferred until we walk through the viewEntities
tr.viewDef->renderWorld->CreateLightDefInteractions( light );
tr.pc.c_viewLights++;
// fog lights will need to draw the light frustum triangles, so make sure they
// are in the vertex cache
if ( lightShader->IsFogLight() ) {
if ( !light->frustumTris->ambientCache ) {
if ( !R_CreateAmbientCache( light->frustumTris, false ) ) {
// skip if we are out of vertex memory
continue;
}
}
// touch the surface so it won't get purged
vertexCache.Touch( light->frustumTris->ambientCache );
}
// jmarshall
R_CalculateShadowsForLight( light, vLight );
// jmarshall end
#if 0
if ( light->parms.prelightModel && r_useOptimizedShadows.GetBool() ) {
if ( !light->parms.prelightModel->NumSurfaces() ) {
common->Error( "no surfs in prelight model '%s'", light->parms.prelightModel->Name() );
}
srfTriangles_t *tri = light->parms.prelightModel->Surface( 0 )->geometry;
if ( !tri->shadowVertexes ) {
common->Error( "R_AddLightSurfaces: prelight model '%s' without shadowVertexes", light->parms.prelightModel->Name() );
}
// these shadows will all have valid bounds, and can be culled normally
if ( r_useShadowCulling.GetBool() ) {
if ( R_CullLocalBox( tri->bounds, tr.viewDef->worldSpace.modelMatrix, 5, tr.viewDef->frustum ) ) {
continue;
}
}
// if we have been purged, re-upload the shadowVertexes
if ( !tri->shadowCache ) {
R_CreatePrivateShadowCache( tri );
if ( !tri->shadowCache ) {
continue;
}
}
// touch the shadow surface so it won't get purged
vertexCache.Touch( tri->shadowCache );
if ( !tri->indexCache && r_useIndexBuffers.GetBool() ) {
vertexCache.Alloc( tri->indexes, tri->numIndexes * sizeof( tri->indexes[0] ), &tri->indexCache, true );
}
if ( tri->indexCache ) {
vertexCache.Touch( tri->indexCache );
}
R_LinkLightSurf( &vLight->globalShadows, tri, NULL, light, NULL, vLight->scissorRect, true /* FIXME? */ );
}
#endif
}
}
//===============================================================================================================
/*
==================
R_IssueEntityDefCallback
==================
*/
bool R_IssueEntityDefCallback( idRenderEntityLocal *def ) {
bool update;
idBounds oldBounds;
if ( r_checkBounds.GetBool() ) {
oldBounds = def->referenceBounds;
}
def->archived = false; // will need to be written to the demo file
tr.pc.c_entityDefCallbacks++;
if ( tr.viewDef ) {
update = def->parms.callback( &def->parms, &tr.viewDef->renderView );
} else {
update = def->parms.callback( &def->parms, NULL );
}
if ( !def->parms.hModel ) {
common->Error( "R_IssueEntityDefCallback: dynamic entity callback didn't set model" );
}
if ( r_checkBounds.GetBool() ) {
if ( oldBounds[0][0] > def->referenceBounds[0][0] + CHECK_BOUNDS_EPSILON ||
oldBounds[0][1] > def->referenceBounds[0][1] + CHECK_BOUNDS_EPSILON ||
oldBounds[0][2] > def->referenceBounds[0][2] + CHECK_BOUNDS_EPSILON ||
oldBounds[1][0] < def->referenceBounds[1][0] - CHECK_BOUNDS_EPSILON ||
oldBounds[1][1] < def->referenceBounds[1][1] - CHECK_BOUNDS_EPSILON ||
oldBounds[1][2] < def->referenceBounds[1][2] - CHECK_BOUNDS_EPSILON ) {
common->Printf( "entity %i callback extended reference bounds\n", def->index );
}
}
return update;
}
/*
===================
R_EntityDefDynamicModel
Issues a deferred entity callback if necessary.
If the model isn't dynamic, it returns the original.
Returns the cached dynamic model if present, otherwise creates
it and any necessary overlays
===================
*/
idRenderModel *R_EntityDefDynamicModel( idRenderEntityLocal *def ) {
bool callbackUpdate;
// allow deferred entities to construct themselves
if ( def->parms.callback ) {
callbackUpdate = R_IssueEntityDefCallback( def );
} else {
callbackUpdate = false;
}
idRenderModel *model = def->parms.hModel;
if ( !model ) {
common->Error( "R_EntityDefDynamicModel: NULL model" );
}
if ( model->IsDynamicModel() == DM_STATIC ) {
def->dynamicModel = NULL;
def->dynamicModelFrameCount = 0;
return model;
}
// continously animating models (particle systems, etc) will have their snapshot updated every single view
if ( callbackUpdate || ( model->IsDynamicModel() == DM_CONTINUOUS && def->dynamicModelFrameCount != tr.frameCount ) ) {
R_ClearEntityDefDynamicModel( def );
}
// if we don't have a snapshot of the dynamic model, generate it now
if ( !def->dynamicModel ) {
// instantiate the snapshot of the dynamic model, possibly reusing memory from the cached snapshot
def->cachedDynamicModel = model->InstantiateDynamicModel( &def->parms, tr.viewDef, def->cachedDynamicModel );
if ( def->cachedDynamicModel ) {
// add any overlays to the snapshot of the dynamic model
if ( def->overlay && !r_skipOverlays.GetBool() ) {
def->overlay->AddOverlaySurfacesToModel( def->cachedDynamicModel );
} else {
idRenderModelOverlay::RemoveOverlaySurfacesFromModel( def->cachedDynamicModel );
}
if ( r_checkBounds.GetBool() ) {
idBounds b = def->cachedDynamicModel->Bounds();
if ( b[0][0] < def->referenceBounds[0][0] - CHECK_BOUNDS_EPSILON ||
b[0][1] < def->referenceBounds[0][1] - CHECK_BOUNDS_EPSILON ||
b[0][2] < def->referenceBounds[0][2] - CHECK_BOUNDS_EPSILON ||
b[1][0] > def->referenceBounds[1][0] + CHECK_BOUNDS_EPSILON ||
b[1][1] > def->referenceBounds[1][1] + CHECK_BOUNDS_EPSILON ||
b[1][2] > def->referenceBounds[1][2] + CHECK_BOUNDS_EPSILON ) {
common->Printf( "entity %i dynamic model exceeded reference bounds\n", def->index );
}
}
}
def->dynamicModel = def->cachedDynamicModel;
def->dynamicModelFrameCount = tr.frameCount;
}
// set model depth hack value
if ( def->dynamicModel && model->DepthHack() != 0.0f && tr.viewDef ) {
idPlane eye, clip;
idVec3 ndc;
R_TransformModelToClip( def->parms.origin, tr.viewDef->worldSpace.modelViewMatrix, tr.viewDef->projectionMatrix, eye, clip );
R_TransformClipToDevice( clip, tr.viewDef, ndc );
def->parms.modelDepthHack = model->DepthHack() * ( 1.0f - ndc.z );
}
// FIXME: if any of the surfaces have deforms, create a frame-temporary model with references to the
// undeformed surfaces. This would allow deforms to be light interacting.
return def->dynamicModel;
}
/*
=================
R_AddDrawSurf
=================
*/
void R_AddDrawSurf( const srfTriangles_t *tri, const viewEntity_t *space, const renderEntity_t *renderEntity,
const idMaterial *shader, const idScreenRect &scissor ) {
drawSurf_t *drawSurf;
const float *shaderParms;
static float refRegs[MAX_EXPRESSION_REGISTERS]; // don't put on stack, or VC++ will do a page touch
float generatedShaderParms[MAX_ENTITY_SHADER_PARMS];
drawSurf = (drawSurf_t *)R_FrameAlloc( sizeof( *drawSurf ) );
drawSurf->geo = tri;
drawSurf->space = space;
drawSurf->material = shader;
drawSurf->scissorRect = scissor;
drawSurf->sort = shader->GetSort() + tr.sortOffset;
drawSurf->dsFlags = 0;
// bumping this offset each time causes surfaces with equal sort orders to still
// deterministically draw in the order they are added
tr.sortOffset += 0.000001f;
// if it doesn't fit, resize the list
if ( tr.viewDef->numDrawSurfs == tr.viewDef->maxDrawSurfs ) {
drawSurf_t **old = tr.viewDef->drawSurfs;
int count;
if ( tr.viewDef->maxDrawSurfs == 0 ) {
tr.viewDef->maxDrawSurfs = INITIAL_DRAWSURFS;
count = 0;
} else {
count = tr.viewDef->maxDrawSurfs * sizeof( tr.viewDef->drawSurfs[0] );
tr.viewDef->maxDrawSurfs *= 2;
}
tr.viewDef->drawSurfs = (drawSurf_t **)R_FrameAlloc( tr.viewDef->maxDrawSurfs * sizeof( tr.viewDef->drawSurfs[0] ) );
memcpy( tr.viewDef->drawSurfs, old, count );
}
tr.viewDef->drawSurfs[tr.viewDef->numDrawSurfs] = drawSurf;
tr.viewDef->numDrawSurfs++;
// process the shader expressions for conditionals / color / texcoords
const float *constRegs = shader->ConstantRegisters();
if ( constRegs ) {
// shader only uses constant values
drawSurf->shaderRegisters = constRegs;
} else {
float *regs = (float *)R_FrameAlloc( shader->GetNumRegisters() * sizeof( float ) );
drawSurf->shaderRegisters = regs;
// a reference shader will take the calculated stage color value from another shader
// and use that for the parm0-parm3 of the current shader, which allows a stage of
// a light model and light flares to pick up different flashing tables from
// different light shaders
if ( renderEntity->referenceShader ) {
// evaluate the reference shader to find our shader parms
const shaderStage_t *pStage;
renderEntity->referenceShader->EvaluateRegisters( refRegs, renderEntity->shaderParms, tr.viewDef, renderEntity->referenceSound );
pStage = renderEntity->referenceShader->GetStage(0);
memcpy( generatedShaderParms, renderEntity->shaderParms, sizeof( generatedShaderParms ) );
generatedShaderParms[0] = refRegs[ pStage->color.registers[0] ];
generatedShaderParms[1] = refRegs[ pStage->color.registers[1] ];
generatedShaderParms[2] = refRegs[ pStage->color.registers[2] ];
shaderParms = generatedShaderParms;
} else {
// evaluate with the entityDef's shader parms
shaderParms = renderEntity->shaderParms;
}
float oldFloatTime;
int oldTime;
if ( space->entityDef && space->entityDef->parms.timeGroup ) {
oldFloatTime = tr.viewDef->floatTime;
oldTime = tr.viewDef->renderView.time;
tr.viewDef->floatTime = game->GetTimeGroupTime( space->entityDef->parms.timeGroup ) * 0.001;
tr.viewDef->renderView.time = game->GetTimeGroupTime( space->entityDef->parms.timeGroup );
}
shader->EvaluateRegisters( regs, shaderParms, tr.viewDef, renderEntity->referenceSound );
if ( space->entityDef && space->entityDef->parms.timeGroup ) {
tr.viewDef->floatTime = oldFloatTime;
tr.viewDef->renderView.time = oldTime;
}
}
// check for deformations
R_DeformDrawSurf( drawSurf );
// skybox surfaces need a dynamic texgen
switch( shader->Texgen() ) {
case TG_SKYBOX_CUBE:
R_SkyboxTexGen( drawSurf, tr.viewDef->renderView.vieworg );
break;
case TG_WOBBLESKY_CUBE:
R_WobbleskyTexGen( drawSurf, tr.viewDef->renderView.vieworg );
break;
}
// check for gui surfaces
idUserInterface *gui = NULL;
if ( !space->entityDef ) {
gui = shader->GlobalGui();
} else {
int guiNum = shader->GetEntityGui() - 1;
if ( guiNum >= 0 && guiNum < MAX_RENDERENTITY_GUI ) {
gui = renderEntity->gui[ guiNum ];
}
if ( gui == NULL ) {
gui = shader->GlobalGui();
}
}
if ( gui ) {
// force guis on the fast time
float oldFloatTime;
int oldTime;
oldFloatTime = tr.viewDef->floatTime;
oldTime = tr.viewDef->renderView.time;
tr.viewDef->floatTime = game->GetTimeGroupTime( 1 ) * 0.001;
tr.viewDef->renderView.time = game->GetTimeGroupTime( 1 );
idBounds ndcBounds;
// jmarshall
//if ( !R_PreciseCullSurface( drawSurf, ndcBounds ) ) {
// did we ever use this to forward an entity color to a gui that didn't set color?
// memcpy( tr.guiShaderParms, shaderParms, sizeof( tr.guiShaderParms ) );
R_RenderGuiSurf( gui, drawSurf );
//}
// jmarshall end
tr.viewDef->floatTime = oldFloatTime;
tr.viewDef->renderView.time = oldTime;
}
// we can't add subviews at this point, because that would
// increment tr.viewCount, messing up the rest of the surface
// adds for this view
}
/*
===============
R_AddAmbientDrawsurfs
Adds surfaces for the given viewEntity
Walks through the viewEntitys list and creates drawSurf_t for each surface of
each viewEntity that has a non-empty scissorRect
===============
*/
static void R_AddAmbientDrawsurfs( viewEntity_t *vEntity ) {
int i, total;
idRenderEntityLocal *def;
srfTriangles_t *tri;
idRenderModel *model;
const idMaterial *shader;
def = vEntity->entityDef;
if ( def->dynamicModel ) {
model = def->dynamicModel;
} else {
model = def->parms.hModel;
}
// add all the surfaces
total = model->NumSurfaces();
for ( i = 0 ; i < total ; i++ ) {
const modelSurface_t *surf = model->Surface( i );
// for debugging, only show a single surface at a time
if ( r_singleSurface.GetInteger() >= 0 && i != r_singleSurface.GetInteger() ) {
continue;
}
tri = surf->geometry;
if ( !tri ) {
continue;
}
if ( !tri->numIndexes ) {
continue;
}
shader = surf->shader;
shader = R_RemapShaderBySkin( shader, def->parms.customSkin, def->parms.customShader );
// jmarshall
/*
bmVirtualTextureFile *vt = tr.viewDef->renderWorld->vt;
if(vt != NULL && tri->vTexTileNum > 0)
{
virtualTextureManager->GetWorldPage()->BlitTileToPage( vt, tri->vTexTileNum );
}
*/
// jmarshall
R_GlobalShaderOverride( &shader );
if ( !shader ) {
continue;
}
if ( !shader->IsDrawn() ) {
continue;
}
// debugging tool to make sure we are have the correct pre-calculated bounds
if ( r_checkBounds.GetBool() ) {
int j, k;
for ( j = 0 ; j < tri->numVerts ; j++ ) {
for ( k = 0 ; k < 3 ; k++ ) {
if ( tri->verts[j].xyz[k] > tri->bounds[1][k] + CHECK_BOUNDS_EPSILON
|| tri->verts[j].xyz[k] < tri->bounds[0][k] - CHECK_BOUNDS_EPSILON ) {
common->Printf( "bad tri->bounds on %s:%s\n", def->parms.hModel->Name(), shader->GetName() );
break;
}
if ( tri->verts[j].xyz[k] > def->referenceBounds[1][k] + CHECK_BOUNDS_EPSILON
|| tri->verts[j].xyz[k] < def->referenceBounds[0][k] - CHECK_BOUNDS_EPSILON ) {
common->Printf( "bad referenceBounds on %s:%s\n", def->parms.hModel->Name(), shader->GetName() );
break;
}
}
if ( k != 3 ) {
break;
}
}
}
if ( !R_CullLocalBox( tri->bounds, vEntity->modelMatrix, 5, tr.viewDef->frustum ) ) {
def->visibleCount = tr.viewCount;
// make sure we have an ambient cache
if ( !R_CreateAmbientCache( tri, shader->ReceivesLighting() ) ) {
// don't add anything if the vertex cache was too full to give us an ambient cache
return;
}
// touch it so it won't get purged
vertexCache.Touch( tri->ambientCache );
if ( r_useIndexBuffers.GetBool() && !tri->indexCache ) {
vertexCache.Alloc( tri->indexes, tri->numIndexes * sizeof( tri->indexes[0] ), &tri->indexCache, true );
}
if ( tri->indexCache ) {
vertexCache.Touch( tri->indexCache );
}
// add the surface for drawing
R_AddDrawSurf( tri, vEntity, &vEntity->entityDef->parms, shader, vEntity->scissorRect );
// ambientViewCount is used to allow light interactions to be rejected
// if the ambient surface isn't visible at all
tri->ambientViewCount = tr.viewCount;
}
}
// add the lightweight decal surfaces
for ( idRenderModelDecal *decal = def->decals; decal; decal = decal->Next() ) {
decal->AddDecalDrawSurf( vEntity );
}
}
/*
==================
R_CalcEntityScissorRectangle
==================
*/
idScreenRect R_CalcEntityScissorRectangle( viewEntity_t *vEntity ) {
idBounds bounds;
idRenderEntityLocal *def = vEntity->entityDef;
tr.viewDef->viewFrustum.ProjectionBounds( idBox( def->referenceBounds, def->parms.origin, def->parms.axis ), bounds );
return R_ScreenRectFromViewFrustumBounds( bounds );
}
/*
===================
R_AddModelSurfaces
Here is where dynamic models actually get instantiated, and necessary
interactions get created. This is all done on a sort-by-model basis
to keep source data in cache (most likely L2) as any interactions and
shadows are generated, since dynamic models will typically be lit by
two or more lights.
===================
*/
void R_AddModelSurfaces( void ) {
viewEntity_t *vEntity;
idInteraction *inter, *next;
idRenderModel *model;
// clear the ambient surface list
tr.viewDef->numDrawSurfs = 0;
tr.viewDef->maxDrawSurfs = 0; // will be set to INITIAL_DRAWSURFS on R_AddDrawSurf
// go through each entity that is either visible to the view, or to
// any light that intersects the view (for shadows)
for ( vEntity = tr.viewDef->viewEntitys; vEntity; vEntity = vEntity->next ) {
if ( r_useEntityScissors.GetBool() ) {
// calculate the screen area covered by the entity
idScreenRect scissorRect = R_CalcEntityScissorRectangle( vEntity );
// intersect with the portal crossing scissor rectangle
vEntity->scissorRect.Intersect( scissorRect );
if ( r_showEntityScissors.GetBool() ) {
R_ShowColoredScreenRect( vEntity->scissorRect, vEntity->entityDef->index );
}
}
float oldFloatTime;
int oldTime;
game->SelectTimeGroup( vEntity->entityDef->parms.timeGroup );
if ( vEntity->entityDef->parms.timeGroup ) {
oldFloatTime = tr.viewDef->floatTime;
oldTime = tr.viewDef->renderView.time;
tr.viewDef->floatTime = game->GetTimeGroupTime( vEntity->entityDef->parms.timeGroup ) * 0.001;
tr.viewDef->renderView.time = game->GetTimeGroupTime( vEntity->entityDef->parms.timeGroup );
}
if ( tr.viewDef->isXraySubview && vEntity->entityDef->parms.xrayIndex == 1 ) {
if ( vEntity->entityDef->parms.timeGroup ) {
tr.viewDef->floatTime = oldFloatTime;
tr.viewDef->renderView.time = oldTime;
}
continue;
} else if ( !tr.viewDef->isXraySubview && vEntity->entityDef->parms.xrayIndex == 2 ) {
if ( vEntity->entityDef->parms.timeGroup ) {
tr.viewDef->floatTime = oldFloatTime;
tr.viewDef->renderView.time = oldTime;
}
continue;
}
// add the ambient surface if it has a visible rectangle
if ( !vEntity->scissorRect.IsEmpty() ) {
model = R_EntityDefDynamicModel( vEntity->entityDef );
if ( model == NULL || model->NumSurfaces() <= 0 ) {
if ( vEntity->entityDef->parms.timeGroup ) {
tr.viewDef->floatTime = oldFloatTime;
tr.viewDef->renderView.time = oldTime;
}
continue;
}
R_AddAmbientDrawsurfs( vEntity );
tr.pc.c_visibleViewEntities++;
} else {
tr.pc.c_shadowViewEntities++;
}
//
// for all the entity / light interactions on this entity, add them to the view
//
if ( tr.viewDef->isXraySubview ) {
if ( vEntity->entityDef->parms.xrayIndex == 2 ) {
for ( inter = vEntity->entityDef->firstInteraction; inter != NULL && !inter->IsEmpty(); inter = next ) {
next = inter->entityNext;
if ( inter->lightDef->viewCount != tr.viewCount ) {
continue;
}
inter->AddActiveInteraction();
}
}
} else {
// all empty interactions are at the end of the list so once the
// first is encountered all the remaining interactions are empty
for ( inter = vEntity->entityDef->firstInteraction; inter != NULL && !inter->IsEmpty(); inter = next ) {
next = inter->entityNext;
// skip any lights that aren't currently visible
// this is run after any lights that are turned off have already
// been removed from the viewLights list, and had their viewCount cleared
if ( inter->lightDef->viewCount != tr.viewCount ) {
continue;
}
inter->AddActiveInteraction();
}
}
if ( vEntity->entityDef->parms.timeGroup ) {
tr.viewDef->floatTime = oldFloatTime;
tr.viewDef->renderView.time = oldTime;
}
}
}
/*
=====================
R_RemoveUnecessaryViewLights
=====================
*/
void R_RemoveUnecessaryViewLights( void ) {
viewLight_t *vLight;
// go through each visible light
for ( vLight = tr.viewDef->viewLights ; vLight ; vLight = vLight->next ) {
// if the light didn't have any lit surfaces visible, there is no need to
// draw any of the shadows. We still keep the vLight for debugging
// draws
if ( !vLight->localInteractions && !vLight->globalInteractions && !vLight->translucentInteractions ) {
vLight->localShadows = NULL;
vLight->globalShadows = NULL;
}
}
if ( r_useShadowSurfaceScissor.GetBool() ) {
// shrink the light scissor rect to only intersect the surfaces that will actually be drawn.
// This doesn't seem to actually help, perhaps because the surface scissor
// rects aren't actually the surface, but only the portal clippings.
for ( vLight = tr.viewDef->viewLights ; vLight ; vLight = vLight->next ) {
const drawSurf_t *surf;
idScreenRect surfRect;
if ( !vLight->lightShader->LightCastsShadows() ) {
continue;
}
surfRect.Clear();
for ( surf = vLight->globalInteractions ; surf ; surf = surf->nextOnLight ) {
surfRect.Union( surf->scissorRect );
}
for ( surf = vLight->localShadows ; surf ; surf = surf->nextOnLight ) {
const_cast<drawSurf_t *>(surf)->scissorRect.Intersect( surfRect );
}
for ( surf = vLight->localInteractions ; surf ; surf = surf->nextOnLight ) {
surfRect.Union( surf->scissorRect );
}
for ( surf = vLight->globalShadows ; surf ; surf = surf->nextOnLight ) {
const_cast<drawSurf_t *>(surf)->scissorRect.Intersect( surfRect );
}
for ( surf = vLight->translucentInteractions ; surf ; surf = surf->nextOnLight ) {
surfRect.Union( surf->scissorRect );
}
vLight->scissorRect.Intersect( surfRect );
}
}
}
| [
"justinmarshall20@gmail.com@41434abf-0b58-1467-a858-a10e20c419fa"
] | justinmarshall20@gmail.com@41434abf-0b58-1467-a858-a10e20c419fa |
9add1341f3ae03ff9c2c0136d8f2165beccca440 | 3b9b4049a8e7d38b49e07bb752780b2f1d792851 | /src/ppapi/proxy/file_system_resource.cc | 0be0ea52e5e30504ec32ad121dcca9bdb82e6656 | [
"BSD-3-Clause",
"Apache-2.0",
"LicenseRef-scancode-khronos"
] | permissive | webosce/chromium53 | f8e745e91363586aee9620c609aacf15b3261540 | 9171447efcf0bb393d41d1dc877c7c13c46d8e38 | refs/heads/webosce | 2020-03-26T23:08:14.416858 | 2018-08-23T08:35:17 | 2018-09-20T14:25:18 | 145,513,343 | 0 | 2 | Apache-2.0 | 2019-08-21T22:44:55 | 2018-08-21T05:52:31 | null | UTF-8 | C++ | false | false | 7,898 | cc | // Copyright (c) 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ppapi/proxy/file_system_resource.h"
#include "base/bind.h"
#include "base/stl_util.h"
#include "ipc/ipc_message.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/shared_impl/file_growth.h"
#include "ppapi/shared_impl/tracked_callback.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_file_io_api.h"
using ppapi::thunk::EnterResourceNoLock;
using ppapi::thunk::PPB_FileIO_API;
using ppapi::thunk::PPB_FileSystem_API;
namespace ppapi {
namespace proxy {
FileSystemResource::QuotaRequest::QuotaRequest(
int64_t amount_arg,
const RequestQuotaCallback& callback_arg)
: amount(amount_arg),
callback(callback_arg) {
}
FileSystemResource::QuotaRequest::~QuotaRequest() {
}
FileSystemResource::FileSystemResource(Connection connection,
PP_Instance instance,
PP_FileSystemType type)
: PluginResource(connection, instance),
type_(type),
called_open_(false),
callback_count_(0),
callback_result_(PP_OK),
reserved_quota_(0),
reserving_quota_(false) {
DCHECK(type_ != PP_FILESYSTEMTYPE_INVALID);
SendCreate(RENDERER, PpapiHostMsg_FileSystem_Create(type_));
SendCreate(BROWSER, PpapiHostMsg_FileSystem_Create(type_));
}
FileSystemResource::FileSystemResource(Connection connection,
PP_Instance instance,
int pending_renderer_id,
int pending_browser_id,
PP_FileSystemType type)
: PluginResource(connection, instance),
type_(type),
called_open_(true),
callback_count_(0),
callback_result_(PP_OK),
reserved_quota_(0),
reserving_quota_(false) {
DCHECK(type_ != PP_FILESYSTEMTYPE_INVALID);
AttachToPendingHost(RENDERER, pending_renderer_id);
AttachToPendingHost(BROWSER, pending_browser_id);
}
FileSystemResource::~FileSystemResource() {
}
PPB_FileSystem_API* FileSystemResource::AsPPB_FileSystem_API() {
return this;
}
int32_t FileSystemResource::Open(int64_t expected_size,
scoped_refptr<TrackedCallback> callback) {
DCHECK(type_ != PP_FILESYSTEMTYPE_ISOLATED);
if (called_open_)
return PP_ERROR_FAILED;
called_open_ = true;
Call<PpapiPluginMsg_FileSystem_OpenReply>(RENDERER,
PpapiHostMsg_FileSystem_Open(expected_size),
base::Bind(&FileSystemResource::OpenComplete,
this,
callback));
Call<PpapiPluginMsg_FileSystem_OpenReply>(BROWSER,
PpapiHostMsg_FileSystem_Open(expected_size),
base::Bind(&FileSystemResource::OpenComplete,
this,
callback));
return PP_OK_COMPLETIONPENDING;
}
PP_FileSystemType FileSystemResource::GetType() {
return type_;
}
void FileSystemResource::OpenQuotaFile(PP_Resource file_io) {
DCHECK(!ContainsKey(files_, file_io));
files_.insert(file_io);
}
void FileSystemResource::CloseQuotaFile(PP_Resource file_io) {
DCHECK(ContainsKey(files_, file_io));
files_.erase(file_io);
}
int64_t FileSystemResource::RequestQuota(
int64_t amount,
const RequestQuotaCallback& callback) {
DCHECK(amount >= 0);
if (!reserving_quota_ && reserved_quota_ >= amount) {
reserved_quota_ -= amount;
return amount;
}
// Queue up a pending quota request.
pending_quota_requests_.push(QuotaRequest(amount, callback));
// Reserve more quota if we haven't already.
if (!reserving_quota_)
ReserveQuota(amount);
return PP_OK_COMPLETIONPENDING;
}
int32_t FileSystemResource::InitIsolatedFileSystem(
const std::string& fsid,
PP_IsolatedFileSystemType_Private type,
const base::Callback<void(int32_t)>& callback) {
// This call is mutually exclusive with Open() above, so we can reuse the
// called_open state.
DCHECK(type_ == PP_FILESYSTEMTYPE_ISOLATED);
if (called_open_)
return PP_ERROR_FAILED;
called_open_ = true;
Call<PpapiPluginMsg_FileSystem_InitIsolatedFileSystemReply>(RENDERER,
PpapiHostMsg_FileSystem_InitIsolatedFileSystem(fsid, type),
base::Bind(&FileSystemResource::InitIsolatedFileSystemComplete,
this,
callback));
Call<PpapiPluginMsg_FileSystem_InitIsolatedFileSystemReply>(BROWSER,
PpapiHostMsg_FileSystem_InitIsolatedFileSystem(fsid, type),
base::Bind(&FileSystemResource::InitIsolatedFileSystemComplete,
this,
callback));
return PP_OK_COMPLETIONPENDING;
}
void FileSystemResource::OpenComplete(
scoped_refptr<TrackedCallback> callback,
const ResourceMessageReplyParams& params) {
++callback_count_;
// Prioritize worse result since only one status can be returned.
if (params.result() != PP_OK)
callback_result_ = params.result();
// Received callback from browser and renderer.
if (callback_count_ == 2)
callback->Run(callback_result_);
}
void FileSystemResource::InitIsolatedFileSystemComplete(
const base::Callback<void(int32_t)>& callback,
const ResourceMessageReplyParams& params) {
++callback_count_;
// Prioritize worse result since only one status can be returned.
if (params.result() != PP_OK)
callback_result_ = params.result();
// Received callback from browser and renderer.
if (callback_count_ == 2)
callback.Run(callback_result_);
}
void FileSystemResource::ReserveQuota(int64_t amount) {
DCHECK(!reserving_quota_);
reserving_quota_ = true;
FileGrowthMap file_growths;
for (std::set<PP_Resource>::iterator it = files_.begin();
it != files_.end(); ++it) {
EnterResourceNoLock<PPB_FileIO_API> enter(*it, true);
if (enter.failed()) {
NOTREACHED();
continue;
}
PPB_FileIO_API* file_io_api = enter.object();
file_growths[*it] = FileGrowth(
file_io_api->GetMaxWrittenOffset(),
file_io_api->GetAppendModeWriteAmount());
}
Call<PpapiPluginMsg_FileSystem_ReserveQuotaReply>(BROWSER,
PpapiHostMsg_FileSystem_ReserveQuota(amount, file_growths),
base::Bind(&FileSystemResource::ReserveQuotaComplete,
this));
}
void FileSystemResource::ReserveQuotaComplete(
const ResourceMessageReplyParams& params,
int64_t amount,
const FileSizeMap& file_sizes) {
DCHECK(reserving_quota_);
reserving_quota_ = false;
reserved_quota_ = amount;
for (FileSizeMap::const_iterator it = file_sizes.begin();
it != file_sizes.end(); ++it) {
EnterResourceNoLock<PPB_FileIO_API> enter(it->first, true);
// It is possible that the host has sent an offset for a file that has been
// destroyed in the plugin. Ignore it.
if (enter.failed())
continue;
PPB_FileIO_API* file_io_api = enter.object();
file_io_api->SetMaxWrittenOffset(it->second);
file_io_api->SetAppendModeWriteAmount(0);
}
DCHECK(!pending_quota_requests_.empty());
// If we can't grant the first request after refreshing reserved_quota_, then
// fail all pending quota requests to avoid an infinite refresh/fail loop.
bool fail_all = reserved_quota_ < pending_quota_requests_.front().amount;
while (!pending_quota_requests_.empty()) {
QuotaRequest& request = pending_quota_requests_.front();
if (fail_all) {
request.callback.Run(0);
pending_quota_requests_.pop();
} else if (reserved_quota_ >= request.amount) {
reserved_quota_ -= request.amount;
request.callback.Run(request.amount);
pending_quota_requests_.pop();
} else {
// Refresh the quota reservation for the first pending request that we
// can't satisfy.
ReserveQuota(request.amount);
break;
}
}
}
} // namespace proxy
} // namespace ppapi
| [
"changhyeok.bae@lge.com"
] | changhyeok.bae@lge.com |
a0b7b9fa2ac6c27583b3b48c3d6ba1711ef8197c | 36eb98d2aa4028fcc25e8ed723600cd768ad5dbc | /src/retdec/file.cpp | 78be1a570021d42661a54a90224dc146ae83226d | [
"MIT"
] | permissive | pokey909/retdec-cpp | 3c3ff797795ea539d909772e887bed08f0450269 | fe82bca07f1dbdb0903a81386f1d3fcca30d6d8d | refs/heads/master | 2021-01-15T13:07:19.688668 | 2015-04-10T19:01:51 | 2015-04-10T19:01:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,145 | cpp | ///
/// @file retdec/file.cpp
/// @copyright (c) 2015 by Petr Zemek (s3rvac@gmail.com) and contributors
/// @license MIT, see the @c LICENSE file for more details
/// @brief Implementation of the base class and factory of files.
///
#include "retdec/file.h"
#include "retdec/internal/files/filesystem_file.h"
#include "retdec/internal/files/string_file.h"
#include "retdec/internal/utilities/smart_ptr.h"
using namespace retdec::internal;
namespace retdec {
///
/// Constructs a file.
///
File::File() = default;
///
/// Destructs the file.
///
File::~File() = default;
/// @fn File::getName()
///
/// Returns the name of the file.
///
/// When the file has no name, it returns the empty string.
///
/// @fn File::getContent()
///
/// Returns the content of the file.
///
/// @fn File::saveCopyTo(const std::string &directoryPath)
///
/// Stores a copy of the file into the given directory.
///
/// @fn File::saveCopyTo(const std::string &directoryPath,
/// const std::string &name)
///
/// Stores a copy of the file into the given directory under the given name.
///
///
/// Returns a file containing the given content with the given name.
///
/// @param[in] content Content of the file.
/// @param[in] name Name of the file.
///
std::unique_ptr<File> File::fromContentWithName(const std::string &content,
const std::string &name) {
return make_unique<StringFile>(content, name);
}
///
/// Returns a file from the given path.
///
/// @param[in] path Path to the file.
///
/// The name of the file is obtained automatically.
///
std::unique_ptr<File> File::fromFilesystem(const std::string &path) {
return make_unique<FilesystemFile>(path);
}
///
/// Returns a file from the given path, but with a custom name.
///
/// @param[in] path Path to the file.
/// @param[in] name Name to be used as the file's name.
///
/// Use this function only if you want to choose a different name for the file
/// than the one it already has.
///
std::unique_ptr<File> File::fromFilesystemWithOtherName(
const std::string &path, const std::string &name) {
return make_unique<FilesystemFile>(path, name);
}
} // namespace retdec
| [
"s3rvac@gmail.com"
] | s3rvac@gmail.com |
db7b503e817d1324023d9bed8e958312a9c731e0 | 1587ce1541bfe708a57b1108ffb0ff03d66e6c3a | /hackpack/hackpack.ino | 8de08793d15803deaf8611bd7117e3f87f6304fb | [] | no_license | dubhunter/ArduinoSketches | 51dfbe8fc8f54a335fcdce5552ed9edce872f329 | de85c86c7b68dcd9ecb59f03c7ea41bcfec1f4bc | refs/heads/master | 2021-01-18T23:27:49.158076 | 2016-01-18T00:06:17 | 2016-01-18T00:06:17 | 7,304,626 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,973 | ino | #include <Adafruit_NeoPixel.h>
#include <Adafruit_GFX.h>
#include <Adafruit_NeoMatrix.h>
#include "RGB.h"
#define PIN 1
Adafruit_NeoMatrix matrix = Adafruit_NeoMatrix(8, 8, PIN,
NEO_MATRIX_TOP + NEO_MATRIX_LEFT +
NEO_MATRIX_ROWS + NEO_MATRIX_PROGRESSIVE,
NEO_GRB + NEO_KHZ800);
int value = 0;
void setup() {
Serial.begin(9600);
Serial.println("Started");
matrix.begin();
matrix.setBrightness(40);
matrix.setTextColor( matrix.Color(white.r, white.g, white.b) );
matrix.setTextWrap(false);
}
void loop() {
// value = round(analogRead(1) / 10.24);
// Serial.println(value);
// delay(100);
// crossFade(off, white, 50, 3);
// colorWipe(purple, 15);
drawBoard();
delay(1200);
// crossFade(off, white, 50, 3);
// delay(1000);
//
// colorWipe(purple, 15);
//
// drawLogoRound();
// delay(1200);
//
// colorWipe(orange, 15);
// delay(1200);
// drawLogo();
// delay(1200);
//
// colorWipe(yellow, 15);
// drawPhone();
// delay(1200);
// colorWipe(purple, 15);
// drawSMS();
// delay(1200);
// crossFade(purple, teal, 15, 5);
// matrix.show();
// String phoneNumber = "415-319-XOXO";
// scrollText(phoneNumber);
// delay(500);
//
// crossFade(purple, white, 120, 5);
// crossFade(white, off, 120, 5);
// delay(2000);
}
// Fill the dots one after the other with a color
void colorWipe(RGB color, uint8_t wait) {
for(uint16_t row=0; row < 8; row++) {
for(uint16_t column=0; column < 8; column++) {
matrix.drawPixel(column, row, matrix.Color(color.r, color.g, color.b));
matrix.show();
delay(wait);
}
}
}
// Fade pixel (x, y) from startColor to endColor
void fadePixel(int x, int y, RGB startColor, RGB endColor, int steps, int wait) {
for(int i = 0; i <= steps; i++)
{
int newR = startColor.r + (endColor.r - startColor.r) * i / steps;
int newG = startColor.g + (endColor.g - startColor.g) * i / steps;
int newB = startColor.b + (endColor.b - startColor.b) * i / steps;
matrix.drawPixel(x, y, matrix.Color(newR, newG, newB));
matrix.show();
delay(wait);
}
}
// Crossfade entire screen from startColor to endColor
void crossFade(RGB startColor, RGB endColor, int steps, int wait) {
for(int i = 0; i <= steps; i++)
{
int newR = startColor.r + (endColor.r - startColor.r) * i / steps;
int newG = startColor.g + (endColor.g - startColor.g) * i / steps;
int newB = startColor.b + (endColor.b - startColor.b) * i / steps;
matrix.fillScreen(matrix.Color(newR, newG, newB));
matrix.show();
delay(wait);
}
}
void drawBoard() {
RGB colors[4] = {
off,
white,
blue,
red
};
// This 8x8 array represents the LED matrix pixels.
// A value of 1 means we’ll fade the pixel to white
int matrix[8][8] = {
{2, 2, 1, 0, 0, 1, 0, 0},
{2, 2, 1, 0, 0, 1, 0, 0},
{1, 1, 1, 1, 1, 1, 1, 1},
{0, 0, 1, 3, 3, 1, 0, 0},
{0, 0, 1, 3, 3, 1, 0, 0},
{1, 1, 1, 1, 1, 1, 1, 1},
{0, 0, 1, 0, 0, 1, 0, 0},
{0, 0, 1, 0, 0, 1, 0, 0}
};
for(int row = 0; row < 8; row++) {
for(int column = 0; column < 8; column++) {
fadePixel(column, row, off, colors[matrix[row][column]], 30, 0);
}
}
}
void drawLogo() {
// This 8x8 array represents the LED matrix pixels.
// A value of 1 means we’ll fade the pixel to white
int logo[8][8] = {
{0, 0, 0, 0, 0, 0, 0, 0},
{0, 1, 1, 0, 0, 1, 1, 0},
{0, 1, 1, 0, 0, 1, 1, 0},
{0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0},
{0, 1, 1, 0, 0, 1, 1, 0},
{0, 1, 1, 0, 0, 1, 1, 0},
{0, 0, 0, 0, 0, 0, 0, 0}
};
for(int row = 0; row < 8; row++) {
for(int column = 0; column < 8; column++) {
if(logo[row][column] == 1) {
fadePixel(column, row, purple, white, 30, 0);
}
}
}
}
void drawLogoRound(){
// This 8x8 array represents the LED matrix pixels.
// A value of 1 means we’ll fade the pixel to white
int logo[8][8] = {
{0, 0, 0, 0, 0, 0, 0, 0},
{0, 0, 1, 1, 1, 1, 0, 0},
{0, 1, 0, 0, 0, 0, 1, 0},
{0, 1, 0, 1, 1, 0, 1, 0},
{0, 1, 0, 1, 1, 0, 1, 0},
{0, 1, 0, 0, 0, 0, 1, 0},
{0, 0, 1, 1, 1, 1, 0, 0},
{0, 0, 0, 0, 0, 0, 0, 0}
};
for(int row = 0; row < 8; row++) {
for(int column = 0; column < 8; column++) {
if(logo[row][column] == 1) {
fadePixel(column, row, purple, white, 30, 0);
}
}
}
}
void drawPhone(){
// This 8x8 array represents the LED matrix pixels.
// A value of 1 means we’ll fade the pixel to white
int logo[8][8] = {
{0, 0, 0, 0, 0, 0, 0, 0},
{0, 1, 1, 1, 1, 1, 1, 0},
{1, 1, 1, 1, 1, 1, 1, 1},
{1, 1, 0, 0, 0, 0, 1, 1},
{0, 0, 0, 1, 1, 0, 0, 0},
{0, 1, 0, 1, 1, 0, 1, 0},
{0, 1, 0, 0, 0, 0, 1, 0},
{0, 1, 1, 1, 1, 1, 1, 0}
};
for(int row = 0; row < 8; row++) {
for(int column = 0; column < 8; column++) {
if(logo[row][column] == 1) {
fadePixel(column, row, purple, white, 8, 0);
}
}
}
}
void drawSMS(){
// This 8x8 array represents the LED matrix pixels.
// A value of 1 means we’ll fade the pixel to white
int logo[8][8] = {
{1, 1, 1, 1, 1, 1, 1, 1},
{1, 0, 0, 0, 0, 0, 0, 1},
{1, 0, 0, 1, 1, 0, 0, 1},
{1, 0, 0, 1, 1, 0, 0, 1},
{1, 0, 0, 0, 0, 0, 0, 1},
{1, 1, 1, 1, 1, 1, 1, 1},
{0, 0, 0, 0, 0, 1, 1, 0},
{0, 0, 0, 0, 0, 0, 1, 0}
};
for(int row = 0; row < 8; row++) {
for(int column = 0; column < 8; column++) {
if(logo[row][column] == 1) {
fadePixel(column, row, purple, white, 30, 0);
}
}
}
}
void scrollText(String textToDisplay) {
int x = matrix.width();
int pixelsInText = textToDisplay.length() * 7;
matrix.setCursor(x, 0);
matrix.print(textToDisplay);
matrix.show();
while(x > (matrix.width() - pixelsInText)) {
matrix.fillScreen(matrix.Color(teal.r, teal.g, teal.b));
matrix.setCursor(--x, 0);
matrix.print(textToDisplay);
matrix.show();
delay(150);
}
}
| [
"get@willmason.me"
] | get@willmason.me |
89eb32e38ce3043fe7eb2b8485af620d4e46260c | 7e791eccdc4d41ba225a90b3918ba48e356fdd78 | /chromium/src/chrome/browser/ui/ash/launcher/multi_profile_app_window_launcher_controller.cc | c36f1a2bc3acd1ba1b3b09e48731ff4511594fbc | [
"BSD-3-Clause"
] | permissive | WiViClass/cef-3.2623 | 4e22b763a75e90d10ebf9aa3ea9a48a3d9ccd885 | 17fe881e9e481ef368d9f26e903e00a6b7bdc018 | refs/heads/master | 2021-01-25T04:38:14.941623 | 2017-06-09T07:37:43 | 2017-06-09T07:37:43 | 93,824,379 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 6,743 | cc | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/ash/launcher/multi_profile_app_window_launcher_controller.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_util.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h"
#include "chrome/browser/ui/host_desktop.h"
#include "components/signin/core/account_id/account_id.h"
#include "extensions/browser/app_window/app_window.h"
#include "extensions/browser/app_window/native_app_window.h"
#include "ui/aura/window.h"
namespace {
bool ControlsWindow(aura::Window* window) {
return chrome::GetHostDesktopTypeForNativeWindow(window) ==
chrome::HOST_DESKTOP_TYPE_ASH;
}
} // namespace
MultiProfileAppWindowLauncherController::
MultiProfileAppWindowLauncherController(ChromeLauncherController* owner)
: AppWindowLauncherController(owner) {}
MultiProfileAppWindowLauncherController::
~MultiProfileAppWindowLauncherController() {
// We need to remove all Registry observers for added users.
for (AppWindowRegistryList::iterator it = multi_user_registry_.begin();
it != multi_user_registry_.end();
++it)
(*it)->RemoveObserver(this);
}
void MultiProfileAppWindowLauncherController::ActiveUserChanged(
const std::string& user_email) {
// The active user has changed and we need to traverse our list of items to
// show / hide them one by one. To avoid that a user dependent state
// "survives" in a launcher item, we first delete all items making sure that
// nothing remains and then re-create them again.
for (AppWindowList::iterator it = app_window_list_.begin();
it != app_window_list_.end();
++it) {
extensions::AppWindow* app_window = *it;
Profile* profile =
Profile::FromBrowserContext(app_window->browser_context());
if (!multi_user_util::IsProfileFromActiveUser(profile) &&
IsRegisteredApp(app_window->GetNativeWindow()))
UnregisterApp(app_window->GetNativeWindow());
}
for (AppWindowList::iterator it = app_window_list_.begin();
it != app_window_list_.end();
++it) {
extensions::AppWindow* app_window = *it;
Profile* profile =
Profile::FromBrowserContext(app_window->browser_context());
if (multi_user_util::IsProfileFromActiveUser(profile) &&
!IsRegisteredApp(app_window->GetNativeWindow()) &&
(app_window->GetBaseWindow()->IsMinimized() ||
app_window->GetNativeWindow()->IsVisible()))
RegisterApp(*it);
}
}
void MultiProfileAppWindowLauncherController::AdditionalUserAddedToSession(
Profile* profile) {
// Each users AppWindowRegistry needs to be observed.
extensions::AppWindowRegistry* registry =
extensions::AppWindowRegistry::Get(profile);
multi_user_registry_.push_back(registry);
registry->AddObserver(this);
}
void MultiProfileAppWindowLauncherController::OnAppWindowAdded(
extensions::AppWindow* app_window) {
if (!ControlsWindow(app_window->GetNativeWindow()))
return;
app_window_list_.push_back(app_window);
Profile* profile = Profile::FromBrowserContext(app_window->browser_context());
// If the window got created for a non active user but the user allowed to
// teleport to the current user's desktop, we teleport it now.
if (!multi_user_util::IsProfileFromActiveUser(profile) &&
UserHasAppOnActiveDesktop(app_window)) {
chrome::MultiUserWindowManager::GetInstance()->ShowWindowForUser(
app_window->GetNativeWindow(), multi_user_util::GetCurrentAccountId());
}
}
void MultiProfileAppWindowLauncherController::OnAppWindowShown(
extensions::AppWindow* app_window,
bool was_hidden) {
if (!ControlsWindow(app_window->GetNativeWindow()))
return;
Profile* profile = Profile::FromBrowserContext(app_window->browser_context());
if (multi_user_util::IsProfileFromActiveUser(profile) &&
!IsRegisteredApp(app_window->GetNativeWindow())) {
RegisterApp(app_window);
return;
}
// The panel layout manager only manages windows which are anchored.
// Since this window did never had an anchor, it would stay hidden. We
// therefore make it visible now.
if (UserHasAppOnActiveDesktop(app_window) &&
app_window->GetNativeWindow()->type() == ui::wm::WINDOW_TYPE_PANEL &&
!app_window->GetNativeWindow()->layer()->GetTargetOpacity()) {
app_window->GetNativeWindow()->layer()->SetOpacity(1.0f);
}
}
void MultiProfileAppWindowLauncherController::OnAppWindowHidden(
extensions::AppWindow* app_window) {
if (!ControlsWindow(app_window->GetNativeWindow()))
return;
Profile* profile = Profile::FromBrowserContext(app_window->browser_context());
if (multi_user_util::IsProfileFromActiveUser(profile) &&
IsRegisteredApp(app_window->GetNativeWindow())) {
UnregisterApp(app_window->GetNativeWindow());
}
}
void MultiProfileAppWindowLauncherController::OnAppWindowRemoved(
extensions::AppWindow* app_window) {
if (!ControlsWindow(app_window->GetNativeWindow()))
return;
// If the application is registered with AppWindowLauncher (because the user
// is currently active), the OnWindowDestroying observer has already (or will
// soon) unregister it independently from the shelf. If it was not registered
// we don't need to do anything anyways. As such, all which is left to do here
// is to get rid of our own reference.
AppWindowList::iterator it =
std::find(app_window_list_.begin(), app_window_list_.end(), app_window);
DCHECK(it != app_window_list_.end());
app_window_list_.erase(it);
}
bool MultiProfileAppWindowLauncherController::UserHasAppOnActiveDesktop(
extensions::AppWindow* app_window) {
const std::string& app_id = app_window->extension_id();
content::BrowserContext* app_context = app_window->browser_context();
DCHECK(!app_context->IsOffTheRecord());
const AccountId current_account_id = multi_user_util::GetCurrentAccountId();
chrome::MultiUserWindowManager* manager =
chrome::MultiUserWindowManager::GetInstance();
for (AppWindowList::iterator it = app_window_list_.begin();
it != app_window_list_.end();
++it) {
extensions::AppWindow* other_window = *it;
DCHECK(!other_window->browser_context()->IsOffTheRecord());
if (manager->IsWindowOnDesktopOfUser(other_window->GetNativeWindow(),
current_account_id) &&
app_id == other_window->extension_id() &&
app_context == other_window->browser_context()) {
return true;
}
}
return false;
}
| [
"1480868058@qq.com"
] | 1480868058@qq.com |
d14f46e79ed4b25f462a81d2f322482dcbe3b73f | 88ae8695987ada722184307301e221e1ba3cc2fa | /third_party/webrtc/modules/audio_coding/audio_network_adaptor/frame_length_controller_v2_unittest.cc | 1c88f47c5835ff3dddba7d2908add80b80d7e525 | [
"Apache-2.0",
"LGPL-2.0-or-later",
"MIT",
"GPL-1.0-or-later",
"BSD-3-Clause",
"LicenseRef-scancode-google-patent-license-webrtc",
"LicenseRef-scancode-google-patent-license-webm",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 3,754 | cc | /*
* Copyright (c) 2020 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#include "modules/audio_coding/audio_network_adaptor/frame_length_controller_v2.h"
#include <algorithm>
#include <memory>
#include "modules/audio_coding/audio_network_adaptor/controller.h"
#include "modules/audio_coding/audio_network_adaptor/include/audio_network_adaptor_config.h"
#include "test/gtest.h"
namespace webrtc {
namespace {
constexpr int kANASupportedFrameLengths[] = {20, 40, 60, 120};
constexpr int kMinPayloadBitrateBps = 16000;
} // namespace
class FrameLengthControllerV2Test : public testing::Test {
protected:
AudioEncoderRuntimeConfig GetDecision() {
AudioEncoderRuntimeConfig config;
controller_->MakeDecision(&config);
return config;
}
void SetOverhead(int overhead_bytes_per_packet) {
overhead_bytes_per_packet_ = overhead_bytes_per_packet;
Controller::NetworkMetrics metrics;
metrics.overhead_bytes_per_packet = overhead_bytes_per_packet;
controller_->UpdateNetworkMetrics(metrics);
}
void SetTargetBitrate(int target_audio_bitrate_bps) {
target_audio_bitrate_bps_ = target_audio_bitrate_bps;
Controller::NetworkMetrics metrics;
metrics.target_audio_bitrate_bps = target_audio_bitrate_bps;
controller_->UpdateNetworkMetrics(metrics);
}
void SetUplinkBandwidth(int uplink_bandwidth_bps) {
Controller::NetworkMetrics metrics;
metrics.uplink_bandwidth_bps = uplink_bandwidth_bps;
controller_->UpdateNetworkMetrics(metrics);
}
void ExpectFrameLengthDecision(int expected_frame_length_ms) {
auto config = GetDecision();
EXPECT_EQ(*config.frame_length_ms, expected_frame_length_ms);
}
std::unique_ptr<FrameLengthControllerV2> controller_ =
std::make_unique<FrameLengthControllerV2>(kANASupportedFrameLengths,
kMinPayloadBitrateBps,
/*use_slow_adaptation=*/false);
absl::optional<int> target_audio_bitrate_bps_;
absl::optional<int> overhead_bytes_per_packet_;
};
// Don't return any decision if we haven't received all required network
// metrics.
TEST_F(FrameLengthControllerV2Test, RequireNetworkMetrics) {
auto config = GetDecision();
EXPECT_FALSE(config.bitrate_bps);
EXPECT_FALSE(config.frame_length_ms);
SetOverhead(30);
config = GetDecision();
EXPECT_FALSE(config.frame_length_ms);
SetTargetBitrate(32000);
config = GetDecision();
EXPECT_FALSE(config.frame_length_ms);
SetUplinkBandwidth(32000);
config = GetDecision();
EXPECT_TRUE(config.frame_length_ms);
}
TEST_F(FrameLengthControllerV2Test, UseFastAdaptation) {
SetOverhead(50);
SetTargetBitrate(50000);
SetUplinkBandwidth(50000);
ExpectFrameLengthDecision(20);
SetTargetBitrate(20000);
ExpectFrameLengthDecision(120);
SetTargetBitrate(30000);
ExpectFrameLengthDecision(40);
SetTargetBitrate(25000);
ExpectFrameLengthDecision(60);
}
TEST_F(FrameLengthControllerV2Test, UseSlowAdaptation) {
controller_ = std::make_unique<FrameLengthControllerV2>(
kANASupportedFrameLengths, kMinPayloadBitrateBps,
/*use_slow_adaptation=*/true);
SetOverhead(50);
SetTargetBitrate(50000);
SetUplinkBandwidth(20000);
ExpectFrameLengthDecision(120);
SetUplinkBandwidth(30000);
ExpectFrameLengthDecision(40);
SetUplinkBandwidth(40000);
ExpectFrameLengthDecision(20);
}
} // namespace webrtc
| [
"jengelh@inai.de"
] | jengelh@inai.de |
c4acd732221c3ea706bf875def5c48553649bc95 | 0c8ffd5a36ca21395b5564c93856a57905ce8543 | /Source/MyBuilder/MyBuilder.cpp | b5ed8e6d2d64b7e319a81d0fdaa83de35ecf9a34 | [] | no_license | vibrunazo/ue4-MyBuilder01 | d314f73168bf5bd74f7bc511b7be933be9a79401 | 6d6042c48d785e1797af86407078d909be43f943 | refs/heads/master | 2021-02-18T02:22:36.774265 | 2020-03-19T20:27:18 | 2020-03-19T20:27:18 | 245,149,295 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 203 | cpp | // Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#include "MyBuilder.h"
#include "Modules/ModuleManager.h"
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, MyBuilder, "MyBuilder" );
| [
"vibrunazo@gmail.com"
] | vibrunazo@gmail.com |
467f8b5dc402312f6e5bcf30e794bec13ecb76a2 | 8567438779e6af0754620a25d379c348e4cd5a5d | /third_party/WebKit/Source/bindings/tests/results/core/ArrayBufferOrArrayBufferViewOrDictionary.h | 54b6b4e420771a767bb5505e1ea9e1f53ccdbedc | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | thngkaiyuan/chromium | c389ac4b50ccba28ee077cbf6115c41b547955ae | dab56a4a71f87f64ecc0044e97b4a8f247787a68 | refs/heads/master | 2022-11-10T02:50:29.326119 | 2017-04-08T12:28:57 | 2017-04-08T12:28:57 | 84,073,924 | 0 | 1 | BSD-3-Clause | 2022-10-25T19:47:15 | 2017-03-06T13:04:15 | null | UTF-8 | C++ | false | false | 3,977 | h | // Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// This file has been auto-generated by code_generator_v8.py.
// DO NOT MODIFY!
// This file has been generated from the Jinja2 template in
// third_party/WebKit/Source/bindings/templates/union_container.h.tmpl
// clang-format off
#ifndef ArrayBufferOrArrayBufferViewOrDictionary_h
#define ArrayBufferOrArrayBufferViewOrDictionary_h
#include "bindings/core/v8/Dictionary.h"
#include "bindings/core/v8/ExceptionState.h"
#include "bindings/core/v8/V8Binding.h"
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
namespace blink {
class TestArrayBuffer;
class TestArrayBufferView;
class CORE_EXPORT ArrayBufferOrArrayBufferViewOrDictionary final {
DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
public:
ArrayBufferOrArrayBufferViewOrDictionary();
bool isNull() const { return m_type == SpecificTypeNone; }
bool isArrayBuffer() const { return m_type == SpecificTypeArrayBuffer; }
TestArrayBuffer* getAsArrayBuffer() const;
void setArrayBuffer(TestArrayBuffer*);
static ArrayBufferOrArrayBufferViewOrDictionary fromArrayBuffer(TestArrayBuffer*);
bool isArrayBufferView() const { return m_type == SpecificTypeArrayBufferView; }
TestArrayBufferView* getAsArrayBufferView() const;
void setArrayBufferView(TestArrayBufferView*);
static ArrayBufferOrArrayBufferViewOrDictionary fromArrayBufferView(TestArrayBufferView*);
bool isDictionary() const { return m_type == SpecificTypeDictionary; }
Dictionary getAsDictionary() const;
void setDictionary(Dictionary);
static ArrayBufferOrArrayBufferViewOrDictionary fromDictionary(Dictionary);
ArrayBufferOrArrayBufferViewOrDictionary(const ArrayBufferOrArrayBufferViewOrDictionary&);
~ArrayBufferOrArrayBufferViewOrDictionary();
ArrayBufferOrArrayBufferViewOrDictionary& operator=(const ArrayBufferOrArrayBufferViewOrDictionary&);
DECLARE_TRACE();
private:
enum SpecificTypes {
SpecificTypeNone,
SpecificTypeArrayBuffer,
SpecificTypeArrayBufferView,
SpecificTypeDictionary,
};
SpecificTypes m_type;
Member<TestArrayBuffer> m_arrayBuffer;
Member<TestArrayBufferView> m_arrayBufferView;
Dictionary m_dictionary;
friend CORE_EXPORT v8::Local<v8::Value> ToV8(const ArrayBufferOrArrayBufferViewOrDictionary&, v8::Local<v8::Object>, v8::Isolate*);
};
class V8ArrayBufferOrArrayBufferViewOrDictionary final {
public:
CORE_EXPORT static void toImpl(v8::Isolate*, v8::Local<v8::Value>, ArrayBufferOrArrayBufferViewOrDictionary&, UnionTypeConversionMode, ExceptionState&);
};
CORE_EXPORT v8::Local<v8::Value> ToV8(const ArrayBufferOrArrayBufferViewOrDictionary&, v8::Local<v8::Object>, v8::Isolate*);
template <class CallbackInfo>
inline void v8SetReturnValue(const CallbackInfo& callbackInfo, ArrayBufferOrArrayBufferViewOrDictionary& impl) {
v8SetReturnValue(callbackInfo, ToV8(impl, callbackInfo.Holder(), callbackInfo.GetIsolate()));
}
template <class CallbackInfo>
inline void v8SetReturnValue(const CallbackInfo& callbackInfo, ArrayBufferOrArrayBufferViewOrDictionary& impl, v8::Local<v8::Object> creationContext) {
v8SetReturnValue(callbackInfo, ToV8(impl, creationContext, callbackInfo.GetIsolate()));
}
template <>
struct NativeValueTraits<ArrayBufferOrArrayBufferViewOrDictionary> {
CORE_EXPORT static ArrayBufferOrArrayBufferViewOrDictionary nativeValue(v8::Isolate*, v8::Local<v8::Value>, ExceptionState&);
};
} // namespace blink
// We need to set canInitializeWithMemset=true because HeapVector supports
// items that can initialize with memset or have a vtable. It is safe to
// set canInitializeWithMemset=true for a union type object in practice.
// See https://codereview.chromium.org/1118993002/#msg5 for more details.
WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(blink::ArrayBufferOrArrayBufferViewOrDictionary);
#endif // ArrayBufferOrArrayBufferViewOrDictionary_h
| [
"hedonist.ky@gmail.com"
] | hedonist.ky@gmail.com |
cf31c77d0a41572c5175c57b3fc6271f4edb608d | a62342d6359a88b0aee911e549a4973fa38de9ea | /0.6.0.3/Internal/SDK/Chicken_AnimBP_classes.h | 93e37190e479bb6510ae8d83dc64d00c57f5b6f6 | [] | no_license | zanzo420/Medieval-Dynasty-SDK | d020ad634328ee8ee612ba4bd7e36b36dab740ce | d720e49ae1505e087790b2743506921afb28fc18 | refs/heads/main | 2023-06-20T03:00:17.986041 | 2021-07-15T04:51:34 | 2021-07-15T04:51:34 | 386,165,085 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,534 | h | #pragma once
// Name: Medieval Dynasty, Version: 0.6.0.3
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//---------------------------------------------------------------------------
// AnimBlueprintGeneratedClass Chicken_AnimBP.Chicken_AnimBP_C
// 0x1A80 (FullSize[0x1D38] - InheritedSize[0x02B8])
class UChicken_AnimBP_C : public UAnimInstance
{
public:
unsigned char UnknownData_Z36H[0x8]; // 0x02B8(0x0008) Fix Super Size
struct FPointerToUberGraphFrame UberGraphFrame; // 0x02C0(0x0008) (ZeroConstructor, Transient, DuplicateTransient, UObjectWrapper)
struct FAnimNode_Root AnimGraphNode_Root; // 0x02C8(0x0030)
struct FAnimNode_Slot AnimGraphNode_Slot_2; // 0x02F8(0x0048)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_21; // 0x0340(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_20; // 0x0368(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_19; // 0x0390(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_18; // 0x03B8(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_17; // 0x03E0(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_16; // 0x0408(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_15; // 0x0430(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_14; // 0x0458(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_13; // 0x0480(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_12; // 0x04A8(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_11; // 0x04D0(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_10; // 0x04F8(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_9; // 0x0520(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_8; // 0x0548(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_7; // 0x0570(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_6; // 0x0598(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_5; // 0x05C0(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_4; // 0x05E8(0x0028)
struct FAnimNode_SequencePlayer AnimGraphNode_SequencePlayer_3; // 0x0610(0x0080)
struct FAnimNode_StateResult AnimGraphNode_StateResult_5; // 0x0690(0x0030)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_3; // 0x06C0(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult_2; // 0x06E8(0x0028)
struct FAnimNode_TransitionResult AnimGraphNode_TransitionResult; // 0x0710(0x0028)
struct FAnimNode_SequencePlayer AnimGraphNode_SequencePlayer_2; // 0x0738(0x0080)
struct FAnimNode_StateResult AnimGraphNode_StateResult_4; // 0x07B8(0x0030)
struct FAnimNode_Slot AnimGraphNode_Slot; // 0x07E8(0x0048)
struct FAnimNode_SequencePlayer AnimGraphNode_SequencePlayer; // 0x0830(0x0080)
struct FAnimNode_StateResult AnimGraphNode_StateResult_3; // 0x08B0(0x0030)
struct FAnimNode_BlendSpacePlayer AnimGraphNode_BlendSpacePlayer; // 0x08E0(0x00E8)
struct FAnimNode_StateResult AnimGraphNode_StateResult_2; // 0x09C8(0x0030)
struct FAnimNode_RandomPlayer AnimGraphNode_RandomPlayer; // 0x09F8(0x0078)
struct FAnimNode_StateResult AnimGraphNode_StateResult; // 0x0A70(0x0030)
struct FAnimNode_StateMachine AnimGraphNode_StateMachine; // 0x0AA0(0x00B0)
struct FAnimNode_ConvertLocalToComponentSpace AnimGraphNode_LocalToComponentSpace_2; // 0x0B50(0x0020)
struct FAnimNode_ConvertComponentToLocalSpace AnimGraphNode_ComponentToLocalSpace; // 0x0B70(0x0020)
struct FAnimNode_SaveCachedPose AnimGraphNode_SaveCachedPose; // 0x0B90(0x0158)
struct FAnimNode_UseCachedPose AnimGraphNode_UseCachedPose_2; // 0x0CE8(0x0028)
struct FAnimNode_ConvertLocalToComponentSpace AnimGraphNode_LocalToComponentSpace; // 0x0D10(0x0020)
struct FAnimNode_UseCachedPose AnimGraphNode_UseCachedPose; // 0x0D30(0x0028)
unsigned char UnknownData_QJYI[0x8]; // 0x0D58(0x0008) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
struct FAnimNode_DragonFeetSolver AnimGraphNode_DragonFeetSolver; // 0x0D60(0x0710)
struct FAnimNode_DragonSpineSolver AnimGraphNode_DragonSpineSolver; // 0x1470(0x0860)
bool IsMoving; // 0x1CD0(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor)
unsigned char UnknownData_UP6S[0x3]; // 0x1CD1(0x0003) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
float Speed; // 0x1CD4(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
float SpeedSide; // 0x1CD8(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
unsigned char UnknownData_Q2XJ[0x4]; // 0x1CDC(0x0004) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
class ABP_HusbandryAI_C* ChickenRef; // 0x1CE0(0x0008) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnTemplate, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
bool DisableIK; // 0x1CE8(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor)
unsigned char UnknownData_MY1V[0x3]; // 0x1CE9(0x0003) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
float FeetAlpha; // 0x1CEC(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
struct FDragonData_MultiInput DragonInput; // 0x1CF0(0x0020) (Edit, BlueprintVisible, DisableEditOnInstance)
bool LowFPS; // 0x1D10(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor)
unsigned char UnknownData_YCZ3[0x3]; // 0x1D11(0x0003) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
float IKFPSLimit; // 0x1D14(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
float IKFPSRestore; // 0x1D18(0x0004) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
TEnumAsByte<E_MovementMode_E_MovementMode> PrevMovementMode; // 0x1D1C(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
TEnumAsByte<E_MovementMode_E_MovementMode> MovementMode; // 0x1D1D(0x0001) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
unsigned char UnknownData_6DHZ[0x2]; // 0x1D1E(0x0002) MISSED OFFSET (FIX SPACE BETWEEN PREVIOUS PROPERTY)
struct FVector Velocity; // 0x1D20(0x000C) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
struct FVector RightVector; // 0x1D2C(0x000C) (Edit, BlueprintVisible, ZeroConstructor, DisableEditOnInstance, IsPlainOldData, NoDestructor, HasGetValueTypeHash)
static UClass* StaticClass()
{
static auto ptr = UObject::FindClass("AnimBlueprintGeneratedClass Chicken_AnimBP.Chicken_AnimBP_C");
return ptr;
}
void GetAnimalRowName_BPI(struct FName* SwitchAnimals_RowName);
void GetAnimalHeight(float* Height);
void GetAnimalWorldLocation(struct FVector* Location);
void GetAnimal(class ABP_AnimalBase_C** AnimalBase);
void GetFear(int* FearFactor);
void GetFleeingTimer(struct FTimerHandle* FleeingTimer);
void CheckIsBuilding(const struct FVector& CheckLocation, const struct FVector& Destination, struct FVector* NewLocation);
void GetSystemManager(class ABP_SystemsManager_C** SystemManager);
void GetInventoryComponent(class UInventoryComponent_C** InventoryComponent);
void GetForSale(bool* ForSale);
void GetPrice_Buy(int* Price);
void GetPrice_Sell(int* Price);
void AnimGraph(struct FPoseLink* AnimGraph);
void GetVariablesFromPawn();
void UpdateIKState();
void SetEngageTargetBPI(class AActor* Causer);
void SetFear(int Fear);
void OnWakeUp();
void AddItemToHouse();
void UnpauseBrain();
void SetIsInWater(bool InWater, float Intensity);
void PauseBrain();
void UpdateMountEquipment(bool Unequip, const struct FST_ItemOutfit& ItemData);
void CheckDistance(const struct FVector& PlayerLocation);
void SetForSale(bool ForSale);
void Remove();
void CauseBleeding(float BleedDamage, float BleedDuration);
void OnSleep();
void Starving(float HungerDamage);
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_125867CB4975D774481317BA0D3D6C59();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_B5280514428D93E6D6FD80BB04611CC5();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_B70906924FBC327DF754CCB96387B77E();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_5BEF996E4B55E34525C0029ED899D4E4();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_7BA20F2A464FF0E8123F66A36CCB3F28();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_EA8EA47A464ED2943ECBEEACA862053A();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_04EA593548BCCC854867379ACAC3D21A();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_42CE243644C75DA4023B8E91BD932571();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_7B3D681B4E391A00CA8CB9974D208307();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_C5FD4D2348A2D9F81E62F9928AF42387();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_C57F98FE48B237511F5361AA05355C22();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_59F60DFB4A842CD772D2FC844F1F0CC1();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_E787D9134D19F515283D3BAA16158966();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_F2CAD3B0443772454B3F23A3250D801E();
void EvaluateGraphExposedInputs_ExecuteUbergraph_Chicken_AnimBP_AnimGraphNode_TransitionResult_7CB581524FB2AE0120CDA1A9C20A4BD9();
void SetAnimalMovementMode_BPI(TEnumAsByte<E_MovementMode_E_MovementMode> MovementMode);
void BlueprintUpdateAnimation(float DeltaTimeX);
void BlueprintBeginPlay();
void AnimNotify_Land();
void ExecuteUbergraph_Chicken_AnimBP(int EntryPoint);
};
}
#ifdef _MSC_VER
#pragma pack(pop)
#endif
| [
"zp2kshield@gmail.com"
] | zp2kshield@gmail.com |
1488e8431dade4499178b4fbc1072f4e8f075cb8 | db199ba87036ad271919c7c20e6111445c1840e2 | /HelloOpenal/main.cpp | acdc98730add74ebfa5d2474cdbfb0e6b75d1969 | [] | no_license | wqf-c/HelloOpenal | b747b3b61dc6167d0500d6d3bfb4658e5ef61628 | 58080b50596f09337ceb43a67b236449d25920c5 | refs/heads/master | 2022-10-16T06:55:49.636279 | 2020-06-08T17:10:52 | 2020-06-08T17:10:52 | 270,754,671 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 490 | cpp | #include <iostream>
#include <alut.h>
#include <al.h>
void main1()
{
alutInit(NULL, NULL);
ALuint source1;
alGenSources(1, &source1);
ALuint buffer1 = alutCreateBufferFromFile("D://code//myCode//c++//HelloOpenal//HelloOpenal//test.wav");
alSourcei(source1, AL_BUFFER, buffer1);
alSourcePlay(source1);
ALint state;
do {
alGetSourcei(source1, AL_SOURCE_STATE, &state);
} while (state == AL_PLAYING);
alDeleteSources(1, &source1);
alDeleteBuffers(1, &buffer1);
alutExit();
}
| [
"284660487@qq.com"
] | 284660487@qq.com |
91b8dffa442bfdc1cb879ce3faff37e9c5c701d9 | 4bea57e631734f8cb1c230f521fd523a63c1ff23 | /projects/openfoam/rarefied-flows/impingment/sims/templates/compressible/rhoCentralFoam/wedge15Ma5/0.24/U | ce6206526d9f4cd4d2dc797a75beff2e4c630315 | [] | no_license | andytorrestb/cfal | 76217f77dd43474f6b0a7eb430887e8775b78d7f | 730fb66a3070ccb3e0c52c03417e3b09140f3605 | refs/heads/master | 2023-07-04T01:22:01.990628 | 2021-08-01T15:36:17 | 2021-08-01T15:36:17 | 294,183,829 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 179,440 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1912 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volVectorField;
location "0.24";
object U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 1 -1 0 0 0 0];
internalField nonuniform List<vector>
9600
(
(3 3.37376e-17 0)
(3 1.68688e-18 0)
(3 -1.68688e-17 0)
(3 -1.68688e-18 0)
(3 -3.20507e-17 0)
(3 -2.53032e-17 0)
(3 -1.68688e-17 0)
(3 -5.06063e-18 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 -5.39801e-17 0)
(3 -5.06063e-17 0)
(3 -4.55457e-17 0)
(3 -3.87982e-17 0)
(3 -3.20507e-17 0)
(3 -2.69901e-17 0)
(3 -1.85557e-17 0)
(3 -1.18081e-17 0)
(3 4.04851e-17 0)
(3 9.27783e-17 0)
(3 1.58567e-16 0)
(3 1.8893e-16 0)
(3 1.77122e-16 0)
(3 1.82183e-16 0)
(3 1.75435e-16 0)
(3 1.67001e-16 0)
(3 2.19294e-16 0)
(3 2.1086e-16 0)
(3 2.17607e-16 0)
(3 2.34476e-16 0)
(3 2.09173e-16 0)
(3 2.00739e-16 0)
(3 1.6194e-16 0)
(3 0 0)
(3 -4.04851e-17 0)
(3 -3.71113e-17 0)
(3 -3.37376e-17 0)
(3 -5.90407e-17 0)
(3 -1.48445e-16 0)
(3 3.20507e-17 0)
(3 1.3495e-17 0)
(3 8.43439e-18 0)
(3 1.18081e-17 0)
(3 1.3495e-17 0)
(3 1.01213e-17 0)
(3 -1.18081e-17 0)
(3 4.72326e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 2.86769e-17 0)
(3 3.37376e-18 0)
(3 -2.86769e-17 0)
(3 -5.22932e-17 0)
(3 -5.73539e-17 0)
(3 -1.18081e-17 0)
(3 -1.68688e-17 0)
(3 -1.68688e-17 0)
(3 -1.51819e-17 0)
(3 -1.68688e-17 0)
(3 -3.37376e-17 0)
(3 -5.06063e-17 0)
(3 -5.5667e-17 0)
(3 -6.74751e-17 0)
(3 -5.73539e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -2.69901e-17 0)
(3 -1.18081e-17 0)
(3 -3.37376e-17 0)
(3 3.20507e-17 0)
(3 1.01213e-17 0)
(3 -1.68688e-18 0)
(3 -1.39359e-16 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -7.92833e-17 0)
(3 -1.63627e-16 0)
(3 -1.43385e-16 0)
(3 -1.48445e-16 0)
(3 -1.40011e-16 0)
(3 -1.63627e-16 0)
(3 -1.5688e-16 0)
(3 -1.41698e-16 0)
(3 -1.38324e-16 0)
(3 -1.38324e-16 0)
(3 -1.73748e-16 0)
(3 -1.6194e-16 0)
(3 -2.02425e-16 0)
(3 -1.82183e-16 0)
(3 -1.80496e-16 0)
(3 -1.70375e-16 0)
(3 -1.46758e-16 0)
(3 -1.43385e-16 0)
(3 -1.40011e-16 0)
(3 -1.85557e-16 0)
(3 -2.3785e-16 0)
(3 -3.07012e-16 0)
(3 -2.96891e-16 0)
(3 -2.93517e-16 0)
(3 -2.9183e-16 0)
(3 -2.44597e-16 0)
(3 -2.31102e-16 0)
(3 -2.39537e-16 0)
(3 -2.26042e-16 0)
(3 -2.88456e-16 0)
(3 -2.59779e-16 0)
(3 -2.36163e-16 0)
(3 -2.3785e-16 0)
(3 -3.91543e-16 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -1.18081e-16 0)
(3 -1.31577e-16 0)
(3 -1.78809e-16 0)
(3 -2.27729e-16 0)
(3 -2.02425e-16 0)
(3 -2.04112e-16 0)
(3 -2.54719e-16 0)
(3 -2.32789e-16 0)
(3 -1.6194e-16 0)
(3 -2.24355e-16 0)
(3 -2.04112e-16 0)
(3 -2.27729e-16 0)
(3 -2.90143e-16 0)
(3 -2.04112e-16 0)
(3 -2.47971e-16 0)
(3 -2.12547e-16 0)
(3 -6.74751e-17 0)
(3 -1.60253e-16 0)
(3 -7.75964e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -9.78389e-17 0)
(3 -8.43439e-17 0)
(3 -7.25358e-17 0)
(3 -7.08489e-17 0)
(3 -5.90407e-17 0)
(3 -5.5667e-17 0)
(3 -5.5667e-17 0)
(3 -4.55457e-17 0)
(3 -7.59095e-17 0)
(3 -1.18081e-16 0)
(3 -1.06273e-16 0)
(3 -7.59095e-17 0)
(3 -1.29779e-16 0)
(3 0 0)
(3 0 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 3.37376e-17 0)
(3 1.68688e-17 0)
(3 2.86769e-17 0)
(3 1.68688e-17 0)
(3 -1.18081e-17 0)
(3 -2.69901e-17 0)
(3 -3.87982e-17 0)
(3 -8.43439e-18 0)
(3 -2.36163e-17 0)
(3 3.20507e-17 0)
(3 2.02425e-17 0)
(3 -1.18081e-17 0)
(3 3.20507e-17 0)
(3 1.01213e-17 0)
(3 5.06063e-18 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 -1.01213e-16 0)
(3 1.18081e-17 0)
(3 2.19294e-17 0)
(3 7.25358e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 3.20507e-17 0)
(3 9.61521e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 7.25358e-17 0)
(3 1.26516e-16 0)
(3 1.92304e-16 0)
(3 2.93517e-16 0)
(3 1.29118e-16 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 1.18081e-16 0)
(3 1.06273e-16 0)
(3 1.01213e-16 0)
(3 9.95258e-17 0)
(3 9.78389e-17 0)
(3 1.45072e-16 0)
(3 2.04112e-16 0)
(3 1.93991e-16 0)
(3 1.26516e-16 0)
(3 1.16395e-16 0)
(3 1.16395e-16 0)
(3 1.51819e-16 0)
(3 2.24355e-16 0)
(3 1.80496e-16 0)
(3 2.24355e-16 0)
(3 1.75435e-16 0)
(3 5.39801e-17 0)
(3 1.18081e-16 0)
(3 7.42226e-17 0)
(3 1.13021e-16 0)
(3 1.80496e-16 0)
(3 1.53506e-16 0)
(3 1.16395e-16 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.44652e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 1.38324e-16 0)
(3 1.18081e-16 0)
(3 9.61521e-17 0)
(3 1.17838e-16 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 -1.18081e-17 0)
(3 2.02425e-17 0)
(3 4.04851e-17 0)
(3 6.74751e-17 0)
(3 5.5667e-17 0)
(3 5.5667e-17 0)
(3 1.18081e-17 0)
(3 2.53032e-17 0)
(3 5.39801e-17 0)
(3 -5.06063e-18 0)
(3 1.85557e-17 0)
(3 3.03638e-17 0)
(3 3.37376e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 -8.43439e-18 0)
(3 -2.19294e-17 0)
(3 -4.04851e-17 0)
(3 -5.22932e-17 0)
(3 -3.20507e-17 0)
(3 -2.86769e-17 0)
(3 -2.86769e-17 0)
(3 -2.86769e-17 0)
(3 5.22932e-17 0)
(3 -1.01213e-17 0)
(3 3.20507e-17 0)
(3 2.19294e-17 0)
(3 -4.2172e-17 0)
(3 -1.0796e-16 0)
(3 -1.6194e-16 0)
(3 -1.38324e-16 0)
(3 -2.68571e-16 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 6.74751e-18 0)
(3 5.39801e-17 0)
(3 6.74751e-17 0)
(3 1.18081e-16 0)
(3 1.18081e-16 0)
(3 1.18081e-16 0)
(3 5.73539e-17 0)
(3 6.24145e-17 0)
(3 7.59095e-17 0)
(3 8.77177e-17 0)
(3 1.46758e-16 0)
(3 2.26042e-16 0)
(3 2.12547e-16 0)
(3 1.19768e-16 0)
(3 1.80496e-16 0)
(3 1.82183e-16 0)
(3 1.80496e-16 0)
(3 1.82183e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.14708e-16 0)
(3 3.54244e-17 0)
(3 3.37376e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 1.85557e-17 0)
(3 -3.37376e-18 0)
(3 5.22932e-17 0)
(3 -3.20507e-17 0)
(3 -1.3495e-17 0)
(3 1.18081e-17 0)
(3 2.19294e-17 0)
(3 5.5667e-17 0)
(3 9.61521e-17 0)
(3 8.09702e-17 0)
(3 6.74751e-17 0)
(3 1.51892e-16 0)
(3 0 0)
(3 0 0)
(3 4.38588e-17 0)
(3 1.41698e-16 0)
(3 1.23142e-16 0)
(3 1.09647e-16 0)
(3 9.78389e-17 0)
(3 1.31577e-16 0)
(3 2.68214e-16 0)
(3 2.36163e-16 0)
(3 2.07486e-16 0)
(3 2.9183e-16 0)
(3 2.26042e-16 0)
(3 2.49658e-16 0)
(3 2.26042e-16 0)
(3 2.07486e-16 0)
(3 2.66527e-16 0)
(3 2.47971e-16 0)
(3 2.31102e-16 0)
(3 2.1592e-16 0)
(3 1.80496e-16 0)
(3 1.55193e-16 0)
(3 1.18081e-16 0)
(3 1.38324e-16 0)
(3 1.40011e-16 0)
(3 1.40011e-16 0)
(3 1.5688e-16 0)
(3 1.6194e-16 0)
(3 1.6194e-16 0)
(3 1.6194e-16 0)
(3 2.26042e-16 0)
(3 2.26042e-16 0)
(3 2.86769e-16 0)
(3 2.14234e-16 0)
(3 1.82183e-16 0)
(3 2.04112e-16 0)
(3 2.02425e-16 0)
(3 2.02425e-16 0)
(3 2.02425e-16 0)
(3 2.00219e-16 0)
(3 0 0)
(3 0 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 -6.74751e-18 0)
(3 -8.43439e-18 0)
(3 -5.22932e-17 0)
(3 -3.87982e-17 0)
(3 3.20507e-17 0)
(3 3.03638e-17 0)
(3 3.37376e-17 0)
(3 5.5667e-17 0)
(3 5.5667e-17 0)
(3 3.20507e-17 0)
(3 -6.57883e-17 0)
(3 -3.37376e-17 0)
(3 -1.3495e-17 0)
(3 -5.06063e-17 0)
(3 -1.38324e-16 0)
(3 -1.18081e-16 0)
(3 -1.04586e-16 0)
(3 -1.3495e-17 0)
(3 -6.74751e-18 0)
(3 -2.53032e-17 0)
(3 -3.20507e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 6.41014e-17 0)
(3 1.73748e-16 0)
(3 1.31577e-16 0)
(3 1.60253e-16 0)
(3 1.60253e-16 0)
(3 1.58567e-16 0)
(3 2.24355e-16 0)
(3 1.5688e-16 0)
(3 7.25358e-17 0)
(3 1.38324e-16 0)
(3 1.28203e-16 0)
(3 9.92826e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -3.20507e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -1.0796e-16 0)
(3 -2.02425e-16 0)
(3 -1.82183e-16 0)
(3 -1.82183e-16 0)
(3 -2.41224e-16 0)
(3 -2.46284e-16 0)
(3 -2.32789e-16 0)
(3 -2.04112e-16 0)
(3 -2.14234e-16 0)
(3 -2.73274e-16 0)
(3 -2.61466e-16 0)
(3 -1.82183e-16 0)
(3 -1.93991e-16 0)
(3 -2.17607e-16 0)
(3 -2.26042e-16 0)
(3 -2.26042e-16 0)
(3 -1.77122e-16 0)
(3 -1.55193e-16 0)
(3 -8.09702e-17 0)
(3 -7.75964e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -5.39801e-17 0)
(3 -1.01213e-16 0)
(3 -1.8387e-16 0)
(3 -1.60253e-16 0)
(3 -1.73748e-16 0)
(3 -1.55193e-16 0)
(3 -9.27783e-17 0)
(3 8.43439e-18 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -6.27277e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 -5.06063e-18 0)
(3 -1.01213e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 -4.89195e-17 0)
(3 -4.2172e-17 0)
(3 -3.37376e-17 0)
(3 -1.14708e-16 0)
(3 -9.61521e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -7.42226e-17 0)
(3 -9.44652e-17 0)
(3 -9.44652e-17 0)
(3 -9.61521e-17 0)
(3 -8.2657e-17 0)
(3 -5.39801e-17 0)
(3 -1.16395e-16 0)
(3 -9.95258e-17 0)
(3 -9.61521e-17 0)
(3 -3.03638e-17 0)
(3 -8.94045e-17 0)
(3 -9.61521e-17 0)
(3 -9.61521e-17 0)
(3 -1.33263e-16 0)
(3 -2.24355e-16 0)
(3 -2.02425e-16 0)
(3 -2.19294e-16 0)
(3 -1.68688e-16 0)
(3 -1.01213e-16 0)
(3 -2.02425e-16 0)
(3 -1.80496e-16 0)
(3 -1.80496e-16 0)
(3 -2.44597e-16 0)
(3 -1.93991e-16 0)
(3 -1.18881e-16 0)
(3 0 0)
(3 2.19294e-17 0)
(3 -4.55457e-17 0)
(3 -8.94045e-17 0)
(3 -5.06063e-17 0)
(3 -4.2172e-17 0)
(3 1.01213e-17 0)
(3 -5.39801e-17 0)
(3 -1.3495e-17 0)
(3 -1.3495e-17 0)
(3 -1.18081e-17 0)
(3 -8.43439e-18 0)
(3 -8.43439e-18 0)
(3 -7.42226e-17 0)
(3 -6.07276e-17 0)
(3 -3.71113e-17 0)
(3 -3.37376e-17 0)
(3 -1.01213e-17 0)
(3 -5.22932e-17 0)
(3 -3.37376e-17 0)
(3 -1.01213e-17 0)
(3 -5.39801e-17 0)
(3 -3.20507e-17 0)
(3 -7.08489e-17 0)
(3 -7.42226e-17 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -6.24145e-17 0)
(3 -5.39801e-17 0)
(3 -1.11334e-16 0)
(3 -1.16395e-16 0)
(3 -1.16395e-16 0)
(3 -1.06273e-16 0)
(3 -1.60253e-16 0)
(3 -1.18081e-16 0)
(3 -8.94045e-17 0)
(3 -5.7009e-17 0)
(3 0 0)
(3 0 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 2.86769e-17 0)
(3 5.39801e-17 0)
(3 1.18081e-16 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.61521e-17 0)
(3 1.36637e-16 0)
(3 1.8893e-16 0)
(3 1.60253e-16 0)
(3 1.38324e-16 0)
(3 1.80496e-16 0)
(3 2.22668e-16 0)
(3 2.1086e-16 0)
(3 1.80496e-16 0)
(3 1.67001e-16 0)
(3 1.50132e-16 0)
(3 1.19768e-16 0)
(3 3.87982e-17 0)
(3 -1.68688e-18 0)
(3 7.59095e-17 0)
(3 7.75964e-17 0)
(3 7.75964e-17 0)
(3 7.75964e-17 0)
(3 7.75964e-17 0)
(3 7.75964e-17 0)
(3 3.54244e-17 0)
(3 -2.86769e-17 0)
(3 7.42226e-17 0)
(3 7.42226e-17 0)
(3 1.16395e-16 0)
(3 1.09647e-16 0)
(3 4.89195e-17 0)
(3 -4.39366e-17 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 1.18081e-17 0)
(3 1.3495e-17 0)
(3 -1.01213e-17 0)
(3 -1.01213e-17 0)
(3 -3.20507e-17 0)
(3 -3.03638e-17 0)
(3 -2.86769e-17 0)
(3 -8.43439e-18 0)
(3 -8.43439e-18 0)
(3 -1.01213e-17 0)
(3 -5.06063e-18 0)
(3 1.18081e-17 0)
(3 2.02425e-17 0)
(3 1.18081e-17 0)
(3 3.37376e-17 0)
(3 5.22932e-17 0)
(3 3.54244e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 1.6194e-16 0)
(3 1.6194e-16 0)
(3 1.99052e-16 0)
(3 2.02425e-16 0)
(3 2.02425e-16 0)
(3 2.02425e-16 0)
(3 2.02425e-16 0)
(3 1.45072e-16 0)
(3 1.41698e-16 0)
(3 1.41698e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 7.42226e-17 0)
(3 1.38324e-16 0)
(3 1.24829e-16 0)
(3 1.04586e-16 0)
(3 7.95938e-17 0)
(3 -1.18081e-17 0)
(3 7.92833e-17 0)
(3 1.01213e-17 0)
(3 9.10914e-17 0)
(3 5.39801e-17 0)
(3 1.38324e-16 0)
(3 9.78389e-17 0)
(3 3.37376e-17 0)
(3 5.5667e-17 0)
(3 5.90407e-17 0)
(3 6.41014e-17 0)
(3 5.90407e-17 0)
(3 5.73539e-17 0)
(3 1.01213e-17 0)
(3 2.19294e-17 0)
(3 1.68688e-17 0)
(3 1.51819e-17 0)
(3 -3.37376e-17 0)
(3 -1.85557e-17 0)
(3 1.01213e-17 0)
(3 1.18081e-17 0)
(3 3.37376e-17 0)
(3 5.22932e-17 0)
(3 7.59095e-17 0)
(3 7.59095e-17 0)
(3 1.72062e-16 0)
(3 7.59095e-17 0)
(3 7.59095e-17 0)
(3 1.40011e-16 0)
(3 1.23142e-16 0)
(3 1.18081e-16 0)
(3 1.18081e-16 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 6.07276e-17 0)
(3 -2.53032e-17 0)
(3 -5.22932e-17 0)
(3 -4.04851e-17 0)
(3 -2.36163e-17 0)
(3 3.61862e-17 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 5.06063e-17 0)
(3 3.20507e-17 0)
(3 3.37376e-17 0)
(3 1.11334e-16 0)
(3 1.16395e-16 0)
(3 1.16395e-16 0)
(3 1.06273e-16 0)
(3 1.06273e-16 0)
(3 9.78389e-17 0)
(3 1.40011e-16 0)
(3 2.24355e-16 0)
(3 1.95678e-16 0)
(3 1.6194e-16 0)
(3 1.6194e-16 0)
(3 1.6194e-16 0)
(3 1.8893e-16 0)
(3 5.5667e-17 0)
(3 5.90407e-17 0)
(3 1.68688e-17 0)
(3 1.68688e-17 0)
(3 -5.22932e-17 0)
(3 -3.20507e-17 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -2.53032e-17 0)
(3 4.34492e-32 0)
(3 1.51819e-17 0)
(3 1.51819e-17 0)
(3 1.3495e-17 0)
(3 -5.06063e-17 0)
(3 -4.2172e-17 0)
(3 -5.06063e-17 0)
(3 -4.28523e-17 0)
(3 1.18081e-17 0)
(3 -5.22932e-17 0)
(3 1.01213e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -1.63627e-16 0)
(3 -9.78389e-17 0)
(3 -5.90407e-17 0)
(3 5.06063e-18 0)
(3 2.19294e-17 0)
(3 2.69901e-17 0)
(3 9.10914e-17 0)
(3 9.61521e-17 0)
(3 1.60253e-16 0)
(3 9.61521e-17 0)
(3 9.44652e-17 0)
(3 1.06273e-16 0)
(3 1.16395e-16 0)
(3 6.07276e-17 0)
(3 5.22932e-17 0)
(3 6.24145e-17 0)
(3 9.10914e-17 0)
(3 9.27783e-17 0)
(3 1.40011e-16 0)
(3 1.16395e-16 0)
(3 6.07276e-17 0)
(3 7.25358e-17 0)
(3 1.38324e-16 0)
(3 7.59095e-17 0)
(3 9.61521e-17 0)
(3 7.92833e-17 0)
(3 1.28203e-16 0)
(3 2.1086e-16 0)
(3 2.05799e-16 0)
(3 1.99052e-16 0)
(3 1.90617e-16 0)
(3 1.60253e-16 0)
(3 1.6194e-16 0)
(3 1.48445e-16 0)
(3 1.32895e-16 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 -3.37376e-18 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.3495e-17 0)
(3 -1.18081e-17 0)
(3 -9.61521e-17 0)
(3 -5.90407e-17 0)
(3 5.06063e-18 0)
(3 6.24145e-17 0)
(3 1.40011e-16 0)
(3 1.21455e-16 0)
(3 1.2989e-16 0)
(3 1.3495e-16 0)
(3 1.36637e-16 0)
(3 1.36637e-16 0)
(3 1.8893e-16 0)
(3 1.8387e-16 0)
(3 1.82183e-16 0)
(3 2.68214e-16 0)
(3 2.58092e-16 0)
(3 2.27729e-16 0)
(3 2.26042e-16 0)
(3 2.90143e-16 0)
(3 2.76648e-16 0)
(3 2.47971e-16 0)
(3 2.78335e-16 0)
(3 3.03638e-16 0)
(3 3.20507e-16 0)
(3 3.00264e-16 0)
(3 2.81709e-16 0)
(3 2.47971e-16 0)
(3 3.10386e-16 0)
(3 2.90143e-16 0)
(3 2.90143e-16 0)
(3 2.90388e-16 0)
(3 6.9162e-17 0)
(3 7.59095e-17 0)
(3 1.18081e-17 0)
(3 3.37376e-17 0)
(3 3.03638e-17 0)
(3 8.43439e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 -1.68688e-18 0)
(3 8.43439e-18 0)
(3 1.18081e-17 0)
(3 -3.03638e-17 0)
(3 -4.04851e-17 0)
(3 -9.61521e-17 0)
(3 -8.2657e-17 0)
(3 -6.57883e-17 0)
(3 -1.01213e-17 0)
(3 -8.43439e-18 0)
(3 -1.01213e-17 0)
(3 5.22932e-17 0)
(3 4.2172e-17 0)
(3 -3.20507e-17 0)
(3 3.37376e-17 0)
(3 -3.37376e-17 0)
(3 8.43439e-18 0)
(3 -3.37376e-18 0)
(3 -6.74751e-18 0)
(3 -5.22932e-17 0)
(3 -4.04851e-17 0)
(3 -2.19294e-17 0)
(3 1.01213e-17 0)
(3 -4.89195e-17 0)
(3 -9.61521e-17 0)
(3 -8.43439e-17 0)
(3 -6.24145e-17 0)
(3 -4.55457e-17 0)
(3 -3.37376e-18 0)
(3 1.85557e-17 0)
(3 4.72326e-17 0)
(3 4.93743e-17 0)
(3 3.71113e-17 0)
(3 9.27783e-17 0)
(3 1.38324e-16 0)
(3 2.24355e-16 0)
(3 1.99052e-16 0)
(3 2.46284e-16 0)
(3 2.36163e-16 0)
(3 1.97365e-16 0)
(3 1.70375e-16 0)
(3 1.55193e-16 0)
(3 1.50132e-16 0)
(3 1.0796e-16 0)
(3 -1.01213e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -1.11334e-16 0)
(3 -2.00739e-16 0)
(3 -1.8893e-16 0)
(3 -1.60253e-16 0)
(3 -2.02425e-16 0)
(3 -1.8893e-16 0)
(3 -1.77122e-16 0)
(3 -1.80496e-16 0)
(3 -2.02425e-16 0)
(3 -2.00739e-16 0)
(3 -2.00739e-16 0)
(3 -2.00739e-16 0)
(3 -2.02425e-16 0)
(3 -1.65314e-16 0)
(3 -2.39537e-16 0)
(3 -3.10386e-16 0)
(3 -2.44597e-16 0)
(3 -2.17607e-16 0)
(3 -1.95678e-16 0)
(3 -1.6194e-16 0)
(3 -2.24355e-16 0)
(3 -2.04112e-16 0)
(3 -2.04112e-16 0)
(3 -1.98605e-16 0)
(3 -1.19768e-16 0)
(3 -6.57883e-17 0)
(3 -5.06063e-17 0)
(3 1.68688e-18 0)
(3 1.85557e-17 0)
(3 6.74751e-17 0)
(3 7.59095e-17 0)
(3 1.3495e-17 0)
(3 -3.35233e-32 0)
(3 5.06063e-18 0)
(3 8.43439e-18 0)
(3 8.43439e-18 0)
(3 8.43439e-18 0)
(3 8.43439e-18 0)
(3 2.86769e-17 0)
(3 3.71113e-17 0)
(3 -3.20507e-17 0)
(3 -7.59095e-17 0)
(3 1.51819e-17 0)
(3 -1.14708e-16 0)
(3 -1.16395e-16 0)
(3 -2.19294e-17 0)
(3 -1.72062e-16 0)
(3 -8.2657e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -9.61521e-17 0)
(3 -4.2172e-17 0)
(3 -1.01213e-17 0)
(3 -2.69901e-17 0)
(3 -3.37376e-17 0)
(3 -4.72326e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -8.55879e-17 0)
(3 -1.51819e-17 0)
(3 -5.73539e-17 0)
(3 -1.40011e-16 0)
(3 -1.6194e-16 0)
(3 -1.2989e-16 0)
(3 -1.38324e-16 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -9.44652e-17 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -9.44652e-17 0)
(3 -1.2989e-16 0)
(3 -1.13021e-16 0)
(3 -1.029e-16 0)
(3 -9.95258e-17 0)
(3 -1.13021e-16 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -1.14708e-16 0)
(3 -4.2172e-17 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.38324e-16 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 2.86769e-17 0)
(3 -1.83687e-18 0)
(3 5.73539e-17 0)
(3 -5.22932e-17 0)
(3 1.01213e-17 0)
(3 -9.61521e-17 0)
(3 -9.78389e-17 0)
(3 -1.85557e-16 0)
(3 -1.72062e-16 0)
(3 -1.67001e-16 0)
(3 -1.77122e-16 0)
(3 -1.55193e-16 0)
(3 -1.46758e-16 0)
(3 -1.28203e-16 0)
(3 -1.23142e-16 0)
(3 -9.61521e-17 0)
(3 -1.46758e-16 0)
(3 -1.3495e-16 0)
(3 -1.11334e-16 0)
(3 -8.43439e-17 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.8893e-16 0)
(3 -1.70375e-16 0)
(3 -1.82183e-16 0)
(3 -1.72062e-16 0)
(3 -1.06273e-16 0)
(3 -1.04586e-16 0)
(3 -5.90407e-17 0)
(3 -5.5667e-17 0)
(3 -5.22932e-17 0)
(3 -4.04851e-17 0)
(3 2.36163e-17 0)
(3 5.22932e-17 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -8.43439e-18 0)
(3 -2.69901e-17 0)
(3 -3.03638e-17 0)
(3 -3.20507e-17 0)
(3 -2.35689e-17 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 -3.37376e-17 0)
(3 -1.01213e-17 0)
(3 -3.37376e-17 0)
(3 1.51819e-17 0)
(3 1.3495e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 9.61521e-17 0)
(3 8.43439e-17 0)
(3 5.22932e-17 0)
(3 1.16395e-16 0)
(3 1.029e-16 0)
(3 8.43439e-17 0)
(3 5.5667e-17 0)
(3 5.5667e-17 0)
(3 3.20507e-17 0)
(3 -5.06063e-17 0)
(3 3.20507e-17 0)
(3 1.68688e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 1.16395e-16 0)
(3 1.14708e-16 0)
(3 5.90407e-17 0)
(3 4.55457e-17 0)
(3 -8.43439e-18 0)
(3 -5.06063e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -1.0796e-16 0)
(3 -1.73004e-16 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 -1.01213e-17 0)
(3 7.42226e-17 0)
(3 7.42226e-17 0)
(3 1.16395e-16 0)
(3 7.59095e-17 0)
(3 7.42226e-17 0)
(3 7.42226e-17 0)
(3 4.89195e-17 0)
(3 1.18081e-16 0)
(3 1.16395e-16 0)
(3 1.16395e-16 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 1.40011e-16 0)
(3 1.16395e-16 0)
(3 1.60253e-16 0)
(3 1.41698e-16 0)
(3 1.40011e-16 0)
(3 1.38324e-16 0)
(3 1.48445e-16 0)
(3 1.48445e-16 0)
(3 1.14708e-16 0)
(3 1.06273e-16 0)
(3 3.37376e-17 0)
(3 7.92833e-17 0)
(3 -3.20507e-17 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -2.19294e-17 0)
(3 -1.18081e-17 0)
(3 -5.90407e-17 0)
(3 -9.27783e-17 0)
(3 -9.44652e-17 0)
(3 -9.61521e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -7.14126e-17 0)
(3 3.20507e-17 0)
(3 1.38324e-16 0)
(3 1.18081e-16 0)
(3 1.6194e-16 0)
(3 1.53506e-16 0)
(3 1.6194e-16 0)
(3 1.60253e-16 0)
(3 9.78389e-17 0)
(3 9.61521e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 1.3495e-17 0)
(3 1.01213e-17 0)
(3 -3.37376e-17 0)
(3 2.86769e-17 0)
(3 3.37376e-17 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -1.68688e-18 0)
(3 3.37376e-18 0)
(3 -1.01213e-17 0)
(3 8.43439e-18 0)
(3 1.01213e-17 0)
(3 -2.02425e-17 0)
(3 -3.20507e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 5.39801e-17 0)
(3 1.0796e-16 0)
(3 -3.71113e-17 0)
(3 5.22932e-17 0)
(3 3.37376e-17 0)
(3 5.22932e-17 0)
(3 5.39801e-17 0)
(3 7.08489e-17 0)
(3 7.59095e-17 0)
(3 7.59095e-17 0)
(3 5.73539e-17 0)
(3 4.99741e-17 0)
(3 3.37376e-18 0)
(3 0 0)
(3 0 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -5.39801e-17 0)
(3 -3.87982e-17 0)
(3 -5.22932e-17 0)
(3 -4.04851e-17 0)
(3 -5.5667e-17 0)
(3 -1.18081e-17 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 3.54244e-17 0)
(3 -9.44652e-17 0)
(3 1.68688e-17 0)
(3 -3.20507e-17 0)
(3 -2.19294e-17 0)
(3 -1.18081e-17 0)
(3 -1.01213e-17 0)
(3 -6.74751e-18 0)
(3 -8.43439e-18 0)
(3 -1.01213e-17 0)
(3 -1.01213e-17 0)
(3 9.61521e-17 0)
(3 7.75964e-17 0)
(3 7.59095e-17 0)
(3 1.53506e-16 0)
(3 1.38324e-16 0)
(3 1.5688e-16 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.22169e-16 0)
(3 -1.3495e-17 0)
(3 -7.75964e-17 0)
(3 -7.59095e-17 0)
(3 -1.38324e-16 0)
(3 -1.18081e-16 0)
(3 -1.6194e-16 0)
(3 -1.50132e-16 0)
(3 -1.31577e-16 0)
(3 -1.11334e-16 0)
(3 -9.10914e-17 0)
(3 -6.74751e-17 0)
(3 -4.72326e-17 0)
(3 -1.01213e-17 0)
(3 1.01213e-17 0)
(3 -5.22932e-17 0)
(3 -4.2172e-17 0)
(3 2.69901e-17 0)
(3 2.53032e-17 0)
(3 8.60308e-17 0)
(3 9.78389e-17 0)
(3 1.19768e-16 0)
(3 1.18081e-16 0)
(3 1.18081e-16 0)
(3 1.18081e-16 0)
(3 1.18081e-16 0)
(3 5.73539e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 1.01213e-17 0)
(3 6.74751e-17 0)
(3 7.42226e-17 0)
(3 4.72326e-17 0)
(3 7.25358e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 9.27783e-17 0)
(3 1.55193e-16 0)
(3 1.6194e-16 0)
(3 1.6194e-16 0)
(3 1.60694e-16 0)
(3 -1.01213e-17 0)
(3 5.06063e-17 0)
(3 3.37376e-17 0)
(3 9.61521e-17 0)
(3 7.59095e-17 0)
(3 1.18081e-16 0)
(3 9.78389e-17 0)
(3 1.3495e-16 0)
(3 2.04112e-16 0)
(3 1.82183e-16 0)
(3 1.18081e-16 0)
(3 9.61521e-17 0)
(3 9.78389e-17 0)
(3 1.3495e-16 0)
(3 2.3785e-16 0)
(3 2.19294e-16 0)
(3 1.5688e-16 0)
(3 1.33263e-16 0)
(3 1.04586e-16 0)
(3 9.44652e-17 0)
(3 9.44652e-17 0)
(3 9.44652e-17 0)
(3 9.61521e-17 0)
(3 8.94045e-17 0)
(3 1.11334e-16 0)
(3 7.59095e-17 0)
(3 9.44652e-17 0)
(3 9.61521e-17 0)
(3 7.59095e-17 0)
(3 9.61521e-17 0)
(3 9.78389e-17 0)
(3 1.53506e-16 0)
(3 1.60253e-16 0)
(3 9.95258e-17 0)
(3 9.78389e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.10914e-17 0)
(3 7.59095e-17 0)
(3 9.72518e-17 0)
(3 0 0)
(3 0 0)
(3 7.08489e-17 0)
(3 7.59095e-17 0)
(3 7.59095e-17 0)
(3 7.59095e-17 0)
(3 7.42226e-17 0)
(3 6.07276e-17 0)
(3 3.03638e-17 0)
(3 8.43439e-17 0)
(3 5.5667e-17 0)
(3 5.39801e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 -5.22932e-17 0)
(3 5.73539e-17 0)
(3 -1.01213e-17 0)
(3 5.06063e-18 0)
(3 -7.92833e-17 0)
(3 -1.18081e-17 0)
(3 -5.22932e-17 0)
(3 -2.36163e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 4.55457e-17 0)
(3 5.90407e-17 0)
(3 1.18081e-17 0)
(3 1.68688e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 -2.69901e-17 0)
(3 -9.78389e-17 0)
(3 -8.43439e-17 0)
(3 -5.39801e-17 0)
(3 -5.77016e-17 0)
(3 0 0)
(3 -6.24145e-17 0)
(3 -4.38588e-17 0)
(3 -3.87982e-17 0)
(3 -3.37376e-17 0)
(3 -7.25358e-17 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -1.38324e-16 0)
(3 -1.23142e-16 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -1.14708e-16 0)
(3 -1.60253e-16 0)
(3 -1.18081e-16 0)
(3 -3.37376e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 -5.06063e-18 0)
(3 8.43439e-18 0)
(3 2.53032e-17 0)
(3 2.86769e-17 0)
(3 9.61521e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 9.61521e-17 0)
(3 2.34663e-31 0)
(3 -1.18081e-17 0)
(3 -3.37376e-17 0)
(3 3.87982e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 4.28523e-17 0)
(3 0 0)
(3 6.24145e-17 0)
(3 -1.16395e-16 0)
(3 -6.07276e-17 0)
(3 -5.22932e-17 0)
(3 -1.01213e-17 0)
(3 -1.68688e-18 0)
(3 1.01213e-17 0)
(3 -1.01213e-17 0)
(3 8.43439e-18 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 1.01213e-17 0)
(3 7.42226e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 2.02425e-17 0)
(3 -3.20507e-17 0)
(3 -3.37376e-17 0)
(3 -1.16395e-16 0)
(3 -8.77177e-17 0)
(3 -6.9162e-17 0)
(3 -2.86769e-17 0)
(3 -9.78389e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.22932e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -2.86769e-17 0)
(3 5.39801e-17 0)
(3 9.61521e-17 0)
(3 1.40011e-16 0)
(3 1.24829e-16 0)
(3 1.0796e-16 0)
(3 7.92833e-17 0)
(3 8.55022e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -3.37376e-17 0)
(3 -1.40011e-16 0)
(3 -9.78389e-17 0)
(3 -1.40011e-16 0)
(3 -1.19768e-16 0)
(3 -1.18081e-16 0)
(3 -1.16395e-16 0)
(3 -1.16395e-16 0)
(3 -1.38324e-16 0)
(3 -1.36637e-16 0)
(3 -1.19768e-16 0)
(3 -1.18081e-16 0)
(3 -5.22932e-17 0)
(3 -9.61521e-17 0)
(3 -9.27783e-17 0)
(3 -1.18081e-16 0)
(3 -1.09647e-16 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -9.44652e-17 0)
(3 -9.61521e-17 0)
(3 -1.60253e-16 0)
(3 -1.43385e-16 0)
(3 -1.40011e-16 0)
(3 -1.40011e-16 0)
(3 -1.82183e-16 0)
(3 -1.82183e-16 0)
(3 -2.24355e-16 0)
(3 -1.97365e-16 0)
(3 -1.90617e-16 0)
(3 -1.029e-16 0)
(3 -1.60253e-16 0)
(3 -1.48445e-16 0)
(3 -1.28203e-16 0)
(3 -9.95258e-17 0)
(3 -9.61521e-17 0)
(3 -8.65294e-17 0)
(3 0 0)
(3 -7.42226e-17 0)
(3 -1.18081e-17 0)
(3 -4.2172e-17 0)
(3 1.01213e-17 0)
(3 -1.01213e-17 0)
(3 8.43439e-18 0)
(3 8.43439e-18 0)
(3 1.01213e-17 0)
(3 -7.42226e-17 0)
(3 -7.25358e-17 0)
(3 -7.42226e-17 0)
(3 -5.22932e-17 0)
(3 -7.59095e-17 0)
(3 -1.60253e-16 0)
(3 -1.51819e-16 0)
(3 -8.94045e-17 0)
(3 -7.08489e-17 0)
(3 2.86769e-17 0)
(3 2.86769e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 1.51819e-17 0)
(3 -5.22932e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -6.24145e-17 0)
(3 -3.54244e-17 0)
(3 -4.04851e-17 0)
(3 -4.04851e-17 0)
(3 -9.10914e-17 0)
(3 -1.01213e-17 0)
(3 -5.39801e-17 0)
(3 -1.38324e-16 0)
(3 -1.63627e-16 0)
(3 -2.26042e-16 0)
(3 -2.1086e-16 0)
(3 -1.93991e-16 0)
(3 -1.6194e-16 0)
(3 -1.63927e-16 0)
(3 0 0)
(3 0 0)
(3 -1.18081e-17 0)
(3 1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -3.37376e-18 0)
(3 -3.20507e-17 0)
(3 2.69901e-17 0)
(3 3.37376e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 1.41698e-16 0)
(3 1.23142e-16 0)
(3 7.42226e-17 0)
(3 1.16395e-16 0)
(3 5.22932e-17 0)
(3 9.61521e-17 0)
(3 7.59095e-17 0)
(3 7.42226e-17 0)
(3 1.41698e-16 0)
(3 1.41698e-16 0)
(3 1.19768e-16 0)
(3 1.14708e-16 0)
(3 1.38324e-16 0)
(3 1.2989e-16 0)
(3 1.21455e-16 0)
(3 9.61521e-17 0)
(3 9.44652e-17 0)
(3 9.44652e-17 0)
(3 9.61521e-17 0)
(3 8.09702e-17 0)
(3 7.59095e-17 0)
(3 1.51819e-17 0)
(3 1.18081e-17 0)
(3 5.39801e-17 0)
(3 3.87982e-17 0)
(3 2.02425e-17 0)
(3 -1.68688e-18 0)
(3 -1.96034e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 5.39801e-17 0)
(3 3.03638e-17 0)
(3 -1.01213e-17 0)
(3 -3.20507e-17 0)
(3 -1.01213e-17 0)
(3 9.61521e-17 0)
(3 6.9162e-17 0)
(3 3.54244e-17 0)
(3 3.20507e-17 0)
(3 2.53032e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.01213e-17 0)
(3 -6.74751e-18 0)
(3 8.43439e-18 0)
(3 5.06063e-18 0)
(3 -5.06063e-17 0)
(3 -5.39801e-17 0)
(3 -4.2172e-17 0)
(3 -3.37376e-17 0)
(3 -7.42226e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 2.19294e-17 0)
(3 -5.22932e-17 0)
(3 -5.06063e-17 0)
(3 2.69901e-17 0)
(3 3.37376e-17 0)
(3 3.03638e-17 0)
(3 3.03638e-17 0)
(3 3.20507e-17 0)
(3 1.01213e-17 0)
(3 9.34839e-34 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 -6.74751e-18 0)
(3 -5.22932e-17 0)
(3 -1.18081e-16 0)
(3 -9.78389e-17 0)
(3 -1.50132e-16 0)
(3 -1.40011e-16 0)
(3 -1.93991e-16 0)
(3 -1.72062e-16 0)
(3 -1.6194e-16 0)
(3 -2.07486e-16 0)
(3 -1.40011e-16 0)
(3 -1.82183e-16 0)
(3 -1.23142e-16 0)
(3 -7.42226e-17 0)
(3 -1.19768e-16 0)
(3 -1.06273e-16 0)
(3 -8.43439e-17 0)
(3 -7.59095e-17 0)
(3 -9.78389e-17 0)
(3 -8.60308e-17 0)
(3 -7.42226e-17 0)
(3 -5.39801e-17 0)
(3 -9.61521e-17 0)
(3 -6.07276e-17 0)
(3 -1.5688e-16 0)
(3 -5.22932e-17 0)
(3 -3.20507e-17 0)
(3 -5.39801e-17 0)
(3 -6.74751e-17 0)
(3 -1.16395e-16 0)
(3 -5.06063e-17 0)
(3 -3.87982e-17 0)
(3 -3.37376e-17 0)
(3 -2.30515e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -8.09702e-17 0)
(3 -1.36637e-16 0)
(3 -1.40011e-16 0)
(3 -9.10914e-17 0)
(3 -7.08489e-17 0)
(3 2.02425e-17 0)
(3 -2.02425e-17 0)
(3 4.55457e-17 0)
(3 6.57883e-17 0)
(3 -2.69901e-17 0)
(3 1.38324e-16 0)
(3 5.39801e-17 0)
(3 1.58567e-16 0)
(3 1.31577e-16 0)
(3 9.61521e-17 0)
(3 1.45072e-16 0)
(3 1.2989e-16 0)
(3 9.44652e-17 0)
(3 9.78389e-17 0)
(3 1.18081e-16 0)
(3 1.04586e-16 0)
(3 7.59095e-17 0)
(3 7.59095e-17 0)
(3 9.61521e-17 0)
(3 8.43439e-17 0)
(3 9.61521e-17 0)
(3 7.92833e-17 0)
(3 7.42226e-17 0)
(3 2.86769e-17 0)
(3 4.2172e-17 0)
(3 9.61521e-17 0)
(3 7.59095e-17 0)
(3 8.94045e-17 0)
(3 9.27783e-17 0)
(3 1.03603e-16 0)
(3 0 0)
(3 1.18081e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 1.85557e-17 0)
(3 4.2172e-17 0)
(3 1.38324e-16 0)
(3 1.26516e-16 0)
(3 1.06273e-16 0)
(3 1.80496e-16 0)
(3 1.63627e-16 0)
(3 1.60253e-16 0)
(3 1.60253e-16 0)
(3 1.11334e-16 0)
(3 9.10914e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 7.59095e-17 0)
(3 5.39801e-17 0)
(3 9.44652e-17 0)
(3 1.41698e-16 0)
(3 1.18081e-16 0)
(3 9.95258e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 1.16395e-16 0)
(3 1.18081e-16 0)
(3 9.61521e-17 0)
(3 1.33263e-16 0)
(3 3.54244e-17 0)
(3 3.37376e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -3.14965e-17 0)
(3 0 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 4.2172e-17 0)
(3 9.10914e-17 0)
(3 1.21455e-16 0)
(3 1.6194e-16 0)
(3 1.24829e-16 0)
(3 3.37376e-17 0)
(3 3.20507e-17 0)
(3 -2.86769e-17 0)
(3 1.01213e-17 0)
(3 -5.06063e-17 0)
(3 -1.01213e-17 0)
(3 -1.01213e-17 0)
(3 -5.06063e-17 0)
(3 -5.39801e-17 0)
(3 -1.19768e-16 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -1.60253e-16 0)
(3 -9.95258e-17 0)
(3 -5.5667e-17 0)
(3 -7.42226e-17 0)
(3 -9.78389e-17 0)
(3 -8.2657e-17 0)
(3 -7.59095e-17 0)
(3 -8.60308e-17 0)
(3 -1.38324e-16 0)
(3 -8.2657e-17 0)
(3 -1.18081e-16 0)
(3 -1.11334e-16 0)
(3 -1.16395e-16 0)
(3 -5.39801e-17 0)
(3 -6.41014e-17 0)
(3 -1.3495e-16 0)
(3 -1.36637e-16 0)
(3 -1.40011e-16 0)
(3 -1.26516e-16 0)
(3 -1.12929e-16 0)
(3 6.74751e-18 0)
(3 -3.87982e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -4.2172e-17 0)
(3 -2.53032e-17 0)
(3 -5.39801e-17 0)
(3 -1.40011e-16 0)
(3 -1.41698e-16 0)
(3 -3.87982e-17 0)
(3 -1.6194e-16 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -9.78389e-17 0)
(3 -1.18081e-17 0)
(3 -7.59095e-17 0)
(3 -1.18081e-17 0)
(3 -5.22932e-17 0)
(3 -1.16395e-16 0)
(3 -2.53032e-17 0)
(3 -9.95258e-17 0)
(3 -1.73748e-16 0)
(3 -1.38324e-16 0)
(3 -1.5688e-16 0)
(3 -1.45072e-16 0)
(3 -1.41698e-16 0)
(3 -1.40011e-16 0)
(3 -1.67001e-16 0)
(3 -1.18081e-16 0)
(3 -1.40011e-16 0)
(3 -1.40011e-16 0)
(3 -1.58567e-16 0)
(3 -1.24829e-16 0)
(3 -1.21455e-16 0)
(3 -7.92833e-17 0)
(3 -1.51819e-17 0)
(3 7.42226e-17 0)
(3 6.24145e-17 0)
(3 3.21599e-17 0)
(3 0 0)
(3 0 0)
(3 1.18081e-17 0)
(3 -1.68688e-17 0)
(3 -4.72326e-17 0)
(3 -8.77177e-17 0)
(3 -1.36637e-16 0)
(3 -5.5667e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -6.41014e-17 0)
(3 -5.39801e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 1.01213e-17 0)
(3 1.18081e-17 0)
(3 -1.3495e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.3495e-17 0)
(3 1.68688e-17 0)
(3 4.55457e-17 0)
(3 9.61521e-17 0)
(3 8.2657e-17 0)
(3 5.22932e-17 0)
(3 4.89195e-17 0)
(3 4.89195e-17 0)
(3 4.04851e-17 0)
(3 -3.20507e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -8.23732e-18 0)
(3 0 0)
(3 6.41014e-17 0)
(3 5.90407e-17 0)
(3 5.73539e-17 0)
(3 6.24145e-17 0)
(3 7.75964e-17 0)
(3 1.18081e-17 0)
(3 7.25358e-17 0)
(3 5.5667e-17 0)
(3 5.5667e-17 0)
(3 5.06063e-18 0)
(3 -1.68688e-18 0)
(3 -5.22932e-17 0)
(3 1.18081e-17 0)
(3 1.3495e-17 0)
(3 -3.20507e-17 0)
(3 1.18081e-17 0)
(3 -3.20507e-17 0)
(3 -1.18081e-17 0)
(3 1.18081e-17 0)
(3 -5.22932e-17 0)
(3 -4.72326e-17 0)
(3 5.06063e-18 0)
(3 3.37376e-18 0)
(3 8.43439e-18 0)
(3 4.89195e-17 0)
(3 1.40011e-16 0)
(3 1.60253e-16 0)
(3 1.60253e-16 0)
(3 1.60253e-16 0)
(3 1.6194e-16 0)
(3 1.6194e-16 0)
(3 1.6194e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 9.27783e-17 0)
(3 2.86769e-17 0)
(3 -7.25358e-17 0)
(3 -6.07276e-17 0)
(3 -3.24578e-17 0)
(3 0 0)
(3 -3.37376e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -6.24145e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 1.01213e-17 0)
(3 1.18081e-17 0)
(3 6.74751e-17 0)
(3 7.08489e-17 0)
(3 1.24829e-16 0)
(3 1.31577e-16 0)
(3 1.31577e-16 0)
(3 1.75435e-16 0)
(3 1.18081e-16 0)
(3 1.78809e-16 0)
(3 1.60253e-16 0)
(3 1.19768e-16 0)
(3 1.80496e-16 0)
(3 1.75435e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.26516e-16 0)
(3 8.43439e-17 0)
(3 -1.01213e-17 0)
(3 -1.68688e-17 0)
(3 -3.20507e-17 0)
(3 -1.68688e-17 0)
(3 -3.03638e-17 0)
(3 -1.68688e-17 0)
(3 -2.53032e-17 0)
(3 -1.68688e-18 0)
(3 -1.01213e-17 0)
(3 4.04851e-17 0)
(3 1.38324e-16 0)
(3 1.26516e-16 0)
(3 1.01213e-16 0)
(3 9.37824e-17 0)
(3 0 0)
(3 0 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 -5.06063e-18 0)
(3 -8.43439e-18 0)
(3 -8.43439e-18 0)
(3 -1.01213e-17 0)
(3 -8.43439e-18 0)
(3 -1.01213e-17 0)
(3 -5.06063e-18 0)
(3 -8.43439e-18 0)
(3 -8.43439e-18 0)
(3 -8.43439e-18 0)
(3 -8.43439e-18 0)
(3 -8.43439e-18 0)
(3 -3.54244e-17 0)
(3 -8.09702e-17 0)
(3 -9.10914e-17 0)
(3 -9.27783e-17 0)
(3 -9.44652e-17 0)
(3 -9.44652e-17 0)
(3 -9.44652e-17 0)
(3 -1.16395e-16 0)
(3 -3.37376e-17 0)
(3 -5.22932e-17 0)
(3 -5.39801e-17 0)
(3 -4.72326e-17 0)
(3 -5.06063e-17 0)
(3 -5.22932e-17 0)
(3 -4.28523e-17 0)
(3 0 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 4.2172e-17 0)
(3 8.09702e-17 0)
(3 1.029e-16 0)
(3 1.38324e-16 0)
(3 9.95258e-17 0)
(3 1.51819e-17 0)
(3 1.68688e-18 0)
(3 -7.42226e-17 0)
(3 -3.20507e-17 0)
(3 -7.42226e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -9.44652e-17 0)
(3 -7.59095e-17 0)
(3 -1.36637e-16 0)
(3 -1.16395e-16 0)
(3 -1.16395e-16 0)
(3 -1.60253e-16 0)
(3 -1.14708e-16 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -7.59095e-17 0)
(3 -6.07276e-17 0)
(3 -4.38588e-17 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -3.37376e-17 0)
(3 -1.18081e-17 0)
(3 -6.41014e-17 0)
(3 -1.40011e-16 0)
(3 -1.26516e-16 0)
(3 -1.0796e-16 0)
(3 -7.0943e-17 0)
(3 0 0)
(3 -2.19294e-17 0)
(3 -9.27783e-17 0)
(3 -9.78389e-17 0)
(3 -8.60308e-17 0)
(3 -6.9162e-17 0)
(3 -1.51819e-17 0)
(3 -7.42226e-17 0)
(3 -5.39801e-17 0)
(3 -5.22932e-17 0)
(3 8.43439e-18 0)
(3 1.18081e-17 0)
(3 7.42226e-17 0)
(3 7.59095e-17 0)
(3 7.42226e-17 0)
(3 1.18081e-16 0)
(3 5.22932e-17 0)
(3 9.61521e-17 0)
(3 8.60308e-17 0)
(3 3.20507e-17 0)
(3 8.2657e-17 0)
(3 7.92833e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 1.01213e-17 0)
(3 2.36163e-17 0)
(3 9.95258e-17 0)
(3 3.54244e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 -2.69901e-17 0)
(3 -3.37376e-17 0)
(3 3.20507e-17 0)
(3 1.01213e-17 0)
(3 7.08489e-17 0)
(3 7.42226e-17 0)
(3 7.26101e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 9.78389e-17 0)
(3 7.25358e-17 0)
(3 3.37376e-17 0)
(3 1.18081e-17 0)
(3 3.54244e-17 0)
(3 9.78389e-17 0)
(3 8.43439e-17 0)
(3 7.59095e-17 0)
(3 7.42226e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 -5.06063e-18 0)
(3 -8.43439e-18 0)
(3 -1.01213e-17 0)
(3 4.72326e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 2.69901e-17 0)
(3 -6.74751e-18 0)
(3 -7.42226e-17 0)
(3 -7.08489e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -6.07276e-17 0)
(3 -5.73539e-17 0)
(3 -5.39801e-17 0)
(3 -9.61521e-17 0)
(3 -9.44652e-17 0)
(3 -9.10914e-17 0)
(3 -8.09702e-17 0)
(3 -6.24145e-17 0)
(3 -5.73539e-17 0)
(3 -5.5667e-17 0)
(3 -5.5667e-17 0)
(3 -5.39801e-17 0)
(3 -8.09702e-17 0)
(3 -1.21679e-16 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 2.86769e-17 0)
(3 7.59095e-17 0)
(3 8.60308e-17 0)
(3 9.78389e-17 0)
(3 8.43439e-17 0)
(3 6.41014e-17 0)
(3 5.73539e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -9.10914e-17 0)
(3 -9.27783e-17 0)
(3 -9.44652e-17 0)
(3 -1.73748e-16 0)
(3 -9.78389e-17 0)
(3 -1.58567e-16 0)
(3 -8.09702e-17 0)
(3 -7.59095e-17 0)
(3 -1.33263e-16 0)
(3 -1.38324e-16 0)
(3 -9.61521e-17 0)
(3 -1.18081e-16 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -1.13021e-16 0)
(3 -8.60308e-17 0)
(3 -7.92833e-17 0)
(3 -3.37376e-17 0)
(3 -1.18081e-17 0)
(3 -3.37376e-17 0)
(3 -4.55457e-17 0)
(3 -9.78389e-17 0)
(3 -7.59095e-17 0)
(3 -1.31577e-16 0)
(3 -1.40011e-16 0)
(3 -1.21842e-16 0)
(3 -4.55457e-17 0)
(3 -3.37376e-17 0)
(3 -7.59095e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -1.21455e-16 0)
(3 -2.47971e-16 0)
(3 -2.36163e-16 0)
(3 -1.46758e-16 0)
(3 -1.04586e-16 0)
(3 -5.06063e-18 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 1.18081e-17 0)
(3 2.69901e-17 0)
(3 -1.01213e-17 0)
(3 -1.01213e-17 0)
(3 -2.19294e-17 0)
(3 4.38588e-17 0)
(3 5.73539e-17 0)
(3 5.22932e-17 0)
(3 5.06063e-17 0)
(3 5.39801e-17 0)
(3 7.59095e-17 0)
(3 7.25358e-17 0)
(3 7.42226e-17 0)
(3 7.42226e-17 0)
(3 7.92833e-17 0)
(3 6.74751e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 1.11334e-16 0)
(3 1.26516e-16 0)
(3 1.92304e-16 0)
(3 1.80496e-16 0)
(3 2.02425e-16 0)
(3 1.90617e-16 0)
(3 1.69999e-16 0)
(3 -5.39801e-17 0)
(3 -4.38588e-17 0)
(3 -5.22932e-17 0)
(3 -4.89195e-17 0)
(3 -8.43439e-17 0)
(3 -1.11334e-16 0)
(3 -5.39801e-17 0)
(3 3.20507e-17 0)
(3 1.01213e-17 0)
(3 5.22932e-17 0)
(3 3.37376e-17 0)
(3 3.20507e-17 0)
(3 7.92833e-17 0)
(3 1.48445e-16 0)
(3 2.1086e-16 0)
(3 2.24355e-16 0)
(3 2.02425e-16 0)
(3 2.00739e-16 0)
(3 1.50132e-16 0)
(3 1.16395e-16 0)
(3 1.53506e-16 0)
(3 1.6194e-16 0)
(3 1.24829e-16 0)
(3 1.18081e-16 0)
(3 9.78389e-17 0)
(3 1.51819e-16 0)
(3 2.24355e-16 0)
(3 2.07486e-16 0)
(3 2.24355e-16 0)
(3 2.02425e-16 0)
(3 2.02425e-16 0)
(3 1.18081e-16 0)
(3 1.16395e-16 0)
(3 1.82183e-16 0)
(3 1.82183e-16 0)
(3 1.6194e-16 0)
(3 2.24355e-16 0)
(3 2.24355e-16 0)
(3 2.24355e-16 0)
(3 2.05573e-16 0)
(3 4.55457e-17 0)
(3 8.43439e-17 0)
(3 9.61521e-17 0)
(3 9.44652e-17 0)
(3 5.90407e-17 0)
(3 6.74751e-17 0)
(3 5.39801e-17 0)
(3 1.85557e-17 0)
(3 -5.73539e-17 0)
(3 -6.57883e-17 0)
(3 -1.16395e-16 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -5.22932e-17 0)
(3 -3.71113e-17 0)
(3 -1.85557e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.71113e-17 0)
(3 -9.61521e-17 0)
(3 -8.60308e-17 0)
(3 -3.20507e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -5.22932e-17 0)
(3 -5.39801e-17 0)
(3 -5.22932e-17 0)
(3 -3.37376e-17 0)
(3 -5.39801e-17 0)
(3 -1.18081e-17 0)
(3 -3.37376e-17 0)
(3 -1.18081e-17 0)
(3 1.68688e-18 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -9.61521e-17 0)
(3 -7.59095e-17 0)
(3 -1.18081e-16 0)
(3 -1.06273e-16 0)
(3 -9.03733e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 4.72326e-17 0)
(3 4.04851e-17 0)
(3 3.71113e-17 0)
(3 3.54244e-17 0)
(3 1.01213e-17 0)
(3 -6.07276e-17 0)
(3 -5.39801e-17 0)
(3 -1.18081e-16 0)
(3 -7.75964e-17 0)
(3 -1.3495e-17 0)
(3 -1.21455e-16 0)
(3 -1.93991e-16 0)
(3 -2.6484e-16 0)
(3 -2.6484e-16 0)
(3 -2.98577e-16 0)
(3 -2.78335e-16 0)
(3 -2.63153e-16 0)
(3 -1.82183e-16 0)
(3 -2.63153e-16 0)
(3 -2.41224e-16 0)
(3 -2.31102e-16 0)
(3 -2.29415e-16 0)
(3 -2.02425e-16 0)
(3 -2.44597e-16 0)
(3 -3.10386e-16 0)
(3 -2.56406e-16 0)
(3 -1.8387e-16 0)
(3 -1.97365e-16 0)
(3 -1.80496e-16 0)
(3 -1.67001e-16 0)
(3 -1.6194e-16 0)
(3 -2.20981e-16 0)
(3 -2.26042e-16 0)
(3 -1.43385e-16 0)
(3 -2.24355e-16 0)
(3 -2.05799e-16 0)
(3 -1.85557e-16 0)
(3 -1.92835e-16 0)
(3 -5.22932e-17 0)
(3 -9.78389e-17 0)
(3 -7.75964e-17 0)
(3 -7.75964e-17 0)
(3 -7.75964e-17 0)
(3 -6.57883e-17 0)
(3 -2.02425e-17 0)
(3 7.08489e-17 0)
(3 7.42226e-17 0)
(3 5.5667e-17 0)
(3 5.22932e-17 0)
(3 1.3495e-17 0)
(3 1.51819e-17 0)
(3 -3.37376e-18 0)
(3 -2.86769e-17 0)
(3 -3.03638e-17 0)
(3 3.20507e-17 0)
(3 2.02425e-17 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -1.3495e-17 0)
(3 -5.39801e-17 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -1.85557e-17 0)
(3 -1.18081e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.22932e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -7.25358e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -7.12027e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 3.20507e-17 0)
(3 1.85557e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 2.53032e-17 0)
(3 7.42226e-17 0)
(3 5.39801e-17 0)
(3 1.14708e-16 0)
(3 3.37376e-17 0)
(3 3.20507e-17 0)
(3 1.16395e-16 0)
(3 1.11334e-16 0)
(3 1.80496e-16 0)
(3 1.80496e-16 0)
(3 2.22668e-16 0)
(3 2.22668e-16 0)
(3 2.24355e-16 0)
(3 1.60253e-16 0)
(3 2.36163e-16 0)
(3 2.07486e-16 0)
(3 2.04112e-16 0)
(3 1.92304e-16 0)
(3 1.60253e-16 0)
(3 2.00739e-16 0)
(3 2.88456e-16 0)
(3 2.29415e-16 0)
(3 1.78809e-16 0)
(3 1.55193e-16 0)
(3 1.23142e-16 0)
(3 1.16395e-16 0)
(3 1.16395e-16 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 1.18081e-17 0)
(3 9.44652e-17 0)
(3 5.06063e-17 0)
(3 5.73539e-17 0)
(3 5.70008e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -3.54244e-17 0)
(3 1.01213e-17 0)
(3 -1.16395e-16 0)
(3 -1.31577e-16 0)
(3 -9.61521e-17 0)
(3 -9.61521e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 3.03638e-17 0)
(3 3.37376e-17 0)
(3 1.18081e-17 0)
(3 7.59095e-17 0)
(3 2.02425e-17 0)
(3 9.44652e-17 0)
(3 9.78389e-17 0)
(3 1.23142e-16 0)
(3 1.75435e-16 0)
(3 1.63627e-16 0)
(3 1.5688e-16 0)
(3 1.50132e-16 0)
(3 1.24829e-16 0)
(3 1.21455e-16 0)
(3 1.19768e-16 0)
(3 1.19768e-16 0)
(3 9.95258e-17 0)
(3 9.95258e-17 0)
(3 7.92833e-17 0)
(3 7.75964e-17 0)
(3 7.59095e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 1.50132e-16 0)
(3 2.26042e-16 0)
(3 2.27729e-16 0)
(3 2.26042e-16 0)
(3 2.35688e-16 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 9.61521e-17 0)
(3 8.43439e-17 0)
(3 8.09702e-17 0)
(3 6.57883e-17 0)
(3 4.55457e-17 0)
(3 3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -1.3495e-17 0)
(3 -1.18081e-17 0)
(3 -6.41014e-17 0)
(3 -6.9162e-17 0)
(3 -1.16395e-16 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -5.39801e-17 0)
(3 -9.61521e-17 0)
(3 -7.75964e-17 0)
(3 -7.08489e-17 0)
(3 -7.25358e-17 0)
(3 -7.25358e-17 0)
(3 -7.25358e-17 0)
(3 -9.10914e-17 0)
(3 -9.44652e-17 0)
(3 -9.61521e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -1.3495e-17 0)
(3 2.36163e-17 0)
(3 3.37376e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 -6.74751e-18 0)
(3 -1.01213e-17 0)
(3 -8.43439e-18 0)
(3 -1.02741e-17 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 0 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -1.14708e-16 0)
(3 -1.16395e-16 0)
(3 -1.16395e-16 0)
(3 -1.43385e-16 0)
(3 -7.59095e-17 0)
(3 -9.78389e-17 0)
(3 -3.37376e-17 0)
(3 -6.9162e-17 0)
(3 -1.6194e-16 0)
(3 -1.6194e-16 0)
(3 -1.6194e-16 0)
(3 -1.6194e-16 0)
(3 -1.40011e-16 0)
(3 -1.55193e-16 0)
(3 -1.82183e-16 0)
(3 -1.82183e-16 0)
(3 -1.70375e-16 0)
(3 -1.65314e-16 0)
(3 -1.51819e-16 0)
(3 -1.01213e-16 0)
(3 -1.0796e-16 0)
(3 -1.18081e-16 0)
(3 -1.18081e-16 0)
(3 -1.72062e-16 0)
(3 -2.44597e-16 0)
(3 -2.9183e-16 0)
(3 -2.66527e-16 0)
(3 -2.6916e-16 0)
(3 0 0)
(3 0 0)
(3 -5.39801e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -8.09702e-17 0)
(3 -9.61521e-17 0)
(3 -3.54244e-17 0)
(3 -3.20507e-17 0)
(3 -1.51819e-17 0)
(3 -1.68688e-18 0)
(3 6.74751e-18 0)
(3 -1.01213e-17 0)
(3 2.19294e-17 0)
(3 -1.18081e-17 0)
(3 -7.42226e-17 0)
(3 -9.78389e-17 0)
(3 -1.16395e-16 0)
(3 -3.54244e-17 0)
(3 -3.54244e-17 0)
(3 -3.71113e-17 0)
(3 -4.38588e-17 0)
(3 -3.54244e-17 0)
(3 -4.72326e-17 0)
(3 -7.92833e-17 0)
(3 -1.40011e-16 0)
(3 -1.40011e-16 0)
(3 -1.8387e-16 0)
(3 -1.50132e-16 0)
(3 -1.95678e-16 0)
(3 -3.12072e-16 0)
(3 -3.13759e-16 0)
(3 -2.9183e-16 0)
(3 -3.32315e-16 0)
(3 -2.39537e-16 0)
(3 -1.70375e-16 0)
(3 -1.16395e-16 0)
(3 -1.41698e-16 0)
(3 -1.72287e-16 0)
(3 0 0)
(3 0 0)
(3 1.18081e-17 0)
(3 -1.18081e-17 0)
(3 4.2172e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 9.61521e-17 0)
(3 7.59095e-17 0)
(3 7.75964e-17 0)
(3 5.73539e-17 0)
(3 5.06063e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 1.3495e-17 0)
(3 1.18081e-17 0)
(3 -1.51819e-17 0)
(3 -7.42226e-17 0)
(3 -6.07276e-17 0)
(3 -4.89195e-17 0)
(3 -5.22932e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -1.51819e-17 0)
(3 -1.3495e-17 0)
(3 -1.3495e-17 0)
(3 -1.3495e-17 0)
(3 7.42226e-17 0)
(3 -5.39801e-17 0)
(3 -5.22932e-17 0)
(3 -3.37376e-17 0)
(3 -4.72326e-17 0)
(3 -5.39801e-17 0)
(3 -5.22932e-17 0)
(3 -4.55457e-17 0)
(3 -5.22932e-17 0)
(3 -4.28523e-17 0)
(3 0 0)
(3 0 0)
(3 3.37376e-17 0)
(3 6.41014e-17 0)
(3 6.24145e-17 0)
(3 5.39801e-17 0)
(3 4.38588e-17 0)
(3 1.62935e-32 0)
(3 -7.42226e-17 0)
(3 -3.20507e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -7.25358e-17 0)
(3 -7.25358e-17 0)
(3 -1.51819e-17 0)
(3 2.86769e-17 0)
(3 9.95258e-17 0)
(3 1.82183e-16 0)
(3 1.40011e-16 0)
(3 1.28203e-16 0)
(3 1.24829e-16 0)
(3 1.23142e-16 0)
(3 7.59095e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 1.31577e-16 0)
(3 1.18081e-16 0)
(3 1.82183e-16 0)
(3 2.47971e-16 0)
(3 2.47971e-16 0)
(3 2.29415e-16 0)
(3 2.14234e-16 0)
(3 1.68688e-16 0)
(3 7.92833e-17 0)
(3 7.42226e-17 0)
(3 7.42226e-17 0)
(3 7.11415e-17 0)
(3 0 0)
(3 0 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -5.73539e-17 0)
(3 -1.31577e-16 0)
(3 -8.77177e-17 0)
(3 -1.31577e-16 0)
(3 5.06063e-18 0)
(3 -5.73539e-17 0)
(3 7.42226e-17 0)
(3 7.59095e-17 0)
(3 7.42226e-17 0)
(3 1.3495e-16 0)
(3 7.59095e-17 0)
(3 1.14708e-16 0)
(3 1.6194e-16 0)
(3 9.78389e-17 0)
(3 2.04112e-16 0)
(3 2.04112e-16 0)
(3 2.02425e-16 0)
(3 2.24355e-16 0)
(3 2.05799e-16 0)
(3 2.05799e-16 0)
(3 2.04112e-16 0)
(3 2.02425e-16 0)
(3 1.77122e-16 0)
(3 1.90617e-16 0)
(3 1.73748e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.6194e-16 0)
(3 1.60253e-16 0)
(3 2.02425e-16 0)
(3 2.90143e-16 0)
(3 2.78335e-16 0)
(3 2.71587e-16 0)
(3 2.70319e-16 0)
(3 -5.39801e-17 0)
(3 -4.72326e-17 0)
(3 -3.87982e-17 0)
(3 -3.54244e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -8.43439e-18 0)
(3 2.86769e-17 0)
(3 9.44652e-17 0)
(3 1.14708e-16 0)
(3 1.18081e-16 0)
(3 1.45072e-16 0)
(3 2.02425e-16 0)
(3 1.82183e-16 0)
(3 2.46284e-16 0)
(3 1.95678e-16 0)
(3 1.77122e-16 0)
(3 1.01213e-16 0)
(3 1.029e-16 0)
(3 5.39801e-17 0)
(3 7.75964e-17 0)
(3 1.60253e-16 0)
(3 1.53506e-16 0)
(3 1.43385e-16 0)
(3 1.40011e-16 0)
(3 1.77122e-16 0)
(3 2.66527e-16 0)
(3 2.46284e-16 0)
(3 2.46284e-16 0)
(3 2.29415e-16 0)
(3 2.20981e-16 0)
(3 2.24355e-16 0)
(3 2.04112e-16 0)
(3 2.02425e-16 0)
(3 2.24355e-16 0)
(3 2.22668e-16 0)
(3 2.09173e-16 0)
(3 1.90617e-16 0)
(3 1.70375e-16 0)
(3 1.50003e-16 0)
(3 4.55457e-17 0)
(3 8.2657e-17 0)
(3 7.92833e-17 0)
(3 8.77177e-17 0)
(3 8.60308e-17 0)
(3 8.94045e-17 0)
(3 7.59095e-17 0)
(3 7.59095e-17 0)
(3 7.42226e-17 0)
(3 6.24145e-17 0)
(3 -3.37376e-18 0)
(3 -1.18081e-17 0)
(3 -5.22932e-17 0)
(3 -1.01213e-17 0)
(3 2.86769e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -8.94045e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -1.2989e-16 0)
(3 -1.19768e-16 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -7.75964e-17 0)
(3 -7.59095e-17 0)
(3 -5.90407e-17 0)
(3 -4.2172e-17 0)
(3 -1.68688e-18 0)
(3 8.43439e-18 0)
(3 2.36163e-17 0)
(3 9.78389e-17 0)
(3 8.60308e-17 0)
(3 5.5667e-17 0)
(3 5.73539e-17 0)
(3 1.68688e-17 0)
(3 -5.39801e-17 0)
(3 -3.20507e-17 0)
(3 -3.37376e-17 0)
(3 -3.47332e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 5.06063e-17 0)
(3 5.5667e-17 0)
(3 5.5667e-17 0)
(3 5.22932e-17 0)
(3 2.69901e-17 0)
(3 -3.03638e-17 0)
(3 -6.9162e-17 0)
(3 -1.16395e-16 0)
(3 -1.18081e-17 0)
(3 -6.57883e-17 0)
(3 -9.44652e-17 0)
(3 -4.2172e-17 0)
(3 -1.28203e-16 0)
(3 -1.18081e-16 0)
(3 -2.00739e-16 0)
(3 -1.80496e-16 0)
(3 -2.24355e-16 0)
(3 -1.8387e-16 0)
(3 -1.06273e-16 0)
(3 -2.56406e-16 0)
(3 -2.24355e-16 0)
(3 -2.24355e-16 0)
(3 -2.02425e-16 0)
(3 -2.39537e-16 0)
(3 -3.10386e-16 0)
(3 -2.27729e-16 0)
(3 -2.44597e-16 0)
(3 -1.87243e-16 0)
(3 -1.60253e-16 0)
(3 -2.02425e-16 0)
(3 -1.90617e-16 0)
(3 -1.45072e-16 0)
(3 -1.58567e-16 0)
(3 -1.16395e-16 0)
(3 -1.16395e-16 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -3.34947e-17 0)
(3 0 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-18 0)
(3 3.37376e-18 0)
(3 3.37376e-17 0)
(3 7.42226e-17 0)
(3 1.40011e-16 0)
(3 1.18081e-16 0)
(3 1.41698e-16 0)
(3 1.28203e-16 0)
(3 9.44652e-17 0)
(3 5.22932e-17 0)
(3 1.51819e-17 0)
(3 8.43439e-18 0)
(3 1.01213e-17 0)
(3 -1.68688e-18 0)
(3 -4.2172e-17 0)
(3 -5.90407e-17 0)
(3 -7.25358e-17 0)
(3 -7.25358e-17 0)
(3 -9.10914e-17 0)
(3 -9.61521e-17 0)
(3 -5.22932e-17 0)
(3 -6.57883e-17 0)
(3 -8.43439e-17 0)
(3 -9.61521e-17 0)
(3 -5.39801e-17 0)
(3 -9.61521e-17 0)
(3 -6.74751e-18 0)
(3 -1.36637e-16 0)
(3 -1.18081e-16 0)
(3 -1.16395e-16 0)
(3 -1.16395e-16 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -3.87982e-17 0)
(3 -5.31426e-34 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 2.69901e-17 0)
(3 -1.3495e-17 0)
(3 5.22932e-17 0)
(3 3.37376e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 3.20507e-17 0)
(3 -5.22932e-17 0)
(3 -3.87982e-17 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -6.24145e-17 0)
(3 -3.37376e-17 0)
(3 -6.9162e-17 0)
(3 -1.40011e-16 0)
(3 -1.21455e-16 0)
(3 -1.0796e-16 0)
(3 -7.42226e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -1.16395e-16 0)
(3 -9.95258e-17 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -9.61521e-17 0)
(3 -9.78389e-17 0)
(3 -1.40011e-16 0)
(3 -9.78389e-17 0)
(3 -1.60253e-16 0)
(3 -9.10914e-17 0)
(3 1.98579e-18 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -9.10914e-17 0)
(3 -9.27783e-17 0)
(3 -1.67001e-16 0)
(3 -9.10914e-17 0)
(3 -1.60253e-16 0)
(3 -1.53506e-16 0)
(3 -1.45072e-16 0)
(3 -1.28203e-16 0)
(3 -1.04586e-16 0)
(3 -8.94045e-17 0)
(3 3.37376e-18 0)
(3 8.43439e-18 0)
(3 8.43439e-18 0)
(3 7.08489e-17 0)
(3 7.59095e-17 0)
(3 1.24829e-16 0)
(3 1.28203e-16 0)
(3 1.58567e-16 0)
(3 2.24355e-16 0)
(3 2.12547e-16 0)
(3 1.90617e-16 0)
(3 1.73748e-16 0)
(3 1.43385e-16 0)
(3 1.38324e-16 0)
(3 1.38324e-16 0)
(3 1.24829e-16 0)
(3 9.78389e-17 0)
(3 9.78389e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.78389e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.61521e-17 0)
(3 9.78389e-17 0)
(3 1.16395e-16 0)
(3 1.09647e-16 0)
(3 4.18666e-17 0)
(3 0 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -5.39801e-17 0)
(3 -4.2172e-17 0)
(3 -1.01213e-17 0)
(3 4.55457e-17 0)
(3 3.20507e-17 0)
(3 7.42226e-17 0)
(3 5.22932e-17 0)
(3 9.44652e-17 0)
(3 9.44652e-17 0)
(3 9.44652e-17 0)
(3 1.50132e-16 0)
(3 1.51819e-16 0)
(3 2.02425e-16 0)
(3 1.85557e-16 0)
(3 1.80496e-16 0)
(3 2.29415e-16 0)
(3 2.4291e-16 0)
(3 2.36163e-16 0)
(3 2.26042e-16 0)
(3 2.26042e-16 0)
(3 2.26042e-16 0)
(3 2.26042e-16 0)
(3 2.26042e-16 0)
(3 2.46284e-16 0)
(3 2.47971e-16 0)
(3 2.46284e-16 0)
(3 2.26042e-16 0)
(3 2.24355e-16 0)
(3 2.26042e-16 0)
(3 2.24355e-16 0)
(3 2.14234e-16 0)
(3 1.41698e-16 0)
(3 2.02425e-16 0)
(3 1.41698e-16 0)
(3 3.4165e-17 0)
(3 0 0)
(3 1.18081e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 8.60308e-17 0)
(3 1.6194e-16 0)
(3 1.36637e-16 0)
(3 7.25358e-17 0)
(3 6.24145e-17 0)
(3 5.90407e-17 0)
(3 5.73539e-17 0)
(3 3.54244e-17 0)
(3 7.59095e-17 0)
(3 7.59095e-17 0)
(3 3.37376e-17 0)
(3 3.20507e-17 0)
(3 3.37376e-17 0)
(3 5.06063e-17 0)
(3 5.22932e-17 0)
(3 5.06063e-18 0)
(3 1.68688e-18 0)
(3 -3.37376e-18 0)
(3 -1.01213e-17 0)
(3 -2.86769e-17 0)
(3 -1.68688e-17 0)
(3 -1.85557e-17 0)
(3 3.20507e-17 0)
(3 8.43439e-18 0)
(3 1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -4.2172e-17 0)
(3 -5.5667e-17 0)
(3 -1.16395e-16 0)
(3 -5.90407e-17 0)
(3 3.17002e-17 0)
(3 7.08489e-17 0)
(3 7.59095e-17 0)
(3 5.90407e-17 0)
(3 5.22932e-17 0)
(3 8.94045e-17 0)
(3 9.27783e-17 0)
(3 1.06273e-16 0)
(3 8.09702e-17 0)
(3 7.92833e-17 0)
(3 7.59095e-17 0)
(3 9.61521e-17 0)
(3 7.59095e-17 0)
(3 -3.03638e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -1.60253e-16 0)
(3 -1.60253e-16 0)
(3 -1.50132e-16 0)
(3 -2.24355e-16 0)
(3 -2.24355e-16 0)
(3 -2.22668e-16 0)
(3 -2.22668e-16 0)
(3 -2.41224e-16 0)
(3 -2.44597e-16 0)
(3 -2.47971e-16 0)
(3 -2.34476e-16 0)
(3 -2.09173e-16 0)
(3 -2.04112e-16 0)
(3 -2.24355e-16 0)
(3 -2.46284e-16 0)
(3 -2.34476e-16 0)
(3 -2.29415e-16 0)
(3 -2.27729e-16 0)
(3 -1.78809e-16 0)
(3 -1.70375e-16 0)
(3 -1.6194e-16 0)
(3 -1.6194e-16 0)
(3 -1.86207e-16 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 1.01213e-17 0)
(3 -1.68688e-18 0)
(3 3.03638e-17 0)
(3 -2.19294e-17 0)
(3 -1.6194e-16 0)
(3 -1.21455e-16 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -1.16395e-16 0)
(3 -1.04586e-16 0)
(3 -3.20507e-17 0)
(3 -7.42226e-17 0)
(3 -5.5667e-17 0)
(3 -1.18081e-17 0)
(3 -1.01213e-17 0)
(3 -2.36163e-17 0)
(3 -4.2172e-17 0)
(3 -1.14708e-16 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -9.44652e-17 0)
(3 -6.74751e-17 0)
(3 -5.90407e-17 0)
(3 -4.72326e-17 0)
(3 -6.24145e-17 0)
(3 -5.73539e-17 0)
(3 -5.5667e-17 0)
(3 -5.5667e-17 0)
(3 -5.5667e-17 0)
(3 -4.2172e-17 0)
(3 -3.20507e-17 0)
(3 -6.9162e-17 0)
(3 -1.55908e-16 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 1.01213e-17 0)
(3 -2.36163e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -4.89195e-17 0)
(3 -1.18081e-16 0)
(3 -1.19768e-16 0)
(3 -9.78389e-17 0)
(3 -9.61521e-17 0)
(3 -9.61521e-17 0)
(3 -9.61521e-17 0)
(3 -5.22932e-17 0)
(3 -5.22932e-17 0)
(3 -5.06063e-17 0)
(3 5.06063e-17 0)
(3 5.22932e-17 0)
(3 9.44652e-17 0)
(3 7.92833e-17 0)
(3 7.08489e-17 0)
(3 1.16395e-16 0)
(3 1.18081e-16 0)
(3 1.16395e-16 0)
(3 1.75435e-16 0)
(3 1.70375e-16 0)
(3 1.50132e-16 0)
(3 1.16395e-16 0)
(3 1.16395e-16 0)
(3 1.16395e-16 0)
(3 1.16395e-16 0)
(3 1.11334e-16 0)
(3 1.16395e-16 0)
(3 1.09647e-16 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 -2.36163e-17 0)
(3 -3.03638e-17 0)
(3 -3.69158e-17 0)
(3 7.75964e-17 0)
(3 7.59095e-17 0)
(3 7.42226e-17 0)
(3 7.59095e-17 0)
(3 1.04586e-16 0)
(3 7.75964e-17 0)
(3 1.18081e-16 0)
(3 9.10914e-17 0)
(3 3.71113e-17 0)
(3 1.18081e-17 0)
(3 5.06063e-17 0)
(3 4.2172e-17 0)
(3 -8.43439e-18 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -7.42226e-17 0)
(3 -5.22932e-17 0)
(3 -7.59095e-17 0)
(3 -7.59095e-17 0)
(3 -5.22932e-17 0)
(3 -7.59095e-17 0)
(3 -5.73539e-17 0)
(3 -4.04851e-17 0)
(3 -1.85557e-17 0)
(3 -1.85557e-17 0)
(3 -1.01213e-17 0)
(3 -1.01213e-17 0)
(3 1.01213e-17 0)
(3 -3.03638e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 1.18081e-17 0)
(3 6.74751e-18 0)
(3 4.2172e-17 0)
(3 7.08489e-17 0)
(3 6.42785e-17 0)
(3 -1.18081e-17 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -7.08489e-17 0)
(3 -6.41014e-17 0)
(3 -5.90407e-17 0)
(3 -3.37376e-17 0)
(3 -1.01213e-17 0)
(3 7.42226e-17 0)
(3 7.42226e-17 0)
(3 5.39801e-17 0)
(3 5.06063e-17 0)
(3 9.61521e-17 0)
(3 8.2657e-17 0)
(3 5.22932e-17 0)
(3 9.61521e-17 0)
(3 8.43439e-17 0)
(3 6.24145e-17 0)
(3 4.55457e-17 0)
(3 1.18081e-17 0)
(3 5.39801e-17 0)
(3 9.27783e-17 0)
(3 -1.18081e-17 0)
(3 -3.03638e-17 0)
(3 -3.03638e-17 0)
(3 -9.61521e-17 0)
(3 -9.44652e-17 0)
(3 -9.44652e-17 0)
(3 -9.61521e-17 0)
(3 -7.59095e-17 0)
(3 -9.27783e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 6.74751e-18 0)
(3 1.18081e-17 0)
(3 9.10914e-17 0)
(3 9.10914e-17 0)
(3 9.06233e-17 0)
(3 -6.24145e-17 0)
(3 -5.90407e-17 0)
(3 -5.73539e-17 0)
(3 -5.39801e-17 0)
(3 -7.59095e-17 0)
(3 -6.74751e-17 0)
(3 -7.59095e-17 0)
(3 -6.41014e-17 0)
(3 -4.55457e-17 0)
(3 -3.37376e-17 0)
(3 -7.42226e-17 0)
(3 -7.42226e-17 0)
(3 -6.07276e-17 0)
(3 -4.38588e-17 0)
(3 -1.18081e-17 0)
(3 -1.3495e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 8.43439e-18 0)
(3 -5.06063e-18 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 -3.20507e-17 0)
(3 -3.20507e-17 0)
(3 -1.3495e-17 0)
(3 -1.3495e-17 0)
(3 -1.3495e-17 0)
(3 -1.3495e-17 0)
(3 1.3495e-17 0)
(3 5.39801e-17 0)
(3 3.20507e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 7.59095e-17 0)
(3 1.01213e-17 0)
(3 1.51819e-17 0)
(3 -2.53032e-17 0)
(3 -3.37376e-17 0)
(3 -3.95355e-17 0)
(3 6.24145e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 4.72326e-17 0)
(3 7.59095e-17 0)
(3 6.07276e-17 0)
(3 7.59095e-17 0)
(3 5.5667e-17 0)
(3 3.54244e-17 0)
(3 3.37376e-17 0)
(3 5.22932e-17 0)
(3 5.22932e-17 0)
(3 -2.86769e-17 0)
(3 -3.20507e-17 0)
(3 -1.01213e-17 0)
(3 -7.42226e-17 0)
(3 -7.59095e-17 0)
(3 -1.36637e-16 0)
(3 -1.18081e-16 0)
(3 -1.43385e-16 0)
(3 -2.00739e-16 0)
(3 -1.82183e-16 0)
(3 -1.65314e-16 0)
(3 -1.60253e-16 0)
(3 -1.01213e-16 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -9.78389e-17 0)
(3 -7.59095e-17 0)
(3 -1.01213e-16 0)
(3 -3.54244e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 -1.51819e-17 0)
(3 -1.18081e-17 0)
(3 -1.3495e-16 0)
(3 -1.3495e-16 0)
(3 -1.40611e-16 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -3.37376e-17 0)
(3 -4.2172e-17 0)
(3 -4.2172e-17 0)
(3 -4.55457e-17 0)
(3 -3.37376e-17 0)
(3 -2.19294e-17 0)
(3 3.20507e-17 0)
(3 1.01213e-17 0)
(3 -1.09372e-31 0)
(3 -3.37376e-17 0)
(3 3.03638e-17 0)
(3 1.01213e-17 0)
(3 -3.20507e-17 0)
(3 6.74751e-18 0)
(3 6.74751e-18 0)
(3 3.20507e-17 0)
(3 8.43439e-18 0)
(3 -1.18081e-17 0)
(3 3.20507e-17 0)
(3 6.74751e-18 0)
(3 2.36163e-17 0)
(3 -1.18081e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 1.01213e-17 0)
(3 -3.37376e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -1.18081e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 -5.39801e-17 0)
(3 1.68688e-17 0)
(3 1.18081e-17 0)
(3 1.59131e-17 0)
(3 -4.04851e-17 0)
(3 -9.78389e-17 0)
(3 -9.44652e-17 0)
(3 -1.06273e-16 0)
(3 -1.45072e-16 0)
(3 -1.67001e-16 0)
(3 -2.26042e-16 0)
(3 -2.14234e-16 0)
(3 -1.82183e-16 0)
(3 -1.87243e-16 0)
(3 -2.26042e-16 0)
(3 -2.20981e-16 0)
(3 -1.65314e-16 0)
(3 -1.18081e-16 0)
(3 -1.40011e-16 0)
(3 -8.09702e-17 0)
(3 -7.75964e-17 0)
(3 -1.01213e-17 0)
(3 -1.01213e-17 0)
(3 -1.18081e-17 0)
(3 2.53032e-17 0)
(3 3.20507e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 1.18081e-17 0)
(3 5.06063e-17 0)
(3 5.22932e-17 0)
(3 5.39801e-17 0)
(3 5.39801e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 3.37376e-17 0)
(3 3.20507e-17 0)
(3 -3.37376e-17 0)
(3 -3.37376e-17 0)
(3 4.89195e-17 0)
(3 5.5667e-17 0)
(3 5.5667e-17 0)
(2.96822 0.00434247 0)
(2.92481 0.0329211 0)
(2.88536 0.0390814 0)
(2.84615 0.0767338 0)
(2.80182 0.156074 0)
(2.76557 0.190355 0)
(2.74476 0.19822 0)
(2.69994 0.272706 0)
(2.66485 0.346895 0)
(2.65139 0.358195 0)
(2.62198 0.403615 0)
(2.58356 0.459153 0)
(2.57987 0.488974 0)
(2.54999 0.53119 0)
(2.5283 0.553219 0)
(2.51898 0.592628 0)
(2.50116 0.632748 0)
(2.4836 0.662734 0)
(2.47827 0.680136 0)
(2.48819 0.699731 0)
(2.50222 0.714795 0)
(2.50987 0.72592 0)
(2.51647 0.720257 0)
(2.52261 0.710696 0)
(2.52812 0.711317 0)
(2.53423 0.714374 0)
(2.53773 0.714369 0)
(2.53793 0.707833 0)
(2.53903 0.69704 0)
(2.54224 0.692278 0)
(2.54651 0.690151 0)
(2.54982 0.687291 0)
(2.55089 0.68022 0)
(2.55273 0.674953 0)
(2.55333 0.675612 0)
(2.55139 0.67674 0)
(2.54932 0.676968 0)
(2.54829 0.677031 0)
(2.54902 0.678163 0)
(2.55134 0.679827 0)
(2.55415 0.67979 0)
(2.5561 0.680153 0)
(2.55573 0.680594 0)
(2.55451 0.680664 0)
(2.55255 0.680831 0)
(2.55136 0.68101 0)
(2.55014 0.681109 0)
(2.55004 0.681116 0)
(2.55155 0.681228 0)
(2.55294 0.68153 0)
(2.55306 0.681676 0)
(2.55297 0.681781 0)
(2.55266 0.682393 0)
(2.5519 0.683602 0)
(2.55161 0.684344 0)
(2.55183 0.684451 0)
(2.55247 0.684519 0)
(2.5537 0.684534 0)
(2.55445 0.684498 0)
(2.55481 0.684523 0)
(2.55501 0.684456 0)
(2.55476 0.684209 0)
(2.55454 0.684159 0)
(2.55464 0.684279 0)
(2.55469 0.684384 0)
(2.55485 0.684385 0)
(2.55528 0.684284 0)
(2.55575 0.684278 0)
(2.55594 0.68434 0)
(2.556 0.68438 0)
(2.55606 0.684454 0)
(2.55605 0.684559 0)
(2.55595 0.684741 0)
(2.55586 0.684886 0)
(2.55583 0.684931 0)
(2.55586 0.684919 0)
(2.55603 0.684844 0)
(2.5563 0.684805 0)
(2.55651 0.684816 0)
(2.5566 0.684841 0)
(2.99877 0.00141747 0)
(2.99464 0.00677509 0)
(2.98664 0.0181827 0)
(2.97111 0.0410116 0)
(2.95017 0.0731143 0)
(2.92068 0.127124 0)
(2.88906 0.186962 0)
(2.85546 0.241942 0)
(2.79286 0.347251 0)
(2.75863 0.427999 0)
(2.71948 0.50777 0)
(2.64186 0.626536 0)
(2.62571 0.680716 0)
(2.56874 0.763705 0)
(2.50921 0.843904 0)
(2.4868 0.863649 0)
(2.46386 0.882024 0)
(2.45009 0.886487 0)
(2.4329 0.862345 0)
(2.43594 0.827724 0)
(2.44552 0.806325 0)
(2.46696 0.791615 0)
(2.49651 0.771965 0)
(2.50675 0.75379 0)
(2.52528 0.73436 0)
(2.54081 0.715349 0)
(2.54696 0.699084 0)
(2.55067 0.688208 0)
(2.55886 0.673476 0)
(2.56356 0.662121 0)
(2.56487 0.661276 0)
(2.56712 0.663481 0)
(2.57035 0.662961 0)
(2.57272 0.663989 0)
(2.57355 0.667629 0)
(2.57197 0.673167 0)
(2.56759 0.677604 0)
(2.56484 0.679482 0)
(2.56363 0.680516 0)
(2.56264 0.682815 0)
(2.56262 0.68301 0)
(2.56281 0.679899 0)
(2.56249 0.678596 0)
(2.56208 0.678646 0)
(2.55999 0.678859 0)
(2.55872 0.67964 0)
(2.55727 0.681262 0)
(2.55697 0.682501 0)
(2.55743 0.683528 0)
(2.55813 0.684688 0)
(2.5581 0.685427 0)
(2.55782 0.685542 0)
(2.55748 0.685687 0)
(2.55696 0.68663 0)
(2.55671 0.687355 0)
(2.55661 0.687492 0)
(2.55671 0.687286 0)
(2.55684 0.686531 0)
(2.55698 0.685838 0)
(2.55716 0.685266 0)
(2.5574 0.684521 0)
(2.55775 0.683808 0)
(2.55786 0.683582 0)
(2.5581 0.683727 0)
(2.55829 0.684184 0)
(2.55827 0.68477 0)
(2.55808 0.685102 0)
(2.55802 0.685129 0)
(2.5581 0.685051 0)
(2.55827 0.68494 0)
(2.5585 0.684942 0)
(2.55866 0.685112 0)
(2.55867 0.685313 0)
(2.55858 0.685495 0)
(2.55833 0.685744 0)
(2.55796 0.685875 0)
(2.55778 0.685802 0)
(2.55776 0.685592 0)
(2.55789 0.68525 0)
(2.55826 0.685044 0)
(3 8.63147e-08 0)
(3 5.36453e-06 0)
(2.99998 2.94794e-05 0)
(2.9999 0.0001227 0)
(2.99965 0.000486112 0)
(2.99918 0.00125794 0)
(2.99835 0.00266488 0)
(2.99612 0.00607823 0)
(2.99172 0.0135155 0)
(2.98614 0.0249334 0)
(2.97572 0.0441867 0)
(2.958 0.0810985 0)
(2.9387 0.123707 0)
(2.90776 0.189537 0)
(2.86587 0.295067 0)
(2.84528 0.356365 0)
(2.80628 0.448389 0)
(2.73013 0.586893 0)
(2.71797 0.615323 0)
(2.67898 0.658424 0)
(2.6083 0.71108 0)
(2.586 0.721226 0)
(2.56646 0.727371 0)
(2.56127 0.729767 0)
(2.56121 0.728397 0)
(2.56116 0.725436 0)
(2.56206 0.721111 0)
(2.56143 0.71984 0)
(2.55944 0.718605 0)
(2.55935 0.71812 0)
(2.56296 0.716019 0)
(2.56938 0.714237 0)
(2.57653 0.70397 0)
(2.57888 0.69699 0)
(2.57865 0.694957 0)
(2.57826 0.692066 0)
(2.57772 0.68509 0)
(2.57855 0.681439 0)
(2.57837 0.680751 0)
(2.57712 0.680066 0)
(2.57578 0.678442 0)
(2.57478 0.676405 0)
(2.57466 0.676525 0)
(2.57454 0.677462 0)
(2.57396 0.679224 0)
(2.57291 0.680971 0)
(2.57286 0.683595 0)
(2.57197 0.685818 0)
(2.57075 0.688284 0)
(2.57038 0.689676 0)
(2.56927 0.6895 0)
(2.56811 0.688308 0)
(2.56745 0.687321 0)
(2.56676 0.687178 0)
(2.56653 0.687148 0)
(2.56588 0.687009 0)
(2.56551 0.686965 0)
(2.56498 0.686874 0)
(2.56418 0.686731 0)
(2.56361 0.686407 0)
(2.56355 0.686087 0)
(2.56376 0.685913 0)
(2.56434 0.685928 0)
(2.56473 0.68613 0)
(2.56522 0.686593 0)
(2.56537 0.687095 0)
(2.56487 0.68744 0)
(2.56406 0.687559 0)
(2.56373 0.687447 0)
(2.56356 0.687176 0)
(2.56356 0.686636 0)
(2.56397 0.686181 0)
(2.56418 0.686126 0)
(2.56413 0.686252 0)
(2.564 0.686434 0)
(2.56364 0.686708 0)
(2.56302 0.686997 0)
(2.56258 0.687112 0)
(2.56246 0.687064 0)
(2.56253 0.686655 0)
(3 -7.66664e-11 0)
(3 1.45161e-10 0)
(3 3.37735e-09 0)
(3 -5.75697e-08 0)
(3 6.50712e-08 0)
(3 4.99001e-07 0)
(3 1.54143e-06 0)
(2.99999 6.69042e-06 0)
(2.99998 2.94548e-05 0)
(2.99994 9.64695e-05 0)
(2.99983 0.000286388 0)
(2.99951 0.00083548 0)
(2.99872 0.00230577 0)
(2.99677 0.00569133 0)
(2.99175 0.015338 0)
(2.98291 0.0346511 0)
(2.96337 0.0712621 0)
(2.91493 0.163263 0)
(2.88482 0.242491 0)
(2.83113 0.348276 0)
(2.72955 0.520255 0)
(2.70244 0.556852 0)
(2.65998 0.61904 0)
(2.58202 0.730206 0)
(2.56259 0.750934 0)
(2.55241 0.746028 0)
(2.54965 0.765589 0)
(2.54203 0.772951 0)
(2.54335 0.766812 0)
(2.54423 0.758993 0)
(2.54822 0.754013 0)
(2.553 0.743209 0)
(2.55895 0.7289 0)
(2.5698 0.714698 0)
(2.57373 0.702248 0)
(2.57389 0.694196 0)
(2.58202 0.679146 0)
(2.58386 0.67178 0)
(2.58358 0.670117 0)
(2.58454 0.672422 0)
(2.58537 0.677822 0)
(2.58372 0.680651 0)
(2.58183 0.68164 0)
(2.58161 0.68492 0)
(2.58196 0.685545 0)
(2.58231 0.684913 0)
(2.58284 0.684683 0)
(2.58115 0.685588 0)
(2.57932 0.686873 0)
(2.57749 0.68735 0)
(2.57549 0.686909 0)
(2.57378 0.685951 0)
(2.57285 0.685326 0)
(2.57311 0.685355 0)
(2.57393 0.685778 0)
(2.57383 0.686215 0)
(2.57357 0.686756 0)
(2.57289 0.687604 0)
(2.57173 0.689112 0)
(2.57046 0.690573 0)
(2.57009 0.690818 0)
(2.57002 0.690509 0)
(2.57015 0.689714 0)
(2.5708 0.6891 0)
(2.57127 0.688876 0)
(2.57116 0.688718 0)
(2.57071 0.688429 0)
(2.56978 0.688209 0)
(2.56902 0.688356 0)
(2.56877 0.688406 0)
(2.56868 0.688228 0)
(2.56895 0.687844 0)
(2.5696 0.687501 0)
(2.56997 0.687366 0)
(2.57 0.687402 0)
(2.56983 0.68766 0)
(2.56918 0.688198 0)
(2.56832 0.688729 0)
(2.56792 0.68903 0)
(2.56778 0.688853 0)
(3 -1.16201e-12 0)
(3 1.04901e-13 0)
(3 -8.32137e-11 0)
(3 -1.35655e-09 0)
(3 -7.52175e-10 0)
(3 -3.96165e-10 0)
(3 -5.5649e-10 0)
(3 -3.11907e-10 0)
(3 2.58013e-09 0)
(3 -5.1184e-08 0)
(3 1.78892e-07 0)
(3 1.5442e-07 0)
(3 4.8924e-07 0)
(3 4.84685e-06 0)
(2.99998 2.34853e-05 0)
(2.99993 0.000100648 0)
(2.99968 0.000441151 0)
(2.99869 0.001819 0)
(2.99604 0.00606993 0)
(2.98757 0.0178375 0)
(2.96634 0.051086 0)
(2.93513 0.103702 0)
(2.88377 0.180673 0)
(2.80342 0.31786 0)
(2.76566 0.38365 0)
(2.72347 0.451384 0)
(2.62586 0.603043 0)
(2.6045 0.654493 0)
(2.61127 0.633304 0)
(2.59128 0.664237 0)
(2.57577 0.698065 0)
(2.56615 0.701522 0)
(2.56367 0.699549 0)
(2.56352 0.700716 0)
(2.56141 0.703012 0)
(2.56309 0.700463 0)
(2.56549 0.698061 0)
(2.56551 0.700114 0)
(2.56906 0.700831 0)
(2.57492 0.698173 0)
(2.57976 0.700955 0)
(2.57978 0.698939 0)
(2.57681 0.693902 0)
(2.57652 0.691994 0)
(2.57697 0.690811 0)
(2.57813 0.68852 0)
(2.58047 0.684493 0)
(2.58045 0.680519 0)
(2.57955 0.680121 0)
(2.57853 0.680301 0)
(2.57646 0.680731 0)
(2.57501 0.68196 0)
(2.5744 0.682959 0)
(2.57459 0.684292 0)
(2.57604 0.686013 0)
(2.57738 0.687291 0)
(2.57733 0.688344 0)
(2.57628 0.689304 0)
(2.57448 0.690163 0)
(2.57231 0.690894 0)
(2.5714 0.691332 0)
(2.57088 0.691684 0)
(2.57051 0.691692 0)
(2.57088 0.690625 0)
(2.57173 0.68928 0)
(2.57182 0.688545 0)
(2.57163 0.688306 0)
(2.57117 0.688001 0)
(2.57072 0.688145 0)
(2.57051 0.688926 0)
(2.5704 0.68975 0)
(2.57057 0.690023 0)
(2.57086 0.689874 0)
(2.57133 0.689358 0)
(2.57166 0.688779 0)
(2.57162 0.6882 0)
(2.57138 0.687988 0)
(2.57105 0.688023 0)
(2.57033 0.688412 0)
(2.56978 0.688766 0)
(3 7.76724e-16 0)
(3 -3.34762e-14 0)
(3 -1.83585e-12 0)
(3 -4.04406e-12 0)
(3 -2.692e-11 0)
(3 -5.1573e-11 0)
(3 -8.06423e-11 0)
(3 -1.62522e-10 0)
(3 -5.712e-10 0)
(3 -5.46774e-10 0)
(3 -4.97315e-10 0)
(3 -5.53368e-10 0)
(3 -1.08655e-09 0)
(3 -1.41495e-09 0)
(3 1.43215e-09 0)
(3 -6.13273e-08 0)
(3 1.14075e-07 0)
(3 5.3736e-07 0)
(3 2.94954e-06 0)
(2.99997 3.26866e-05 0)
(2.99983 0.000213257 0)
(2.99932 0.00093306 0)
(2.99731 0.00355407 0)
(2.991 0.0120504 0)
(2.97744 0.033214 0)
(2.94868 0.0706385 0)
(2.8921 0.150903 0)
(2.8355 0.246771 0)
(2.79206 0.31796 0)
(2.68663 0.474289 0)
(2.634 0.584167 0)
(2.6357 0.588768 0)
(2.59272 0.640053 0)
(2.55192 0.716848 0)
(2.53779 0.734003 0)
(2.53295 0.725583 0)
(2.53651 0.738512 0)
(2.54117 0.742665 0)
(2.54223 0.734737 0)
(2.5522 0.721387 0)
(2.55753 0.712442 0)
(2.56105 0.70473 0)
(2.56225 0.695261 0)
(2.56437 0.688123 0)
(2.56714 0.685709 0)
(2.57037 0.682478 0)
(2.57414 0.677737 0)
(2.5751 0.674396 0)
(2.57578 0.673861 0)
(2.57651 0.6769 0)
(2.57591 0.679405 0)
(2.57483 0.681624 0)
(2.573 0.685152 0)
(2.57216 0.686618 0)
(2.57217 0.686907 0)
(2.57211 0.686903 0)
(2.57198 0.686467 0)
(2.57255 0.685537 0)
(2.57226 0.684983 0)
(2.57107 0.6851 0)
(2.569 0.685778 0)
(2.56747 0.687144 0)
(2.56705 0.68765 0)
(2.56696 0.687484 0)
(2.56723 0.687501 0)
(2.568 0.687859 0)
(2.5689 0.687908 0)
(2.56928 0.687754 0)
(2.56941 0.687972 0)
(2.56939 0.688905 0)
(2.56898 0.689762 0)
(2.56826 0.68992 0)
(2.56787 0.689699 0)
(2.56779 0.689574 0)
(2.56778 0.68924 0)
(2.56825 0.688521 0)
(2.56899 0.687661 0)
(2.56915 0.68738 0)
(2.56908 0.687433 0)
(2.56864 0.687926 0)
(3 1.06377e-16 0)
(3 -1.82671e-16 0)
(3 1.50791e-16 0)
(3 1.1405e-15 0)
(3 -5.65135e-14 0)
(3 -2.63033e-13 0)
(3 -9.99944e-13 0)
(3 -4.6237e-12 0)
(3 -6.02501e-12 0)
(3 -2.00677e-11 0)
(3 -4.8982e-11 0)
(3 -9.3882e-11 0)
(3 -1.48067e-10 0)
(3 -1.77428e-10 0)
(3 -3.06751e-10 0)
(3 -2.0251e-09 0)
(3 -1.52298e-09 0)
(3 -8.80181e-10 0)
(3 -1.6421e-09 0)
(3 -1.46737e-08 0)
(3 5.42557e-08 0)
(3 -4.25143e-08 0)
(3 1.20053e-06 0)
(2.99999 1.62936e-05 0)
(2.99993 9.06817e-05 0)
(2.9996 0.000503011 0)
(2.99821 0.00229284 0)
(2.99443 0.0077566 0)
(2.98441 0.0212432 0)
(2.95803 0.0543801 0)
(2.91703 0.119115 0)
(2.874 0.185946 0)
(2.79891 0.292001 0)
(2.72447 0.42741 0)
(2.71106 0.453224 0)
(2.67084 0.512267 0)
(2.59799 0.632991 0)
(2.58533 0.664398 0)
(2.58708 0.645611 0)
(2.57906 0.657088 0)
(2.56854 0.674787 0)
(2.56417 0.680996 0)
(2.56304 0.680064 0)
(2.56276 0.680284 0)
(2.56189 0.683056 0)
(2.55855 0.685256 0)
(2.55847 0.686028 0)
(2.5603 0.688785 0)
(2.56303 0.688423 0)
(2.56662 0.686975 0)
(2.56913 0.687312 0)
(2.56969 0.68791 0)
(2.56844 0.687589 0)
(2.56622 0.685955 0)
(2.56543 0.685333 0)
(2.56494 0.684784 0)
(2.5645 0.68248 0)
(2.56537 0.679439 0)
(2.56771 0.67817 0)
(2.56896 0.679436 0)
(2.56895 0.680438 0)
(2.56852 0.681382 0)
(2.56716 0.683286 0)
(2.56485 0.685796 0)
(2.56363 0.687499 0)
(2.56347 0.688227 0)
(2.56397 0.688858 0)
(2.56526 0.688718 0)
(2.56636 0.68816 0)
(2.56636 0.68767 0)
(2.56613 0.687711 0)
(2.56522 0.687883 0)
(2.56406 0.687989 0)
(2.56349 0.688118 0)
(2.56351 0.688069 0)
(2.56389 0.687638 0)
(2.56487 0.686984 0)
(2.56604 0.686567 0)
(2.56664 0.686536 0)
(2.5669 0.686824 0)
(3 -1.18197e-17 0)
(3 1.18398e-17 0)
(3 -7.62425e-17 0)
(3 9.33441e-17 0)
(3 4.93019e-17 0)
(3 -1.99248e-16 0)
(3 -1.74342e-15 0)
(3 -7.57861e-15 0)
(3 -5.23284e-15 0)
(3 -3.69965e-14 0)
(3 -1.5252e-13 0)
(3 -6.17628e-13 0)
(3 -1.34803e-12 0)
(3 -4.3138e-12 0)
(3 -1.0769e-11 0)
(3 -1.66809e-11 0)
(3 -4.86366e-11 0)
(3 -1.38981e-10 0)
(3 -2.3719e-10 0)
(3 -6.5984e-10 0)
(3 -6.63552e-10 0)
(3 -1.82266e-09 0)
(3 -2.51647e-09 0)
(3 1.98522e-10 0)
(3 2.75922e-09 0)
(3 -1.33096e-07 0)
(3 9.13838e-07 0)
(2.99999 6.64829e-06 0)
(2.99996 4.71584e-05 0)
(2.99975 0.000331583 0)
(2.999 0.00136401 0)
(2.99669 0.00466552 0)
(2.98907 0.0141877 0)
(2.97161 0.0386407 0)
(2.94266 0.0861825 0)
(2.89674 0.147121 0)
(2.82194 0.262334 0)
(2.77119 0.353029 0)
(2.74192 0.407042 0)
(2.64254 0.54413 0)
(2.60059 0.640739 0)
(2.59589 0.633715 0)
(2.58365 0.65313 0)
(2.56393 0.688554 0)
(2.55247 0.717526 0)
(2.54524 0.713571 0)
(2.54405 0.715539 0)
(2.54461 0.718569 0)
(2.5461 0.71466 0)
(2.55086 0.699625 0)
(2.55995 0.691087 0)
(2.56523 0.687517 0)
(2.56562 0.683658 0)
(2.56574 0.679805 0)
(2.56532 0.677293 0)
(2.56466 0.677274 0)
(2.56386 0.678174 0)
(2.56444 0.679213 0)
(2.56546 0.67973 0)
(2.56679 0.679955 0)
(2.5679 0.680348 0)
(2.56878 0.681533 0)
(2.5685 0.683402 0)
(2.56645 0.685279 0)
(2.56367 0.687188 0)
(2.56262 0.68795 0)
(2.56144 0.68831 0)
(2.56077 0.687896 0)
(2.56112 0.686309 0)
(2.56253 0.685086 0)
(2.56331 0.684759 0)
(2.56313 0.684814 0)
(2.56292 0.684947 0)
(2.56252 0.685445 0)
(2.56184 0.686753 0)
(2.56129 0.687812 0)
(2.56149 0.688017 0)
(2.56194 0.687865 0)
(2.56293 0.687303 0)
(2.56417 0.686781 0)
(3 1.62099e-16 0)
(3 1.84363e-16 0)
(3 1.84676e-16 0)
(3 8.48583e-18 0)
(3 4.25016e-17 0)
(3 5.44951e-17 0)
(3 5.45885e-17 0)
(3 7.34792e-17 0)
(3 7.70291e-17 0)
(3 9.08794e-17 0)
(3 9.61892e-17 0)
(3 -2.11638e-16 0)
(3 -8.4457e-17 0)
(3 -4.35104e-15 0)
(3 -1.32297e-14 0)
(3 -5.05403e-15 0)
(3 -1.3673e-13 0)
(3 -7.75933e-13 0)
(3 -3.81053e-12 0)
(3 -6.57357e-12 0)
(3 -4.97723e-11 0)
(3 -1.3737e-10 0)
(3 -1.67777e-10 0)
(3 -2.50825e-10 0)
(3 -1.38751e-09 0)
(3 -1.86024e-09 0)
(3 -8.52066e-10 0)
(3 -7.92466e-10 0)
(3 -3.43217e-08 0)
(3 5.87715e-08 0)
(3 4.56799e-07 0)
(3 2.13194e-06 0)
(2.99998 2.72928e-05 0)
(2.99987 0.00017377 0)
(2.99947 0.000714667 0)
(2.99787 0.00288787 0)
(2.99264 0.00985059 0)
(2.98171 0.0267022 0)
(2.95926 0.0582275 0)
(2.91436 0.117668 0)
(2.85844 0.212859 0)
(2.81803 0.279808 0)
(2.7445 0.390311 0)
(2.67504 0.525159 0)
(2.66497 0.540482 0)
(2.66223 0.555299 0)
(2.61017 0.619065 0)
(2.59377 0.663819 0)
(2.58519 0.656771 0)
(2.57706 0.659792 0)
(2.5724 0.668338 0)
(2.57108 0.67223 0)
(2.57017 0.672612 0)
(2.57002 0.672602 0)
(2.56877 0.674598 0)
(2.56487 0.678033 0)
(2.56262 0.682422 0)
(2.56125 0.687783 0)
(2.56072 0.689197 0)
(2.56089 0.687987 0)
(2.56225 0.68581 0)
(2.56429 0.6848 0)
(2.56556 0.683275 0)
(2.56489 0.681547 0)
(2.5638 0.681083 0)
(2.56266 0.681117 0)
(2.56139 0.681636 0)
(2.56027 0.682391 0)
(2.55948 0.682569 0)
(2.55979 0.682122 0)
(2.56169 0.682569 0)
(2.56308 0.683554 0)
(2.56337 0.68413 0)
(2.5633 0.684992 0)
(2.56251 0.686534 0)
(2.56107 0.688309 0)
(2.56012 0.689091 0)
(2.56001 0.689036 0)
(2.56005 0.688642 0)
(2.56084 0.686897 0)
(3 1.18197e-16 0)
(3 1.06558e-16 0)
(3 7.45482e-17 0)
(3 2.2742e-16 0)
(3 2.02308e-16 0)
(3 1.22614e-16 0)
(3 1.14295e-16 0)
(3 1.05947e-16 0)
(3 2.03699e-16 0)
(3 1.68041e-16 0)
(3 3.26356e-17 0)
(3 4.30158e-17 0)
(3 1.27547e-16 0)
(3 9.84163e-17 0)
(3 -1.38368e-16 0)
(3 -1.43807e-16 0)
(3 -2.56874e-16 0)
(3 -5.65066e-16 0)
(3 1.74171e-18 0)
(3 -6.44339e-15 0)
(3 -7.00369e-14 0)
(3 -3.03614e-13 0)
(3 -8.69478e-13 0)
(3 -2.83945e-12 0)
(3 -1.02061e-11 0)
(3 -4.75897e-11 0)
(3 -9.15232e-11 0)
(3 -2.04133e-10 0)
(3 -1.49316e-09 0)
(3 -1.20875e-09 0)
(3 -8.83357e-10 0)
(3 -1.58891e-09 0)
(3 -1.59981e-08 0)
(3 5.13688e-08 0)
(3 6.00497e-08 0)
(3 9.08643e-07 0)
(2.99999 1.50533e-05 0)
(2.99994 7.96832e-05 0)
(2.9997 0.000388713 0)
(2.99863 0.00184764 0)
(2.99559 0.0061917 0)
(2.98805 0.0178311 0)
(2.96945 0.0420158 0)
(2.9362 0.0920403 0)
(2.89294 0.167027 0)
(2.84461 0.242037 0)
(2.75911 0.37531 0)
(2.71268 0.464936 0)
(2.70846 0.485056 0)
(2.63612 0.57282 0)
(2.5895 0.670598 0)
(2.57544 0.67556 0)
(2.57446 0.66983 0)
(2.56893 0.685726 0)
(2.56531 0.704349 0)
(2.55866 0.700862 0)
(2.55836 0.697612 0)
(2.55896 0.698615 0)
(2.55912 0.698182 0)
(2.55719 0.692485 0)
(2.5593 0.685292 0)
(2.56208 0.68381 0)
(2.5649 0.682469 0)
(2.5669 0.679322 0)
(2.56712 0.678412 0)
(2.56673 0.677733 0)
(2.56568 0.677696 0)
(2.56465 0.680298 0)
(2.56339 0.684794 0)
(2.56218 0.686814 0)
(2.56209 0.686942 0)
(2.56263 0.686867 0)
(2.56367 0.686737 0)
(2.56441 0.68685 0)
(2.56383 0.686735 0)
(2.56294 0.686751 0)
(2.56126 0.68689 0)
(2.56016 0.686986 0)
(2.5594 0.686894 0)
(2.55876 0.686387 0)
(3 1.35082e-17 0)
(3 1.01484e-17 0)
(3 3.21913e-17 0)
(3 -1.17104e-16 0)
(3 -1.17304e-16 0)
(3 -1.05584e-16 0)
(3 -1.70589e-18 0)
(3 -1.8797e-17 0)
(3 -8.21644e-17 0)
(3 -7.88765e-17 0)
(3 -1.5459e-17 0)
(3 -1.03238e-17 0)
(3 -9.82459e-17 0)
(3 -8.63301e-17 0)
(3 3.97808e-17 0)
(3 2.07913e-17 0)
(3 6.94253e-18 0)
(3 -8.69332e-17 0)
(3 -8.36019e-17 0)
(3 -1.74476e-17 0)
(3 4.01999e-17 0)
(3 1.62833e-16 0)
(3 -1.22779e-16 0)
(3 -1.36525e-15 0)
(3 9.681e-17 0)
(3 -1.17843e-13 0)
(3 -6.21036e-13 0)
(3 -2.90656e-12 0)
(3 -9.79298e-12 0)
(3 -5.06066e-11 0)
(3 -1.24606e-10 0)
(3 -2.88751e-10 0)
(3 -8.38001e-10 0)
(3 -7.36435e-10 0)
(3 -8.40984e-10 0)
(3 -1.67899e-09 0)
(3 -5.98392e-09 0)
(3 1.74172e-08 0)
(3 -7.25476e-08 0)
(3 5.05622e-07 0)
(2.99999 6.93188e-06 0)
(2.99997 3.7394e-05 0)
(2.99982 0.000241656 0)
(2.99922 0.00109071 0)
(2.99751 0.00358658 0)
(2.99224 0.010928 0)
(2.978 0.0299438 0)
(2.95335 0.0700414 0)
(2.91938 0.124407 0)
(2.86153 0.205636 0)
(2.79604 0.323797 0)
(2.77148 0.369533 0)
(2.71618 0.453588 0)
(2.64181 0.586302 0)
(2.62724 0.614428 0)
(2.63245 0.596545 0)
(2.61406 0.622575 0)
(2.59536 0.656452 0)
(2.58959 0.663227 0)
(2.57899 0.664934 0)
(2.57634 0.66698 0)
(2.57307 0.672475 0)
(2.57138 0.673326 0)
(2.57142 0.67527 0)
(2.57064 0.677472 0)
(2.56845 0.679974 0)
(2.56725 0.680757 0)
(2.56756 0.684296 0)
(2.56537 0.688994 0)
(2.56239 0.689545 0)
(2.56163 0.688785 0)
(2.56109 0.687561 0)
(2.56114 0.68626 0)
(2.56235 0.684099 0)
(2.56417 0.681734 0)
(2.56404 0.680749 0)
(2.56354 0.680808 0)
(2.56318 0.681747 0)
(2.56224 0.683389 0)
(2.56082 0.685858 0)
(3 -5.4033e-17 0)
(3 -7.44216e-17 0)
(3 -7.28539e-17 0)
(3 -1.40865e-16 0)
(3 -1.29205e-16 0)
(3 -1.02178e-16 0)
(3 -1.63766e-16 0)
(3 -1.17909e-16 0)
(3 -1.40364e-16 0)
(3 -1.02882e-16 0)
(3 -3.6071e-17 0)
(3 -3.44127e-17 0)
(3 -7.58389e-17 0)
(3 -5.35246e-17 0)
(3 -5.36176e-17 0)
(3 -1.38609e-17 0)
(3 9.8931e-17 0)
(3 3.99893e-17 0)
(3 1.88104e-16 0)
(3 2.73927e-16 0)
(3 2.44695e-16 0)
(3 2.32869e-16 0)
(3 9.99769e-17 0)
(3 8.60967e-17 0)
(3 9.85702e-17 0)
(3 5.81889e-17 0)
(3 -2.473e-17 0)
(3 -1.71294e-15 0)
(3 -1.76031e-15 0)
(3 -1.22994e-13 0)
(3 -6.76146e-13 0)
(3 -3.20793e-12 0)
(3 -7.02526e-12 0)
(3 -4.14212e-11 0)
(3 -1.30495e-10 0)
(3 -1.73289e-10 0)
(3 -3.01119e-10 0)
(3 -4.99326e-10 0)
(3 -3.10025e-09 0)
(3 -2.20032e-09 0)
(3 -4.32023e-10 0)
(3 3.44442e-09 0)
(3 -8.78673e-08 0)
(3 3.65863e-07 0)
(3 2.41934e-06 0)
(2.99998 1.80968e-05 0)
(2.9999 0.000140262 0)
(2.99959 0.000583777 0)
(2.99852 0.00210219 0)
(2.99476 0.0072147 0)
(2.98554 0.0205807 0)
(2.96785 0.0504771 0)
(2.93532 0.0950712 0)
(2.88385 0.176217 0)
(2.83368 0.265961 0)
(2.79565 0.333063 0)
(2.70459 0.474501 0)
(2.66019 0.570039 0)
(2.65966 0.566738 0)
(2.63028 0.605273 0)
(2.59046 0.66476 0)
(2.57487 0.699129 0)
(2.5636 0.690023 0)
(2.56207 0.696873 0)
(2.56379 0.707692 0)
(2.56213 0.703252 0)
(2.56278 0.690585 0)
(2.56688 0.687258 0)
(2.56931 0.688892 0)
(2.56742 0.686925 0)
(2.56576 0.684329 0)
(2.56476 0.682468 0)
(2.56369 0.682524 0)
(2.56315 0.681939 0)
(2.56458 0.681389 0)
(2.56642 0.681361 0)
(2.5669 0.681429 0)
(2.56753 0.682218 0)
(2.5679 0.685221 0)
(2.56504 0.688295 0)
(3 -5.4033e-17 0)
(3 -5.41248e-17 0)
(3 -7.45482e-17 0)
(3 -5.60065e-17 0)
(3 -5.2702e-17 0)
(3 5.44951e-17 0)
(3 3.41178e-17 0)
(3 1.17909e-16 0)
(3 5.47762e-17 0)
(3 8.57353e-18 0)
(3 1.20237e-17 0)
(3 2.23682e-17 0)
(3 6.205e-17 0)
(3 5.52513e-17 0)
(3 1.69501e-16 0)
(3 2.2524e-16 0)
(3 2.82908e-16 0)
(3 1.77344e-16 0)
(3 1.16694e-16 0)
(3 -2.96609e-17 0)
(3 -4.19477e-17 0)
(3 -4.72742e-17 0)
(3 8.24371e-17 0)
(3 8.08255e-17 0)
(3 8.09684e-17 0)
(3 6.87687e-17 0)
(3 -6.88907e-17 0)
(3 -6.54741e-17 0)
(3 -6.02725e-17 0)
(3 -6.21559e-17 0)
(3 -7.02727e-16 0)
(3 -3.31497e-16 0)
(3 -2.4764e-15 0)
(3 -8.4315e-14 0)
(3 -4.94232e-13 0)
(3 -1.75435e-12 0)
(3 -3.72935e-12 0)
(3 -2.73162e-11 0)
(3 -5.48343e-11 0)
(3 -1.14651e-10 0)
(3 -1.71749e-10 0)
(3 -1.04899e-09 0)
(3 -1.14979e-09 0)
(3 -8.09268e-10 0)
(3 -7.30433e-10 0)
(3 -7.67705e-09 0)
(3 -1.52753e-10 0)
(3 1.90721e-07 0)
(3 6.6024e-07 0)
(2.99999 9.92751e-06 0)
(2.99995 7.08286e-05 0)
(2.99978 0.000304562 0)
(2.99905 0.0013457 0)
(2.99658 0.00482506 0)
(2.9908 0.013813 0)
(2.97738 0.033467 0)
(2.94833 0.0730394 0)
(2.90497 0.147537 0)
(2.86534 0.216508 0)
(2.79988 0.316152 0)
(2.72806 0.448885 0)
(2.71664 0.471155 0)
(2.69839 0.509049 0)
(2.62493 0.605998 0)
(2.60822 0.656791 0)
(2.60422 0.640558 0)
(2.60108 0.643679 0)
(2.59008 0.658677 0)
(2.58762 0.664686 0)
(2.58198 0.668748 0)
(2.57997 0.669658 0)
(2.57648 0.672476 0)
(2.56926 0.676683 0)
(2.56514 0.681983 0)
(2.56437 0.688106 0)
(2.56488 0.689613 0)
(2.56509 0.688225 0)
(2.56687 0.686961 0)
(2.56774 0.68762 0)
(2.56596 0.687431 0)
(3 -7.59839e-17 0)
(3 -6.25818e-17 0)
(3 5.76054e-17 0)
(3 4.24292e-17 0)
(3 3.74014e-17 0)
(3 -2.38416e-17 0)
(3 -3.41178e-17 0)
(3 -2.90499e-17 0)
(3 -8.55879e-18 0)
(3 8.40206e-17 0)
(3 1.42566e-16 0)
(3 1.11841e-16 0)
(3 8.79042e-17 0)
(3 6.73375e-17 0)
(3 2.5944e-17 0)
(3 -4.15827e-17 0)
(3 -6.5954e-17 0)
(3 -8.34559e-17 0)
(3 -1.20178e-16 0)
(3 -6.28113e-17 0)
(3 -5.59303e-17 0)
(3 -9.27975e-17 0)
(3 -5.96353e-17 0)
(3 -6.8526e-17 0)
(3 -8.27286e-17 0)
(3 -5.81889e-17 0)
(3 -8.83215e-17 0)
(3 -7.96306e-17 0)
(3 -9.92723e-17 0)
(3 -5.50524e-17 0)
(3 -4.09183e-17 0)
(3 -9.26765e-17 0)
(3 -1.4462e-16 0)
(3 -1.46669e-16 0)
(3 1.61268e-17 0)
(3 5.22373e-16 0)
(3 -4.84652e-15 0)
(3 -2.31126e-14 0)
(3 -1.00121e-13 0)
(3 -6.49987e-13 0)
(3 -2.70793e-12 0)
(3 -1.02685e-11 0)
(3 -5.82436e-11 0)
(3 -9.82797e-11 0)
(3 -1.64095e-10 0)
(3 -8.08916e-10 0)
(3 -7.48599e-10 0)
(3 -6.93878e-10 0)
(3 -8.58575e-10 0)
(3 -6.02743e-09 0)
(3 1.68313e-08 0)
(3 3.28291e-08 0)
(3 2.01854e-07 0)
(3 5.44051e-06 0)
(2.99998 3.18833e-05 0)
(2.99987 0.000166302 0)
(2.99937 0.000878756 0)
(2.99787 0.00308299 0)
(2.99391 0.00926665 0)
(2.98301 0.0238931 0)
(2.96035 0.0577179 0)
(2.92667 0.11789 0)
(2.88348 0.183951 0)
(2.80796 0.303864 0)
(2.76315 0.390438 0)
(2.75047 0.426559 0)
(2.66149 0.546924 0)
(2.6176 0.648215 0)
(2.60597 0.64265 0)
(2.60449 0.646418 0)
(2.58851 0.670404 0)
(2.57664 0.69782 0)
(2.56735 0.697385 0)
(2.56454 0.699733 0)
(2.56277 0.705806 0)
(2.56181 0.7039 0)
(2.56141 0.693481 0)
(2.56484 0.686308 0)
(2.56766 0.686173 0)
(2.56897 0.684374 0)
(3 3.37706e-17 0)
(3 3.21366e-17 0)
(3 -3.0497e-17 0)
(3 -2.88518e-17 0)
(3 -3.06012e-17 0)
(3 -5.10892e-17 0)
(3 -5.28826e-17 0)
(3 5.46822e-17 0)
(3 4.10822e-17 0)
(3 -6.85882e-17 0)
(3 -1.42566e-16 0)
(3 -1.6346e-16 0)
(3 -1.63743e-16 0)
(3 -1.41581e-16 0)
(3 -1.98904e-16 0)
(3 -1.33411e-16 0)
(3 -1.73563e-16 0)
(3 -1.70389e-16 0)
(3 -5.22512e-17 0)
(3 -9.59617e-17 0)
(3 -1.01374e-16 0)
(3 -9.62992e-17 0)
(3 -9.2961e-17 0)
(3 -8.43396e-17 0)
(3 8.80091e-18 0)
(3 1.05798e-17 0)
(3 5.29929e-18 0)
(3 3.00827e-17 0)
(3 1.94999e-17 0)
(3 -3.55176e-17 0)
(3 -3.55811e-17 0)
(3 -3.38626e-17 0)
(3 -3.57087e-17 0)
(3 -3.21956e-17 0)
(3 -3.04617e-17 0)
(3 6.46235e-17 0)
(3 5.21518e-17 0)
(3 5.94526e-17 0)
(3 3.08631e-16 0)
(3 -5.06278e-17 0)
(3 -3.11566e-15 0)
(3 -9.92657e-16 0)
(3 -1.4504e-13 0)
(3 -7.43707e-13 0)
(3 -2.77166e-12 0)
(3 -7.84052e-12 0)
(3 -3.63421e-11 0)
(3 -1.07126e-10 0)
(3 -1.63789e-10 0)
(3 -4.36317e-10 0)
(3 -4.02286e-10 0)
(3 -1.05753e-09 0)
(3 -1.93889e-09 0)
(3 -2.97585e-09 0)
(3 5.7363e-09 0)
(3 -4.39301e-08 0)
(3 1.37219e-07 0)
(3 2.71891e-06 0)
(2.99999 1.46212e-05 0)
(2.99992 0.000105663 0)
(2.99962 0.00053193 0)
(2.99868 0.00191288 0)
(2.99562 0.00632782 0)
(2.98678 0.0185829 0)
(2.96976 0.0471385 0)
(2.9434 0.0885662 0)
(2.8923 0.161352 0)
(2.83234 0.271253 0)
(2.80712 0.320647 0)
(2.73081 0.43576 0)
(2.66443 0.569502 0)
(2.656 0.573502 0)
(2.66034 0.575999 0)
(2.6202 0.621173 0)
(2.60434 0.659874 0)
(2.59829 0.659473 0)
(2.58752 0.662761 0)
(2.58146 0.670052 0)
(2.57864 0.671523 0)
(2.5764 0.673937 0)
(3 -2.8705e-17 0)
(3 -3.04452e-17 0)
(3 -7.45482e-17 0)
(3 2.20632e-17 0)
(3 -1.02004e-17 0)
(3 -5.10892e-18 0)
(3 3.41178e-18 0)
(3 -1.53794e-17 0)
(3 -2.00276e-16 0)
(3 -1.85188e-16 0)
(3 -1.59743e-16 0)
(3 -9.11936e-17 0)
(3 -6.72209e-17 0)
(3 -3.4532e-17 0)
(3 -4.15104e-17 0)
(3 -1.17818e-16 0)
(3 -1.04138e-16 0)
(3 3.82506e-17 0)
(3 -1.79396e-16 0)
(3 -1.70986e-16 0)
(3 -1.22347e-16 0)
(3 -6.12813e-17 0)
(3 -1.75398e-17 0)
(3 -1.22995e-17 0)
(3 -1.8834e-16 0)
(3 -1.78093e-16 0)
(3 -8.83215e-17 0)
(3 -6.90132e-17 0)
(3 -4.60907e-17 0)
(3 -1.06553e-17 0)
(3 -7.64994e-17 0)
(3 -5.1685e-17 0)
(3 1.42835e-17 0)
(3 6.08139e-17 0)
(3 9.85526e-17 0)
(3 2.17207e-16 0)
(3 2.15801e-16 0)
(3 2.1439e-16 0)
(3 2.14778e-16 0)
(3 2.4229e-16 0)
(3 2.19183e-16 0)
(3 1.86917e-16 0)
(3 4.19968e-16 0)
(3 -6.68443e-16 0)
(3 -3.78809e-15 0)
(3 9.78012e-16 0)
(3 -1.08204e-13 0)
(3 -6.208e-13 0)
(3 -2.50085e-12 0)
(3 -4.80628e-12 0)
(3 -2.53906e-11 0)
(3 -6.71381e-11 0)
(3 -1.68911e-10 0)
(3 -1.99072e-10 0)
(3 -3.34468e-10 0)
(3 -2.37574e-09 0)
(3 -1.78033e-09 0)
(3 -6.41497e-10 0)
(3 2.85346e-09 0)
(3 -5.05935e-08 0)
(3 1.6826e-07 0)
(3 9.91522e-07 0)
(2.99999 8.70419e-06 0)
(2.99995 7.11698e-05 0)
(2.99978 0.000315379 0)
(2.99912 0.00126526 0)
(2.99667 0.00460934 0)
(2.99012 0.0146556 0)
(2.9774 0.0361307 0)
(2.94994 0.073325 0)
(2.90242 0.152531 0)
(2.86452 0.219945 0)
(2.80683 0.317156 0)
(2.71465 0.478533 0)
(2.69258 0.514729 0)
(2.69124 0.53481 0)
(2.62375 0.608185 0)
(2.58873 0.685671 0)
(2.57828 0.690657 0)
(2.56938 0.689948 0)
(3 -5.4033e-17 0)
(3 -4.05936e-17 0)
(3 -1.01657e-17 0)
(3 -1.3747e-16 0)
(3 -7.8203e-17 0)
(3 -7.83367e-17 0)
(3 -5.28826e-17 0)
(3 -1.04238e-16 0)
(3 -3.08116e-17 0)
(3 1.38891e-16 0)
(3 1.25389e-16 0)
(3 9.80761e-17 0)
(3 9.82459e-17 0)
(3 7.94237e-17 0)
(3 8.12913e-17 0)
(3 3.46522e-17 0)
(3 3.47126e-17 0)
(3 3.47733e-17 0)
(3 4.7026e-17 0)
(3 2.56479e-16 0)
(3 1.90513e-16 0)
(3 2.3462e-16 0)
(3 2.0697e-16 0)
(3 1.68679e-16 0)
(3 2.12982e-16 0)
(3 1.85147e-16 0)
(3 2.75563e-16 0)
(3 3.36218e-17 0)
(3 5.49543e-17 0)
(3 2.84141e-17 0)
(3 1.65452e-16 0)
(3 3.70706e-16 0)
(3 3.30306e-16 0)
(3 3.4342e-16 0)
(3 3.6554e-16 0)
(3 2.45928e-16 0)
(3 1.90624e-16 0)
(3 1.56739e-16 0)
(3 1.31755e-16 0)
(3 1.15721e-16 0)
(3 8.15142e-17 0)
(3 1.86917e-16 0)
(3 -9.09022e-18 0)
(3 3.64274e-18 0)
(3 4.3793e-17 0)
(3 1.06027e-16 0)
(3 6.9594e-17 0)
(3 4.23838e-16 0)
(3 6.06601e-16 0)
(3 1.79186e-15 0)
(3 -7.79604e-14 0)
(3 -1.68475e-13 0)
(3 -8.32399e-13 0)
(3 -2.59177e-12 0)
(3 -1.84269e-11 0)
(3 -4.05152e-11 0)
(3 -1.11675e-10 0)
(3 -1.45327e-10 0)
(3 -5.90464e-10 0)
(3 -7.26144e-10 0)
(3 -6.92248e-10 0)
(3 -7.17773e-10 0)
(3 -5.35205e-09 0)
(3 2.0542e-08 0)
(3 4.90276e-08 0)
(3 3.38132e-07 0)
(3 6.03468e-06 0)
(2.99997 4.25788e-05 0)
(2.99986 0.000204158 0)
(2.99933 0.000946779 0)
(2.99746 0.00369639 0)
(2.99306 0.0107799 0)
(2.98106 0.0267985 0)
(2.95176 0.0729554 0)
(2.92438 0.120123 0)
(2.86811 0.212991 0)
(2.7923 0.336438 0)
(2.76876 0.386071 0)
(2.72354 0.459885 0)
(2.64721 0.577065 0)
(3 1.58722e-16 0)
(3 1.84363e-16 0)
(3 1.62651e-16 0)
(3 2.25723e-16 0)
(3 2.05708e-16 0)
(3 2.04357e-16 0)
(3 2.71237e-16 0)
(3 2.06767e-16 0)
(3 3.13252e-16 0)
(3 7.20176e-17 0)
(3 8.41656e-17 0)
(3 8.08698e-17 0)
(3 5.68792e-17 0)
(3 5.69779e-17 0)
(3 7.61025e-17 0)
(3 7.45023e-17 0)
(3 7.63678e-17 0)
(3 -3.47733e-17 0)
(3 1.4282e-16 0)
(3 -3.55931e-16 0)
(3 -1.206e-16 0)
(3 -1.41823e-16 0)
(3 -1.15763e-16 0)
(3 -7.73113e-17 0)
(3 -2.64027e-17 0)
(3 -8.8165e-18 0)
(3 -7.06572e-18 0)
(3 1.02635e-16 0)
(3 1.91454e-16 0)
(3 1.91795e-16 0)
(3 1.79685e-16 0)
(3 6.77252e-17 0)
(3 1.51762e-16 0)
(3 3.57729e-18 0)
(3 5.37559e-17 0)
(3 4.30823e-17 0)
(3 1.43867e-17 0)
(3 1.26112e-17 0)
(3 1.08292e-17 0)
(3 -1.2657e-17 0)
(3 1.06874e-16 0)
(3 1.45178e-17 0)
(3 5.99954e-17 0)
(3 1.27496e-17 0)
(3 7.84625e-17 0)
(3 9.1403e-18 0)
(3 1.09885e-17 0)
(3 1.28436e-16 0)
(3 1.28673e-16 0)
(3 2.3204e-16 0)
(3 1.23615e-16 0)
(3 5.36043e-17 0)
(3 9.48154e-16 0)
(3 -5.02605e-15 0)
(3 -1.73628e-14 0)
(3 -8.87719e-14 0)
(3 -6.33717e-13 0)
(3 -2.58323e-12 0)
(3 -8.50933e-12 0)
(3 -4.25461e-11 0)
(3 -9.98324e-11 0)
(3 -1.67321e-10 0)
(3 -5.28067e-10 0)
(3 -4.84975e-10 0)
(3 -5.01074e-10 0)
(3 -6.57953e-10 0)
(3 -3.32736e-09 0)
(3 1.08679e-08 0)
(3 -1.81766e-08 0)
(3 3.2984e-07 0)
(3 3.67523e-06 0)
(2.99998 2.5438e-05 0)
(2.99989 0.000149375 0)
(2.99943 0.000809145 0)
(2.99821 0.00278507 0)
(2.99389 0.00886175 0)
(2.98377 0.0231476 0)
(2.96033 0.0635101 0)
(2.92936 0.110432 0)
(2.8405 0.254643 0)
(3 3.34329e-16 0)
(3 3.12909e-16 0)
(3 2.84639e-16 0)
(3 2.59666e-16 0)
(3 2.41409e-16 0)
(3 1.85624e-16 0)
(3 6.3118e-17 0)
(3 5.80999e-17 0)
(3 4.27939e-17 0)
(3 1.20029e-17 0)
(3 3.43533e-17 0)
(3 3.44127e-17 0)
(3 4.65375e-17 0)
(3 7.25173e-17 0)
(3 9.68577e-17 0)
(3 9.70262e-17 0)
(3 3.47126e-18 0)
(3 1.87776e-16 0)
(3 1.89846e-16 0)
(3 1.44815e-16 0)
(3 2.02747e-16 0)
(3 1.41823e-16 0)
(3 1.17517e-16 0)
(3 7.90684e-17 0)
(3 1.0033e-16 0)
(3 1.02271e-16 0)
(3 8.30222e-17 0)
(3 1.2387e-16 0)
(3 8.15451e-17 0)
(3 8.16906e-17 0)
(3 1.42324e-17 0)
(3 -8.73298e-17 0)
(3 -2.48176e-16 0)
(3 -7.69118e-17 0)
(3 -2.16816e-16 0)
(3 -7.89842e-17 0)
(3 -8.63203e-17 0)
(3 -7.38653e-17 0)
(3 -8.12187e-17 0)
(3 -5.78604e-17 0)
(3 -1.19554e-16 0)
(3 -3.99241e-16 0)
(3 -3.36338e-16 0)
(3 -3.49703e-16 0)
(3 -4.26982e-16 0)
(3 -4.18626e-16 0)
(3 -3.51633e-16 0)
(3 -3.30264e-16 0)
(3 -2.18744e-16 0)
(3 -2.00733e-16 0)
(3 -1.0701e-16 0)
(3 -5.36043e-17 0)
(3 2.77779e-17 0)
(3 -8.34891e-17 0)
(3 -3.1971e-16 0)
(3 -4.04109e-16 0)
(3 -2.59339e-16 0)
(3 -7.963e-15 0)
(3 -6.33931e-15 0)
(3 -1.65773e-13 0)
(3 -8.13269e-13 0)
(3 -3.46058e-12 0)
(3 -6.90976e-12 0)
(3 -3.87538e-11 0)
(3 -7.25555e-11 0)
(3 -1.22372e-10 0)
(3 -4.11456e-10 0)
(3 -3.95095e-10 0)
(3 -6.76628e-10 0)
(3 -5.79417e-10 0)
(3 3.25194e-10 0)
(3 -1.53205e-08 0)
(3 1.29673e-08 0)
(3 2.79852e-07 0)
(3 2.25459e-06 0)
(2.99998 1.90022e-05 0)
(2.99991 0.000126879 0)
(2.99957 0.000615809 0)
(2.99856 0.00209365 0)
(2.9886 0.0177707 0)
(3 -6.75412e-18 0)
(3 -5.41248e-17 0)
(3 -3.38856e-17 0)
(3 -1.39168e-16 0)
(3 -1.39405e-16 0)
(3 -9.70695e-17 0)
(3 -2.62707e-16 0)
(3 4.61381e-17 0)
(3 4.27939e-17 0)
(3 3.77235e-17 0)
(3 1.20237e-17 0)
(3 9.97967e-17 0)
(3 3.44722e-18 0)
(3 -1.89926e-17 0)
(3 -5.36176e-17 0)
(3 -5.3711e-17 0)
(3 -3.99195e-17 0)
(3 -1.0432e-17 0)
(3 8.70853e-17 0)
(3 1.02941e-16 0)
(3 5.94259e-17 0)
(3 3.50179e-17 0)
(3 4.91114e-17 0)
(3 5.09552e-17 0)
(3 1.44335e-16 0)
(3 1.04035e-16 0)
(3 9.00879e-17 0)
(3 4.07001e-17 0)
(3 1.96772e-16 0)
(3 -1.08329e-16 0)
(3 7.82785e-17 0)
(3 3.56448e-17 0)
(3 4.46359e-17 0)
(3 1.43092e-17 0)
(3 -5.55478e-17 0)
(3 -2.49518e-16 0)
(3 -5.03535e-17 0)
(3 -1.09897e-16 0)
(3 -1.06487e-16 0)
(3 -1.19337e-16 0)
(3 -1.73897e-16 0)
(3 -1.77843e-16 0)
(3 -3.12704e-16 0)
(3 -2.84134e-16 0)
(3 -2.88304e-16 0)
(3 -1.95602e-16 0)
(3 -1.04391e-16 0)
(3 -2.31184e-16 0)
(3 -2.44479e-16 0)
(3 -1.60218e-16 0)
(3 -1.75275e-16 0)
(3 -9.79665e-17 0)
(3 -6.29633e-17 0)
(3 4.26722e-17 0)
(3 4.46107e-17 0)
(3 1.4898e-17 0)
(3 3.73149e-17 0)
(3 3.7385e-17 0)
(3 -1.77913e-16 0)
(3 -2.75815e-16 0)
(3 9.39919e-18 0)
(3 -4.43916e-15 0)
(3 -5.14198e-15 0)
(3 -1.00866e-13 0)
(3 -7.82e-13 0)
(3 -1.9565e-12 0)
(3 -5.94446e-12 0)
(3 -2.55696e-11 0)
(3 -7.30682e-11 0)
(3 -7.72611e-11 0)
(3 -1.47744e-10 0)
(3 -5.92609e-10 0)
(3 -3.21886e-10 0)
(3 -2.50033e-10 0)
(3 -1.17107e-09 0)
(3 4.79722e-09 0)
(3 -3.2712e-08 0)
(3 2.81215e-07 0)
(3 1.23429e-06 0)
(2.99992 0.000123593 0)
(3 -2.46525e-16 0)
(3 -1.60683e-16 0)
(3 -1.62651e-16 0)
(3 -7.63725e-17 0)
(3 -3.40013e-17 0)
(3 -3.40595e-17 0)
(3 -1.19412e-17 0)
(3 -3.58852e-17 0)
(3 -3.42351e-18 0)
(3 1.88618e-17 0)
(3 5.49653e-17 0)
(3 -1.03238e-17 0)
(3 7.58389e-17 0)
(3 6.90641e-17 0)
(3 5.36176e-17 0)
(3 5.3711e-17 0)
(3 5.38046e-17 0)
(3 5.38986e-17 0)
(3 2.43839e-17 0)
(3 -3.48952e-18 0)
(3 -7.8652e-17 0)
(3 -4.20215e-17 0)
(3 7.54211e-17 0)
(3 6.32547e-17 0)
(3 3.8724e-17 0)
(3 -2.29229e-17 0)
(3 -3.35622e-17 0)
(3 7.96306e-17 0)
(3 4.07726e-17 0)
(3 -1.59829e-17 0)
(3 -1.70789e-16 0)
(3 -1.5149e-16 0)
(3 -1.48191e-16 0)
(3 -1.46669e-16 0)
(3 -1.46933e-16 0)
(3 -1.831e-16 0)
(3 -2.14002e-16 0)
(3 -2.41413e-16 0)
(3 -2.41851e-16 0)
(3 -2.22401e-16 0)
(3 -2.17371e-16 0)
(3 -2.05064e-16 0)
(3 -1.12719e-16 0)
(3 -9.65326e-17 0)
(3 -8.57613e-17 0)
(3 -1.27964e-16 0)
(3 -1.77648e-16 0)
(3 -8.07311e-17 0)
(3 -3.30873e-17 0)
(3 2.92812e-16 0)
(3 1.8819e-16 0)
(3 2.36598e-16 0)
(3 1.75927e-16 0)
(3 2.22638e-17 0)
(3 -5.57634e-18 0)
(3 1.11735e-17 0)
(3 -9.32873e-18 0)
(3 -1.2337e-16 0)
(3 1.83531e-16 0)
(3 3.75259e-17 0)
(3 6.9554e-17 0)
(3 3.03227e-16 0)
(3 1.77375e-16 0)
(3 3.68657e-16 0)
(3 -3.92088e-16 0)
(3 -3.40837e-15 0)
(3 -6.7499e-15 0)
(3 -1.19919e-13 0)
(3 -4.53458e-13 0)
(3 -1.91711e-12 0)
(3 -4.8885e-12 0)
(3 -1.07449e-11 0)
(3 -3.15364e-11 0)
(3 -5.30401e-11 0)
(3 -1.66571e-10 0)
(3 -2.20983e-10 0)
(3 -1.92903e-09 0)
(3 -1.99208e-09 0)
(3 -2.68671e-09 0)
(3 8.62628e-08 0)
(3 -8.10495e-17 0)
(3 5.9199e-17 0)
(3 1.62651e-16 0)
(3 2.25723e-16 0)
(3 2.00608e-16 0)
(3 1.46456e-16 0)
(3 2.25178e-16 0)
(3 1.98223e-16 0)
(3 1.72887e-16 0)
(3 1.52609e-16 0)
(3 1.16801e-16 0)
(3 7.74285e-17 0)
(3 9.47987e-17 0)
(3 9.84163e-17 0)
(3 1.00317e-16 0)
(3 1.00491e-16 0)
(3 1.28437e-16 0)
(3 1.66912e-16 0)
(3 1.11469e-16 0)
(3 3.31504e-17 0)
(3 3.32086e-17 0)
(3 -7.00358e-18 0)
(3 -8.9453e-17 0)
(3 -1.21238e-16 0)
(3 2.67548e-16 0)
(3 -2.04543e-16 0)
(3 2.11971e-17 0)
(3 -1.75187e-16 0)
(3 -1.70181e-16 0)
(3 -1.79364e-16 0)
(3 -1.6901e-16 0)
(3 -1.71095e-16 0)
(3 -1.69617e-16 0)
(3 -1.7171e-16 0)
(3 -1.70227e-16 0)
(3 -1.72329e-16 0)
(3 -1.56455e-16 0)
(3 -1.38723e-16 0)
(3 -1.04682e-16 0)
(3 -1.04872e-16 0)
(3 -8.15142e-17 0)
(3 -7.98481e-17 0)
(3 -6.36315e-17 0)
(3 -4.37129e-17 0)
(3 -2.55459e-17 0)
(3 5.48418e-17 0)
(3 3.4797e-17 0)
(3 3.1375e-16 0)
(3 2.62861e-16 0)
(3 -9.20793e-18 0)
(3 1.6236e-16 0)
(3 -1.10905e-17 0)
(3 -1.2963e-17 0)
(3 9.09104e-17 0)
(3 6.50572e-17 0)
(3 -1.22909e-16 0)
(3 -9.5153e-17 0)
(3 -6.35545e-17 0)
(3 5.6183e-18 0)
(3 3.56496e-17 0)
(3 9.58717e-17 0)
(3 -9.04029e-17 0)
(3 9.43482e-18 0)
(3 8.12936e-17 0)
(3 2.34874e-16 0)
(3 2.69481e-16 0)
(3 2.49081e-16 0)
(3 2.60988e-16 0)
(3 -6.29862e-17 0)
(3 -4.02547e-15 0)
(3 -1.66904e-14 0)
(3 -5.28132e-14 0)
(3 -4.19033e-13 0)
(3 -1.21158e-12 0)
(3 -3.17155e-12 0)
(3 -1.57615e-11 0)
(3 -4.69797e-11 0)
(3 -1.71341e-10 0)
(3 -5.24215e-10 0)
(3 -5.18717e-10 0)
(3 3.20821e-16 0)
(3 2.36796e-17 0)
(3 -8.13253e-17 0)
(3 -1.15407e-16 0)
(3 -1.17304e-16 0)
(3 -8.34457e-17 0)
(3 -1.50118e-16 0)
(3 -7.86057e-17 0)
(3 -1.42076e-16 0)
(3 -7.71618e-17 0)
(3 -8.93185e-17 0)
(3 -1.20444e-16 0)
(3 -3.44722e-17 0)
(3 -7.59705e-17 0)
(3 1.03776e-17 0)
(3 -1.38609e-17 0)
(3 -7.98391e-17 0)
(3 -1.99946e-16 0)
(3 -1.95071e-16 0)
(3 -1.67497e-16 0)
(3 -1.88765e-16 0)
(3 -2.03104e-16 0)
(3 -2.56081e-16 0)
(3 -2.07335e-16 0)
(3 -3.23874e-16 0)
(3 -2.78601e-16 0)
(3 -2.34935e-16 0)
(3 -2.77822e-16 0)
(3 -2.19817e-16 0)
(3 -4.04901e-16 0)
(3 -1.20976e-16 0)
(3 -1.24757e-16 0)
(3 -1.48191e-16 0)
(3 -1.46669e-16 0)
(3 -1.46933e-16 0)
(3 -1.47198e-16 0)
(3 -1.47464e-16 0)
(3 -5.40478e-17 0)
(3 -3.24875e-17 0)
(3 -6.69011e-17 0)
(3 -8.15142e-17 0)
(3 1.81473e-17 0)
(3 3.63609e-17 0)
(3 4.55342e-17 0)
(3 1.60574e-16 0)
(3 -2.37648e-16 0)
(3 1.8324e-30 0)
(3 -8.62355e-17 0)
(3 -9.19093e-18 0)
(3 -4.41981e-17 0)
(3 -1.23615e-16 0)
(3 -1.03512e-16 0)
(3 -8.1482e-17 0)
(3 -1.28017e-16 0)
(3 -8.17863e-17 0)
(3 -2.36506e-16 0)
(3 2.64936e-16 0)
(3 2.09356e-16 0)
(3 2.00386e-16 0)
(3 2.00764e-16 0)
(3 2.70697e-16 0)
(3 1.95873e-16 0)
(3 2.20775e-16 0)
(3 3.76219e-16 0)
(3 1.43955e-16 0)
(3 1.32843e-16 0)
(3 1.48308e-16 0)
(3 1.52402e-16 0)
(3 1.37424e-16 0)
(3 6.11948e-17 0)
(3 -6.70606e-17 0)
(3 -2.6876e-17 0)
(3 -7.53981e-16 0)
(3 -2.50336e-15 0)
(3 -2.69744e-15 0)
(3 -1.00698e-13 0)
(3 -1.39761e-13 0)
(3 -7.6283e-13 0)
(3 -5.2842e-12 0)
(3 -5.7003e-11 0)
(3 -7.59839e-17 0)
(3 -8.96442e-17 0)
(3 -1.35542e-16 0)
(3 -1.57836e-16 0)
(3 -1.63206e-16 0)
(3 -1.41347e-16 0)
(3 -3.1559e-16 0)
(3 -3.55434e-16 0)
(3 -3.14963e-16 0)
(3 -3.39512e-16 0)
(3 -3.28074e-16 0)
(3 -2.7186e-16 0)
(3 -3.41275e-16 0)
(3 -3.19421e-16 0)
(3 -3.18247e-16 0)
(3 -3.01474e-16 0)
(3 -2.96793e-16 0)
(3 -2.97311e-16 0)
(3 -2.97832e-16 0)
(3 -2.91375e-16 0)
(3 -2.67417e-16 0)
(3 -2.48627e-16 0)
(3 -1.96446e-16 0)
(3 -2.30177e-16 0)
(3 -2.56987e-16 0)
(3 -2.32756e-16 0)
(3 -2.11971e-16 0)
(3 -1.91113e-16 0)
(3 -2.12726e-16 0)
(3 -2.13106e-16 0)
(3 -3.71823e-16 0)
(3 -3.29715e-16 0)
(3 -2.80314e-16 0)
(3 -2.18215e-16 0)
(3 -1.70227e-16 0)
(3 -1.14886e-16 0)
(3 -9.53119e-17 0)
(3 5.58494e-17 0)
(3 2.70729e-17 0)
(3 -2.45907e-16 0)
(3 -8.87599e-17 0)
(3 1.05254e-16 0)
(3 3.1634e-16 0)
(3 2.82312e-16 0)
(3 1.62399e-16 0)
(3 1.8829e-16 0)
(3 2.28928e-16 0)
(3 2.03663e-16 0)
(3 2.3345e-16 0)
(3 2.50456e-16 0)
(3 2.23245e-16 0)
(3 1.90388e-16 0)
(3 1.35186e-16 0)
(3 2.04085e-16 0)
(3 3.23427e-16 0)
(3 4.15283e-16 0)
(3 2.74265e-16 0)
(3 2.7478e-16 0)
(3 2.60314e-16 0)
(3 2.55176e-16 0)
(3 2.53778e-16 0)
(3 2.31658e-16 0)
(3 1.39635e-16 0)
(3 2.28756e-16 0)
(3 2.23509e-16 0)
(3 2.54299e-16 0)
(3 2.54785e-16 0)
(3 2.72418e-16 0)
(3 1.96593e-16 0)
(3 2.84938e-16 0)
(3 2.08846e-16 0)
(3 2.09249e-16 0)
(3 1.59644e-16 0)
(3 2.2933e-16 0)
(3 2.10466e-16 0)
(3 1.5864e-16 0)
(3 2.50054e-16 0)
(3 5.04968e-17 0)
(3 -8.81529e-16 0)
(3 -7.42024e-13 0)
(3 -2.02624e-16 0)
(3 -1.87745e-16 0)
(3 -1.69428e-16 0)
(3 -1.17104e-16 0)
(3 -1.17304e-16 0)
(3 -9.87724e-17 0)
(3 -1.14295e-16 0)
(3 -3.24676e-17 0)
(3 -6.3335e-17 0)
(3 -1.42321e-16 0)
(3 -1.20237e-16 0)
(3 -8.77523e-17 0)
(3 -1.63743e-16 0)
(3 -1.19136e-16 0)
(3 -1.86797e-16 0)
(3 -1.71529e-16 0)
(3 -1.52736e-16 0)
(3 -1.304e-16 0)
(3 -1.14953e-16 0)
(3 -5.93218e-17 0)
(3 -7.69041e-17 0)
(3 -3.15161e-17 0)
(3 1.22779e-17 0)
(3 -5.79835e-17 0)
(3 5.98462e-17 0)
(3 1.05798e-17 0)
(3 2.29636e-17 0)
(3 5.48566e-17 0)
(3 7.79997e-17 0)
(3 9.23459e-17 0)
(3 1.33429e-16 0)
(3 1.56837e-16 0)
(3 1.94613e-16 0)
(3 1.94962e-16 0)
(3 1.9173e-16 0)
(3 1.92075e-16 0)
(3 2.69751e-17 0)
(3 6.23351e-16 0)
(3 2.40046e-16 0)
(3 -3.70668e-16 0)
(3 4.16628e-17 0)
(3 3.64761e-16 0)
(3 4.19968e-16 0)
(3 3.91595e-16 0)
(3 3.12025e-16 0)
(3 1.24308e-16 0)
(3 1.22705e-16 0)
(3 1.48619e-16 0)
(3 1.67275e-16 0)
(3 2.70713e-16 0)
(3 2.56455e-16 0)
(3 2.32901e-16 0)
(3 2.27779e-16 0)
(3 1.48425e-16 0)
(3 1.07809e-16 0)
(3 4.84186e-17 0)
(3 3.91807e-17 0)
(3 6.7293e-17 0)
(3 1.12366e-16 0)
(3 1.53856e-16 0)
(3 1.82344e-16 0)
(3 2.03407e-16 0)
(3 1.28314e-16 0)
(3 2.00398e-16 0)
(3 2.46239e-16 0)
(3 3.49187e-16 0)
(3 3.15629e-16 0)
(3 1.73357e-16 0)
(3 1.48876e-16 0)
(3 1.09003e-16 0)
(3 1.5903e-16 0)
(3 1.63176e-16 0)
(3 1.44257e-16 0)
(3 3.29542e-16 0)
(3 2.10466e-16 0)
(3 3.50169e-16 0)
(3 -9.30433e-17 0)
(3 -7.57452e-17 0)
(3 2.21842e-16 0)
(3 -6.84329e-16 0)
(3 -5.57215e-17 0)
(3 -7.27302e-17 0)
(3 -7.28539e-17 0)
(3 -7.46753e-17 0)
(3 -5.2702e-17 0)
(3 -5.27922e-17 0)
(3 -1.02353e-17 0)
(3 -9.91115e-17 0)
(3 -4.45057e-17 0)
(3 3.08647e-17 0)
(3 -2.92003e-17 0)
(3 2.92508e-17 0)
(3 7.58389e-17 0)
(3 1.17409e-16 0)
(3 3.4592e-17 0)
(3 5.02457e-17 0)
(3 6.94253e-17 0)
(3 8.86718e-17 0)
(3 1.16694e-16 0)
(3 1.27367e-16 0)
(3 1.34582e-16 0)
(3 1.22563e-16 0)
(3 1.3681e-16 0)
(3 1.45837e-16 0)
(3 1.44335e-16 0)
(3 1.83383e-16 0)
(3 1.87241e-16 0)
(3 1.87574e-16 0)
(3 1.91454e-16 0)
(3 1.82916e-16 0)
(3 2.15266e-16 0)
(3 3.52884e-16 0)
(3 3.37448e-16 0)
(3 3.30899e-16 0)
(3 3.15368e-16 0)
(3 3.08756e-16 0)
(3 4.29803e-16 0)
(3 4.16168e-16 0)
(3 3.69996e-16 0)
(3 3.74284e-16 0)
(3 2.98886e-16 0)
(3 4.31906e-16 0)
(3 2.79979e-16 0)
(3 1.51174e-16 0)
(3 1.64224e-16 0)
(3 1.35276e-16 0)
(3 1.17211e-16 0)
(3 1.11923e-16 0)
(3 1.96686e-16 0)
(3 1.19703e-16 0)
(3 2.45385e-16 0)
(3 2.19963e-16 0)
(3 1.2963e-16 0)
(3 2.85718e-16 0)
(3 2.49076e-16 0)
(3 2.38369e-16 0)
(3 3.43297e-16 0)
(3 2.95341e-16 0)
(3 3.10879e-16 0)
(3 3.45238e-16 0)
(3 3.04534e-16 0)
(3 2.97576e-16 0)
(3 2.50966e-16 0)
(3 2.91144e-16 0)
(3 9.28131e-17 0)
(3 4.74439e-17 0)
(3 3.61262e-17 0)
(3 2.09552e-17 0)
(3 -1.7178e-17 0)
(3 -6.11948e-17 0)
(3 -7.47247e-17 0)
(3 -8.63871e-17 0)
(3 -6.53964e-17 0)
(3 -1.85006e-16 0)
(3 -1.81503e-16 0)
(3 -1.5864e-16 0)
(3 -1.10489e-16 0)
(3 -4.27281e-17 0)
(3 1.86814e-16 0)
(3 1.15615e-16 0)
(3 8.44265e-17 0)
(3 3.3828e-17 0)
(3 3.38856e-17 0)
(3 3.39433e-17 0)
(3 3.40013e-17 0)
(3 3.40595e-17 0)
(3 -8.35887e-17 0)
(3 1.09364e-16 0)
(3 5.47762e-17 0)
(3 1.68041e-16 0)
(3 1.64896e-16 0)
(3 1.20444e-16 0)
(3 2.06833e-16 0)
(3 1.65754e-16 0)
(3 1.76419e-16 0)
(3 2.07913e-16 0)
(3 2.10012e-16 0)
(3 1.66912e-16 0)
(3 1.65462e-16 0)
(3 1.65752e-16 0)
(3 2.09739e-16 0)
(3 1.71588e-16 0)
(3 1.68382e-16 0)
(3 2.24906e-16 0)
(3 3.04512e-16 0)
(3 3.05051e-16 0)
(3 3.05592e-16 0)
(3 3.06135e-16 0)
(3 3.04908e-16 0)
(3 3.17883e-16 0)
(3 4.1452e-16 0)
(3 3.4219e-16 0)
(3 3.39233e-16 0)
(3 3.27322e-16 0)
(3 2.90282e-16 0)
(3 2.60289e-16 0)
(3 2.08607e-16 0)
(3 1.90969e-16 0)
(3 2.12973e-16 0)
(3 2.65796e-16 0)
(3 2.57223e-16 0)
(3 9.61807e-17 0)
(3 8.363e-17 0)
(3 1.27496e-16 0)
(3 1.05833e-16 0)
(3 7.67785e-17 0)
(3 1.04391e-16 0)
(3 1.04583e-16 0)
(3 5.69837e-17 0)
(3 6.99803e-17 0)
(3 5.904e-17 0)
(3 3.69685e-18 0)
(3 9.25932e-17 0)
(3 1.53991e-16 0)
(3 1.17103e-16 0)
(3 1.34082e-16 0)
(3 1.41797e-16 0)
(3 -1.79448e-16 0)
(3 -1.51694e-16 0)
(3 -2.45795e-16 0)
(3 -2.78216e-16 0)
(3 -3.23944e-16 0)
(3 -3.09462e-16 0)
(3 -2.64677e-16 0)
(3 -2.50027e-16 0)
(3 -2.06855e-16 0)
(3 -1.80631e-16 0)
(3 -1.82882e-16 0)
(3 -1.67963e-16 0)
(3 -1.4725e-16 0)
(3 -1.13045e-16 0)
(3 -2.47643e-16 0)
(3 1.63491e-16 0)
(3 -7.51587e-17 0)
(3 -1.33231e-16 0)
(3 -1.3349e-16 0)
(3 1.08551e-16 0)
(3 6.21499e-17 0)
(3 -1.55678e-17 0)
(3 -1.34827e-16 0)
(3 1.18197e-16 0)
(3 8.96442e-17 0)
(3 4.23569e-17 0)
(3 5.0915e-17 0)
(3 7.65029e-17 0)
(3 8.85546e-17 0)
(3 1.85942e-16 0)
(3 1.17909e-16 0)
(3 2.60187e-16 0)
(3 1.01168e-16 0)
(3 9.96245e-17 0)
(3 1.20444e-16 0)
(3 -1.89597e-17 0)
(3 6.90641e-18 0)
(3 2.11011e-16 0)
(3 1.43807e-16 0)
(3 1.16287e-16 0)
(3 1.19968e-16 0)
(3 2.52547e-16 0)
(3 2.1984e-16 0)
(3 2.11486e-16 0)
(3 2.10107e-16 0)
(3 2.10478e-16 0)
(3 -7.0283e-18 0)
(3 2.04181e-16 0)
(3 2.64495e-16 0)
(3 2.64964e-16 0)
(3 2.28274e-16 0)
(3 1.93226e-16 0)
(3 2.16658e-16 0)
(3 2.04591e-16 0)
(3 1.78224e-16 0)
(3 1.94613e-16 0)
(3 1.89596e-16 0)
(3 1.3439e-16 0)
(3 8.07793e-17 0)
(3 2.87734e-17 0)
(3 3.9635e-17 0)
(3 5.41458e-17 0)
(3 5.60523e-17 0)
(3 1.63028e-16 0)
(3 2.74024e-16 0)
(3 3.3452e-16 0)
(3 3.4606e-17 0)
(3 3.46695e-17 0)
(3 1.18824e-16 0)
(3 1.11717e-16 0)
(3 8.07311e-17 0)
(3 1.12129e-16 0)
(3 5.52476e-18 0)
(3 -1.107e-17 0)
(3 -2.21811e-17 0)
(3 -7.96301e-17 0)
(3 -9.64763e-17 0)
(3 -1.28256e-16 0)
(3 1.3222e-16 0)
(3 -3.28371e-16 0)
(3 -1.06547e-16 0)
(3 -1.32966e-16 0)
(3 -1.82001e-16 0)
(3 -1.93623e-16 0)
(3 -1.09237e-16 0)
(3 -2.81158e-16 0)
(3 -2.83582e-17 0)
(3 -3.22005e-17 0)
(3 -8.5399e-17 0)
(3 -1.33097e-16 0)
(3 -1.44781e-16 0)
(3 -9.16162e-17 0)
(3 -8.79675e-17 0)
(3 -8.62208e-17 0)
(3 -2.22687e-16 0)
(3 -1.96189e-16 0)
(3 -1.54172e-16 0)
(3 -1.11991e-16 0)
(3 -3.67581e-17 0)
(3 -1.3375e-16 0)
(3 -2.40831e-16 0)
(3 -4.5536e-16 0)
(3 -4.40136e-16 0)
(3 7.42953e-17 0)
(3 1.04867e-16 0)
(3 1.23682e-16 0)
(3 2.00266e-16 0)
(3 1.71707e-16 0)
(3 1.51565e-16 0)
(3 5.45885e-17 0)
(3 5.46822e-17 0)
(3 7.53173e-17 0)
(3 3.25794e-17 0)
(3 3.43533e-17 0)
(3 -4.47365e-17 0)
(3 -5.3432e-17 0)
(3 -3.4532e-17 0)
(3 -5.70768e-17 0)
(3 -4.50479e-17 0)
(3 -1.56207e-17 0)
(3 1.23445e-16 0)
(3 5.9218e-17 0)
(3 1.53539e-16 0)
(3 1.18852e-16 0)
(3 1.33068e-16 0)
(3 2.33279e-16 0)
(3 -2.1612e-16 0)
(3 4.89331e-16 0)
(3 5.92469e-16 0)
(3 5.28162e-16 0)
(3 3.39757e-16 0)
(3 8.50906e-17 0)
(3 8.52424e-17 0)
(3 2.04591e-16 0)
(3 2.31691e-16 0)
(3 2.16038e-16 0)
(3 1.55612e-16 0)
(3 5.01722e-17 0)
(3 -4.66725e-17 0)
(3 -1.04304e-16 0)
(3 -9.00797e-17 0)
(3 -7.21944e-17 0)
(3 -1.24761e-16 0)
(3 -1.24988e-16 0)
(3 -1.17957e-16 0)
(3 -2.25437e-16 0)
(3 -8.92471e-17 0)
(3 -1.2773e-16 0)
(3 -1.60869e-16 0)
(3 -1.33694e-16 0)
(3 -1.32105e-16 0)
(3 -6.61747e-17 0)
(3 -1.01287e-16 0)
(3 -1.93725e-16 0)
(3 -1.94085e-16 0)
(3 -2.46298e-16 0)
(3 -2.3748e-16 0)
(3 -2.11901e-16 0)
(3 -1.95537e-16 0)
(3 -1.84709e-16 0)
(3 -1.53278e-16 0)
(3 -1.53567e-16 0)
(3 -1.42598e-16 0)
(3 -1.52267e-16 0)
(3 -2.03407e-16 0)
(3 -2.03792e-16 0)
(3 -2.17413e-16 0)
(3 -3.56099e-16 0)
(3 -1.61309e-16 0)
(3 -1.29294e-16 0)
(3 -8.57258e-17 0)
(3 -3.24474e-17 0)
(3 -3.82468e-18 0)
(3 1.91602e-17 0)
(3 4.99125e-17 0)
(3 6.73198e-17 0)
(3 2.00423e-16 0)
(3 2.04674e-16 0)
(3 2.26352e-16 0)
(3 3.45036e-16 0)
(3 2.486e-16 0)
(3 4.32008e-16 0)
(3 4.50285e-16 0)
(3 1.53656e-16 0)
(3 1.23472e-16 0)
(3 2.01619e-16 0)
(3 -5.26122e-17 0)
(3 -5.44021e-17 0)
(3 -3.23565e-17 0)
(3 -8.18828e-17 0)
(3 -1.36706e-17 0)
(3 -1.02705e-17 0)
(3 7.71618e-17 0)
(3 7.72949e-17 0)
(3 1.03238e-16 0)
(3 2.0511e-16 0)
(3 2.08919e-16 0)
(3 2.31767e-16 0)
(3 2.09646e-16 0)
(3 2.53402e-16 0)
(3 1.89514e-16 0)
(3 5.9218e-17 0)
(3 6.10665e-17 0)
(3 6.29216e-17 0)
(3 3.3267e-17 0)
(3 -2.28017e-17 0)
(3 -3.51415e-18 0)
(3 -1.84819e-16 0)
(3 1.00508e-16 0)
(3 -7.06572e-18 0)
(3 -3.48605e-16 0)
(3 -4.21907e-16 0)
(3 -1.72261e-16 0)
(3 -3.75381e-16 0)
(3 -2.79812e-16 0)
(3 -2.05325e-16 0)
(3 -2.87972e-16 0)
(3 -2.70572e-16 0)
(3 -2.71059e-16 0)
(3 -2.19397e-16 0)
(3 -1.54937e-16 0)
(3 -2.70729e-16 0)
(3 -2.20593e-16 0)
(3 -3.76777e-16 0)
(3 -3.24837e-16 0)
(3 -3.32702e-16 0)
(3 -4.04344e-16 0)
(3 -3.30272e-16 0)
(3 -3.08942e-16 0)
(3 -1.90468e-16 0)
(3 -9.72443e-17 0)
(3 -1.17644e-16 0)
(3 -1.39961e-16 0)
(3 -2.12175e-16 0)
(3 -2.19963e-16 0)
(3 -2.11112e-16 0)
(3 -1.52136e-16 0)
(3 -1.07809e-16 0)
(3 -1.08011e-16 0)
(3 -9.88845e-17 0)
(3 -1.06547e-16 0)
(3 -8.24017e-17 0)
(3 -1.06949e-16 0)
(3 -8.27129e-17 0)
(3 -8.47528e-17 0)
(3 -5.84959e-17 0)
(3 -5.8607e-17 0)
(3 3.78829e-17 0)
(3 3.79551e-17 0)
(3 9.12663e-17 0)
(3 3.10518e-16 0)
(3 3.03479e-16 0)
(3 3.02149e-16 0)
(3 3.00815e-16 0)
(3 3.05234e-16 0)
(3 3.05824e-16 0)
(3 3.27615e-16 0)
(3 3.2825e-16 0)
(3 3.73385e-16 0)
(3 3.87681e-16 0)
(3 3.59304e-16 0)
(3 3.61952e-16 0)
(3 2.97197e-16 0)
(3 -3.20821e-17 0)
(3 -4.05936e-17 0)
(3 -2.20256e-17 0)
(3 1.52745e-17 0)
(3 5.44021e-17 0)
(3 5.44951e-17 0)
(3 5.45885e-17 0)
(3 7.68969e-17 0)
(3 7.70291e-17 0)
(3 4.97265e-17 0)
(3 1.20237e-17 0)
(3 4.98984e-17 0)
(3 1.8615e-16 0)
(3 1.50214e-16 0)
(3 3.28624e-17 0)
(3 3.46522e-17 0)
(3 -2.42989e-17 0)
(3 -2.95573e-17 0)
(3 -7.31516e-17 0)
(3 -7.85141e-17 0)
(3 -7.8652e-17 0)
(3 -1.06805e-16 0)
(3 -1.47334e-16 0)
(3 -1.93278e-16 0)
(3 -4.36525e-16 0)
(3 -3.27974e-16 0)
(3 -3.25023e-16 0)
(3 -3.13214e-16 0)
(3 -3.08453e-16 0)
(3 -2.29089e-16 0)
(3 -1.6901e-16 0)
(3 -8.55476e-17 0)
(3 -1.10697e-16 0)
(3 5.36594e-17 0)
(3 4.12129e-17 0)
(3 -1.07706e-17 0)
(3 2.31986e-16 0)
(3 -6.48574e-17 0)
(3 -4.65654e-16 0)
(3 1.98895e-16 0)
(3 2.93451e-16 0)
(3 2.30471e-16 0)
(3 3.45428e-17 0)
(3 -7.64975e-17 0)
(3 -7.4813e-17 0)
(3 -9.1403e-17 0)
(3 3.11342e-17 0)
(3 1.72471e-16 0)
(3 1.26835e-16 0)
(3 -2.39406e-17 0)
(3 -6.8265e-17 0)
(3 -8.6876e-17 0)
(3 -3.70373e-17 0)
(3 -3.71063e-17 0)
(3 -3.71756e-17 0)
(3 -3.53829e-17 0)
(3 -3.54492e-17 0)
(3 -2.2431e-17 0)
(3 2.17241e-16 0)
(3 -1.21959e-16 0)
(3 8.27129e-17 0)
(3 7.91026e-17 0)
(3 1.32088e-16 0)
(3 6.61692e-17 0)
(3 2.27297e-16 0)
(3 2.99845e-16 0)
(3 2.37673e-16 0)
(3 2.70513e-16 0)
(3 3.18748e-16 0)
(3 2.54341e-16 0)
(3 3.52547e-16 0)
(3 2.80278e-16 0)
(3 3.03901e-16 0)
(3 1.52245e-16 0)
(3 1.13922e-16 0)
(3 4.64313e-17 0)
(3 -3.68297e-17 0)
(3 3.88437e-17 0)
(3 3.50277e-17 0)
(3 6.62815e-17 0)
(3 4.72789e-17 0)
(3 6.93474e-17 0)
(3 5.25226e-17 0)
(3 5.26122e-17 0)
(3 5.2702e-17 0)
(3 5.27922e-17 0)
(3 7.50592e-17 0)
(3 1.53794e-17 0)
(3 1.19823e-17 0)
(3 5.83e-17 0)
(3 7.55772e-17 0)
(3 6.36634e-17 0)
(3 -1.91321e-16 0)
(3 -1.20862e-17 0)
(3 -5.36176e-17 0)
(3 -5.54436e-17 0)
(3 -6.94253e-17 0)
(3 -9.56265e-17 0)
(3 -1.01019e-16 0)
(3 -1.01196e-16 0)
(3 -1.22347e-17 0)
(3 -1.22563e-17 0)
(3 -2.45557e-17 0)
(3 -2.77618e-16 0)
(3 2.11222e-17 0)
(3 -1.32248e-16 0)
(3 -1.28949e-16 0)
(3 -1.13252e-16 0)
(3 -7.97724e-17 0)
(3 -1.27864e-16 0)
(3 -5.69298e-17 0)
(3 -1.24757e-16 0)
(3 -5.7134e-17 0)
(3 -7.15458e-17 0)
(3 -6.45071e-17 0)
(3 -2.51313e-17 0)
(3 -5.39502e-17 0)
(3 -6.12542e-17 0)
(3 -6.67798e-17 0)
(3 -4.70116e-17 0)
(3 1.08686e-17 0)
(3 3.44799e-17 0)
(3 1.27263e-17 0)
(3 6.55693e-17 0)
(3 -6.38648e-17 0)
(3 4.8078e-16 0)
(3 -1.46514e-17 0)
(3 1.30271e-16 0)
(3 1.28673e-17 0)
(3 1.03129e-16 0)
(3 6.4575e-17 0)
(3 5.91496e-17 0)
(3 3.70373e-17 0)
(3 1.28017e-16 0)
(3 8.92214e-17 0)
(3 8.38015e-17 0)
(3 5.97039e-17 0)
(3 6.16852e-17 0)
(3 6.92923e-17 0)
(3 3.75259e-17 0)
(3 5.8275e-17 0)
(3 7.1569e-17 0)
(3 1.88696e-16 0)
(3 1.83383e-16 0)
(3 5.87185e-17 0)
(3 1.80287e-16 0)
(3 2.77602e-16 0)
(3 2.22887e-16 0)
(3 -2.29041e-16 0)
(3 -1.83584e-16 0)
(3 -2.56746e-16 0)
(3 -2.32285e-16 0)
(3 -5.38558e-17 0)
(3 -2.8329e-16 0)
(3 -2.58738e-16 0)
(3 -2.84391e-16 0)
(3 -2.34547e-16 0)
(3 -3.06865e-16 0)
(3 -1.10921e-16 0)
(3 -6.39842e-17 0)
(3 7.76724e-17 0)
(3 5.41248e-17 0)
(3 5.25226e-17 0)
(3 7.46753e-17 0)
(3 5.2702e-17 0)
(3 5.27922e-17 0)
(3 5.28826e-17 0)
(3 1.19617e-17 0)
(3 -3.25234e-17 0)
(3 -1.02882e-17 0)
(3 -8.58832e-18 0)
(3 -1.37651e-17 0)
(3 -9.99695e-17 0)
(3 -8.97833e-17 0)
(3 -8.30209e-17 0)
(3 -8.14327e-17 0)
(3 -6.5954e-17 0)
(3 -3.47733e-17 0)
(3 -5.57346e-17 0)
(3 -5.58323e-17 0)
(3 -9.96258e-17 0)
(3 -9.10466e-17 0)
(3 -5.61274e-17 0)
(3 -7.90684e-17 0)
(3 3.34435e-17 0)
(3 -3.5266e-17 0)
(3 8.83215e-18 0)
(3 8.84785e-18 0)
(3 8.8636e-18 0)
(3 6.038e-17 0)
(3 2.49068e-17 0)
(3 -1.24757e-17 0)
(3 8.92719e-18 0)
(3 -8.0489e-17 0)
(3 -7.88421e-17 0)
(3 -8.07793e-17 0)
(3 -7.91269e-17 0)
(3 -8.10717e-17 0)
(3 -5.41458e-17 0)
(3 3.43546e-17 0)
(3 -2.89828e-17 0)
(3 -3.62946e-17 0)
(3 -3.63609e-17 0)
(3 -5.82838e-17 0)
(3 -1.64224e-17 0)
(3 5.48418e-18 0)
(3 -7.87512e-17 0)
(3 -1.98158e-16 0)
(3 -1.83819e-16 0)
(3 -1.45485e-16 0)
(3 -1.19925e-16 0)
(3 -9.24212e-17 0)
(3 -1.00001e-16 0)
(3 -1.35438e-16 0)
(3 -1.20821e-16 0)
(3 -6.51789e-17 0)
(3 -6.34354e-17 0)
(3 1.30847e-17 0)
(3 4.30736e-17 0)
(3 8.44333e-17 0)
(3 1.1279e-16 0)
(3 1.29954e-16 0)
(3 1.03783e-16 0)
(3 2.45771e-17 0)
(3 -9.66014e-17 0)
(3 -2.48606e-16 0)
(3 -3.9929e-16 0)
(3 -3.96244e-16 0)
(3 -3.26383e-16 0)
(3 -2.88763e-16 0)
(3 -2.68243e-16 0)
(3 -1.70854e-16 0)
(3 -1.36563e-16 0)
(3 -1.349e-16 0)
(3 -1.11991e-16 0)
(3 -1.12209e-16 0)
(3 -4.16757e-16 0)
(3 7.76874e-18 0)
(3 -1.12867e-16 0)
(3 -3.28774e-17 0)
(3 -9.62462e-17 0)
(3 -8.457e-17 0)
(3 -3.21913e-17 0)
(3 -5.26122e-17 0)
(3 -3.23012e-17 0)
(3 -3.23565e-17 0)
(3 -5.11767e-17 0)
(3 -5.29734e-17 0)
(3 -3.25234e-17 0)
(3 -1.32032e-16 0)
(3 -1.40848e-16 0)
(3 -1.11841e-16 0)
(3 -1.20653e-16 0)
(3 -1.20862e-16 0)
(3 -1.21072e-16 0)
(3 -4.85131e-17 0)
(3 -1.56207e-17 0)
(3 -3.47733e-17 0)
(3 -1.21919e-17 0)
(3 -2.61714e-17 0)
(3 -5.59303e-17 0)
(3 -5.60286e-17 0)
(3 -5.61274e-17 0)
(3 5.24361e-31 0)
(3 -7.39277e-17 0)
(3 -3.5266e-17 0)
(3 -5.65257e-17 0)
(3 2.12348e-17 0)
(3 3.36817e-17 0)
(3 -3.72935e-17 0)
(3 -2.31277e-17 0)
(3 -1.24757e-17 0)
(3 -2.49961e-17 0)
(3 -5.18707e-17 0)
(3 -5.55478e-17 0)
(3 -3.23117e-17 0)
(3 -3.23701e-17 0)
(3 -3.42303e-17 0)
(3 1.19121e-16 0)
(3 -1.0668e-16 0)
(3 -4.34743e-17 0)
(3 6.53303e-17 0)
(3 7.09037e-17 0)
(3 1.16568e-16 0)
(3 2.18965e-16 0)
(3 1.95602e-16 0)
(3 4.94484e-17 0)
(3 1.76141e-16 0)
(3 5.88219e-17 0)
(3 5.89307e-17 0)
(3 4.2435e-17 0)
(3 3.69685e-17 0)
(3 -4.81484e-17 0)
(3 -1.07608e-16 0)
(3 -9.29389e-17 0)
(3 -7.2628e-17 0)
(3 -3.73149e-17 0)
(3 -8.03777e-17 0)
(3 1.29221e-16 0)
(3 1.08825e-16 0)
(3 1.27829e-16 0)
(3 9.04029e-17 0)
(3 -8.30264e-17 0)
(3 -5.57712e-16 0)
(3 -3.73147e-16 0)
(3 -3.75756e-16 0)
(3 -3.9929e-16 0)
(3 -2.87658e-16 0)
(3 -2.40493e-16 0)
(3 -6.31071e-17 0)
(3 -1.09213e-16 0)
(3 -1.82373e-16 0)
(3 -1.67338e-16 0)
(3 -1.50317e-16 0)
(3 -6.75809e-17 0)
(3 -6.19083e-17 0)
(3 -1.35688e-16 0)
(3 -9.71092e-17 0)
(3 -1.28435e-16 0)
(3 -1.98279e-16 0)
(3 -1.45214e-16 0)
(3 -7.44216e-17 0)
(3 -9.1491e-17 0)
(3 -9.50413e-17 0)
(3 -9.69037e-17 0)
(3 -7.49308e-17 0)
(3 -7.50592e-17 0)
(3 -8.71498e-17 0)
(3 -1.164e-16 0)
(3 -1.18315e-16 0)
(3 -9.96245e-17 0)
(3 -1.18724e-16 0)
(3 -5.51556e-17 0)
(3 -7.25173e-17 0)
(3 3.28624e-17 0)
(3 3.46522e-18 0)
(3 -6.07471e-17 0)
(3 -5.56372e-17 0)
(3 -5.57346e-17 0)
(3 -5.58323e-17 0)
(3 -7.51563e-17 0)
(3 -7.87903e-17 0)
(3 -7.89291e-17 0)
(3 -7.73113e-17 0)
(3 -1.40815e-17 0)
(3 -1.23431e-17 0)
(3 -2.473e-17 0)
(3 -7.7861e-17 0)
(3 -3.54544e-17 0)
(3 -4.08453e-17 0)
(3 -1.10301e-16 0)
(3 -1.01588e-16 0)
(3 -1.03555e-16 0)
(3 -1.78865e-17 0)
(3 8.95932e-18 0)
(3 1.32837e-16 0)
(3 -1.49262e-16 0)
(3 -8.46749e-17 0)
(3 -3.97069e-17 0)
(3 5.60523e-17 0)
(3 8.33257e-17 0)
(3 4.89977e-17 0)
(3 1.27263e-17 0)
(3 1.3296e-16 0)
(3 -1.2773e-16 0)
(3 -1.27964e-16 0)
(3 -6.22684e-17 0)
(3 -6.42179e-17 0)
(3 3.30873e-17 0)
(3 3.1307e-17 0)
(3 3.1365e-17 0)
(3 -3.08687e-16 0)
(3 2.62965e-16 0)
(3 2.22638e-16 0)
(3 1.76584e-16 0)
(3 2.4768e-16 0)
(3 2.18292e-16 0)
(3 1.68232e-16 0)
(3 -1.87277e-17 0)
(3 -3.75259e-17 0)
(3 -1.31589e-16 0)
(3 -1.09237e-16 0)
(3 -5.84959e-17 0)
(3 2.96816e-16 0)
(3 3.23899e-16 0)
(3 2.92254e-16 0)
(3 2.28166e-16 0)
(3 1.33351e-16 0)
(3 1.20246e-16 0)
(3 3.63344e-17 0)
(3 3.64043e-17 0)
(3 -1.3438e-17 0)
(3 1.09635e-16 0)
(3 8.28673e-17 0)
(3 -1.60263e-16 0)
(3 -1.50902e-16 0)
(3 -1.55072e-16 0)
(3 -7.76874e-17 0)
(3 -1.57624e-16 0)
(3 -2.9424e-16 0)
(3 -1.18197e-17 0)
(3 -9.3027e-17 0)
(3 -6.94654e-17 0)
(3 -6.1098e-17 0)
(3 -4.42017e-17 0)
(3 -6.1307e-17 0)
(3 -1.63766e-16 0)
(3 -1.38414e-16 0)
(3 -1.40364e-16 0)
(3 -1.18315e-16 0)
(3 -1.23672e-16 0)
(3 -9.80761e-17 0)
(3 -1.17206e-16 0)
(3 -1.38128e-17 0)
(3 -3.63216e-17 0)
(3 -7.79675e-17 0)
(3 -1.19759e-16 0)
(3 -1.5648e-17 0)
(3 -1.56753e-17 0)
(3 8.52311e-32 0)
(3 2.62173e-17 0)
(3 3.3267e-17 0)
(3 1.05239e-17 0)
(3 5.62264e-17 0)
(3 9.15295e-17 0)
(3 1.93963e-17 0)
(3 3.35622e-17 0)
(3 -1.76957e-17 0)
(3 -4.60907e-17 0)
(3 -7.99147e-17 0)
(3 2.31277e-17 0)
(3 4.81205e-17 0)
(3 4.28505e-17 0)
(3 1.43092e-17 0)
(3 3.26119e-16 0)
(3 -2.15412e-16 0)
(3 6.29419e-17 0)
(3 1.26112e-17 0)
(3 1.08292e-17 0)
(3 -4.33953e-17 0)
(3 -5.61543e-17 0)
(3 -1.05254e-16 0)
(3 -9.27202e-17 0)
(3 -3.4606e-17 0)
(3 -2.73706e-17 0)
(3 3.29051e-17 0)
(3 2.36253e-16 0)
(3 -9.54095e-17 0)
(3 1.28673e-17 0)
(3 1.22674e-31 0)
(3 -7.1955e-17 0)
(3 -6.83917e-17 0)
(3 -3.33335e-17 0)
(3 -3.5251e-17 0)
(3 -3.71756e-17 0)
(3 -7.2628e-17 0)
(3 -6.15696e-17 0)
(3 -5.79467e-17 0)
(3 -2.20986e-16 0)
(3 -4.31548e-17 0)
(3 -8.45927e-17 0)
(3 -8.66361e-17 0)
(3 1.56618e-16 0)
(3 1.7393e-16 0)
(3 7.19775e-17 0)
(3 5.88304e-17 0)
(3 8.36607e-17 0)
(3 3.61954e-17 0)
(3 5.91688e-17 0)
(3 3.82468e-18 0)
(3 1.20709e-16 0)
(3 3.83943e-17 0)
(3 -1.15405e-17 0)
(3 -3.66158e-17 0)
(3 3.86177e-17 0)
(3 1.54771e-17 0)
(3 1.55072e-17 0)
(3 -4.27281e-17 0)
(3 -8.95151e-17 0)
(3 -1.27136e-16 0)
(3 1.01312e-17 0)
(3 -2.87538e-17 0)
(3 -2.88027e-17 0)
(3 -3.0549e-17 0)
(3 -4.25016e-17 0)
(3 -1.07287e-16 0)
(3 1.19412e-17 0)
(3 -5.12646e-18 0)
(3 1.71176e-17 0)
(3 1.20029e-16 0)
(3 5.49653e-17 0)
(3 7.74285e-17 0)
(3 6.54973e-17 0)
(3 1.20862e-17 0)
(3 -1.38368e-17 0)
(3 -1.28213e-16 0)
(3 -7.81035e-17 0)
(3 -1.00842e-16 0)
(3 -8.01185e-17 0)
(3 -7.67694e-17 0)
(3 2.27217e-17 0)
(3 2.97652e-17 0)
(3 3.33256e-17 0)
(3 -8.78538e-18 0)
(3 -3.8724e-17 0)
(3 -2.29229e-17 0)
(3 1.02453e-16 0)
(3 9.0248e-17 0)
(3 5.6727e-17 0)
(3 6.21559e-17 0)
(3 3.2023e-17 0)
(3 -3.38626e-17 0)
(3 -1.07126e-17 0)
(3 -1.03741e-16 0)
(3 -3.40454e-17 0)
(3 -1.99256e-16 0)
(3 1.09699e-16 0)
(3 6.48574e-17 0)
(3 -1.08292e-17 0)
(3 3.61627e-17 0)
(3 3.62286e-17 0)
(3 3.62946e-17 0)
(3 3.63609e-17 0)
(3 1.09282e-17 0)
(3 1.09483e-17 0)
(3 -1.06027e-16 0)
(3 -7.14255e-17 0)
(3 1.06418e-16 0)
(3 4.59546e-17 0)
(3 5.52476e-17 0)
(3 5.904e-17 0)
(3 4.8059e-17 0)
(3 -1.07408e-16 0)
(3 -1.05753e-16 0)
(3 -1.04092e-16 0)
(3 -1.76914e-16 0)
(3 -1.32468e-16 0)
(3 -1.86925e-16 0)
(3 -1.0862e-16 0)
(3 -1.18207e-16 0)
(3 -1.1279e-16 0)
(3 -8.47528e-17 0)
(3 -2.22662e-16 0)
(3 -1.28557e-16 0)
(3 -1.3259e-16 0)
(3 -1.19559e-16 0)
(3 -6.46469e-17 0)
(3 -8.00108e-17 0)
(3 -7.82555e-17 0)
(3 -8.41429e-17 0)
(3 -1.09213e-16 0)
(3 -7.10294e-17 0)
(3 -3.30829e-16 0)
(3 -2.4282e-16 0)
(3 -3.72661e-16 0)
(3 -2.10875e-16 0)
(3 -2.09348e-16 0)
(3 -2.07814e-16 0)
(3 -1.84868e-16 0)
(3 -4.45973e-62 0)
(3 -3.20821e-17 0)
(3 1.18398e-17 0)
(3 -1.01657e-17 0)
(3 2.0366e-17 0)
(3 4.08016e-17 0)
(3 5.9604e-17 0)
(3 1.17706e-16 0)
(3 9.74027e-17 0)
(3 1.64329e-16 0)
(3 1.4575e-16 0)
(3 2.0612e-16 0)
(3 1.6174e-16 0)
(3 1.34442e-16 0)
(3 7.94237e-17 0)
(3 1.22802e-16 0)
(3 1.594e-16 0)
(3 3.19356e-16 0)
(3 2.608e-16 0)
(3 1.88104e-16 0)
(3 2.00647e-16 0)
(3 1.04869e-16 0)
(3 5.42778e-17 0)
(3 5.43734e-17 0)
(3 -4.74411e-17 0)
(3 3.52037e-17 0)
(3 2.82128e-17 0)
(3 -1.2365e-17 0)
(3 7.25523e-17 0)
(3 7.79997e-17 0)
(3 6.57076e-17 0)
(3 0 0)
(3 1.24757e-17 0)
(3 1.24981e-17 0)
(3 3.57729e-17 0)
(3 1.25431e-17 0)
(3 2.15412e-17 0)
(3 -5.03535e-17 0)
(3 -5.58494e-17 0)
(3 2.16583e-17 0)
(3 -3.61627e-17 0)
(3 3.26057e-17 0)
(3 1.08884e-17 0)
(3 2.90887e-17 0)
(3 -8.3783e-17 0)
(3 -9.67095e-17 0)
(3 -1.29792e-16 0)
(3 -1.33694e-16 0)
(3 -1.52288e-16 0)
(3 -1.15806e-16 0)
(3 -9.57625e-17 0)
(3 5.535e-18 0)
(3 1.10905e-17 0)
(3 4.44447e-17 0)
(3 3.71063e-17 0)
(3 3.53168e-17 0)
(3 5.77299e-17 0)
(3 5.78381e-17 0)
(3 1.12155e-17 0)
(3 2.99642e-17 0)
(3 1.12578e-17 0)
(3 1.1279e-17 0)
(3 3.76679e-18 0)
(3 -1.09444e-16 0)
(3 -6.04975e-17 0)
(3 -8.52365e-17 0)
(3 3.79551e-18 0)
(3 -1.19787e-16 0)
(3 -8.38208e-17 0)
(3 -5.53515e-17 0)
(3 1.1474e-17 0)
(3 -2.49082e-17 0)
(3 -3.64745e-17 0)
(3 1.13482e-16 0)
(3 8.47944e-17 0)
(3 1.83434e-16 0)
(3 1.62509e-16 0)
(3 1.58949e-16 0)
(3 1.80623e-16 0)
(3 1.84868e-16 0)
(3 1.35819e-16 0)
(3 7.59839e-17 0)
(3 7.78044e-17 0)
(3 -8.81024e-17 0)
(3 1.62928e-16 0)
(3 1.25805e-16 0)
(3 1.20911e-16 0)
(3 1.41589e-16 0)
(3 1.2987e-16 0)
(3 8.90114e-17 0)
(3 -7.20176e-17 0)
(3 -3.95063e-17 0)
(3 -1.37651e-17 0)
(3 -2.41306e-17 0)
(3 -2.76256e-17 0)
(3 -8.99393e-17 0)
(3 -7.62349e-17 0)
(3 -1.68356e-16 0)
(3 -1.5648e-16 0)
(3 -1.23661e-16 0)
(3 -1.23878e-16 0)
(3 -1.13608e-16 0)
(3 -9.9801e-17 0)
(3 -9.1207e-17 0)
(3 -1.19481e-16 0)
(3 -1.63697e-16 0)
(3 -1.83383e-16 0)
(3 -2.29636e-16 0)
(3 -2.37122e-16 0)
(3 -2.14499e-16 0)
(3 -1.27864e-16 0)
(3 -3.55811e-18 0)
(3 -7.12896e-18 0)
(3 -2.32107e-17 0)
(3 -5.36594e-17 0)
(3 -5.55478e-17 0)
(3 -1.0232e-16 0)
(3 -8.45219e-17 0)
(3 -7.38653e-17 0)
(3 -1.2273e-16 0)
(3 -1.71773e-16 0)
(3 -2.11937e-16 0)
(3 -1.6877e-16 0)
(3 -1.50898e-16 0)
(3 -1.52995e-16 0)
(3 -1.40503e-16 0)
(3 -1.20652e-16 0)
(3 -1.83142e-18 0)
(3 -1.96323e-16 0)
(3 -1.74628e-16 0)
(3 -1.41802e-16 0)
(3 -2.01105e-16 0)
(3 -1.86691e-16 0)
(3 -1.55556e-16 0)
(3 -4.45275e-17 0)
(3 -5.94809e-17 0)
(3 -4.46941e-17 0)
(3 -7.46298e-18 0)
(3 3.7385e-17 0)
(3 -7.49106e-18 0)
(3 -9.38148e-18 0)
(3 -9.39919e-18 0)
(3 -4.33181e-17 0)
(3 4.90611e-17 0)
(3 1.09652e-16 0)
(3 1.0039e-16 0)
(3 8.72968e-17 0)
(3 8.55621e-17 0)
(3 9.9061e-17 0)
(3 2.09954e-16 0)
(3 1.91234e-16 0)
(3 1.5903e-16 0)
(3 1.3438e-16 0)
(3 2.21194e-16 0)
(3 2.1584e-16 0)
(3 3.51421e-16 0)
(3 1.48967e-16 0)
(3 1.27935e-16 0)
(3 1.10705e-16 0)
(3 1.10921e-16 0)
(3 2.93985e-17 0)
(3 -2.02624e-17 0)
(3 1.01484e-17 0)
(3 8.30196e-17 0)
(3 -2.20632e-17 0)
(3 -5.95023e-17 0)
(3 -7.32278e-17 0)
(3 -1.2453e-16 0)
(3 -7.5188e-17 0)
(3 -8.55879e-17 0)
(3 -2.69209e-16 0)
(3 4.29416e-17 0)
(3 5.33396e-17 0)
(3 2.93014e-17 0)
(3 -8.11503e-17 0)
(3 -1.05506e-16 0)
(3 -1.54202e-16 0)
(3 -2.10012e-16 0)
(3 -1.65173e-16 0)
(3 -2.68223e-16 0)
(3 -1.37836e-16 0)
(3 -3.14608e-17 0)
(3 -2.45125e-17 0)
(3 -2.63097e-17 0)
(3 4.68179e-32 0)
(3 -5.8086e-17 0)
(3 -3.5266e-17 0)
(3 7.24236e-17 0)
(3 1.2387e-17 0)
(3 1.06363e-17 0)
(3 -3.019e-17 0)
(3 -6.4046e-17 0)
(3 -4.81205e-17 0)
(3 6.60612e-17 0)
(3 7.33345e-17 0)
(3 9.67607e-17 0)
(3 8.07793e-17 0)
(3 5.57485e-17 0)
(3 5.7651e-17 0)
(3 3.24875e-17 0)
(3 -8.49825e-17 0)
(3 -1.48537e-16 0)
(3 -1.14328e-16 0)
(3 -1.12719e-16 0)
(3 -1.07461e-16 0)
(3 -9.12354e-17 0)
(3 -5.48418e-17 0)
(3 -1.06222e-16 0)
(3 1.00914e-16 0)
(3 5.14692e-17 0)
(3 2.76238e-17 0)
(3 -9.22499e-18 0)
(3 8.6876e-17 0)
(3 1.0926e-16 0)
(3 6.30807e-17 0)
(3 7.43511e-17 0)
(3 2.49542e-16 0)
(3 -3.54492e-17 0)
(3 -1.68232e-17 0)
(3 1.87277e-18 0)
(3 5.81651e-17 0)
(3 3.75968e-17 0)
(3 2.42958e-16 0)
(3 1.52844e-16 0)
(3 1.32338e-16 0)
(3 1.30696e-16 0)
(3 1.91673e-16 0)
(3 2.12955e-16 0)
(3 3.77194e-16 0)
(3 3.24474e-16 0)
(3 2.90675e-16 0)
(3 2.5483e-16 0)
(3 2.57242e-16 0)
(3 3.09671e-16 0)
(3 2.8329e-16 0)
(3 3.32112e-16 0)
(3 2.43764e-16 0)
(3 2.40362e-16 0)
(3 2.19467e-16 0)
(3 1.84868e-16 0)
(3 3.67684e-16 0)
(3 -3.37706e-17 0)
(3 -1.38695e-16 0)
(3 -1.16905e-16 0)
(3 -1.59534e-16 0)
(3 -1.41105e-16 0)
(3 -1.39644e-16 0)
(3 -6.48239e-17 0)
(3 -7.17704e-17 0)
(3 -9.07231e-17 0)
(3 -8.23059e-17 0)
(3 -7.90126e-17 0)
(3 -6.53841e-17 0)
(3 -4.30903e-17 0)
(3 -3.79852e-17 0)
(3 1.90256e-17 0)
(3 2.02716e-16 0)
(3 1.80506e-16 0)
(3 1.4257e-16 0)
(3 2.38614e-16 0)
(3 1.77965e-16 0)
(3 9.96258e-17 0)
(3 9.80501e-17 0)
(3 9.64689e-17 0)
(3 1.00153e-16 0)
(3 9.15295e-17 0)
(3 1.00508e-16 0)
(3 4.946e-17 0)
(3 3.00827e-17 0)
(3 9.04087e-17 0)
(3 1.10105e-16 0)
(3 1.45883e-16 0)
(3 1.22975e-16 0)
(3 1.03555e-16 0)
(3 1.00164e-16 0)
(3 1.48725e-16 0)
(3 5.74431e-17 0)
(3 4.31601e-17 0)
(3 3.9635e-17 0)
(3 1.2634e-17 0)
(3 1.71773e-16 0)
(3 1.57594e-16 0)
(3 1.27031e-16 0)
(3 1.12719e-16 0)
(3 9.10685e-17 0)
(3 1.73347e-16 0)
(3 6.39821e-17 0)
(3 2.25265e-16 0)
(3 5.87135e-17 0)
(3 7.53656e-17 0)
(3 9.39209e-17 0)
(3 1.53135e-16 0)
(3 1.07209e-16 0)
(3 1.77779e-16 0)
(3 1.29872e-16 0)
(3 1.43126e-16 0)
(3 2.4768e-16 0)
(3 2.33218e-16 0)
(3 2.14964e-16 0)
(3 1.5544e-16 0)
(3 1.80124e-16 0)
(3 1.44748e-16 0)
(3 1.37488e-16 0)
(3 1.22653e-16 0)
(3 -4.72637e-17 0)
(3 5.87185e-17 0)
(3 3.41596e-17 0)
(3 1.14083e-17 0)
(3 -1.33351e-17 0)
(3 -4.00821e-17 0)
(3 -5.16331e-17 0)
(3 -3.83204e-17 0)
(3 -3.83943e-17 0)
(3 -6.15495e-17 0)
(3 -6.16687e-17 0)
(3 -2.51015e-17 0)
(3 -4.83659e-17 0)
(3 1.51195e-16 0)
(3 8.15717e-17 0)
(3 7.00553e-17 0)
(3 -6.02674e-19 0)
(3 3.20821e-17 0)
(3 3.21366e-17 0)
(3 3.21913e-17 0)
(3 1.86688e-17 0)
(3 1.02004e-17 0)
(3 1.02178e-17 0)
(3 -4.09414e-17 0)
(3 -1.02529e-17 0)
(3 -8.55879e-18 0)
(3 1.02882e-17 0)
(3 1.0306e-17 0)
(3 2.06476e-17 0)
(3 1.08588e-16 0)
(3 1.10503e-16 0)
(3 3.63216e-17 0)
(3 1.03957e-17 0)
(3 -1.04138e-17 0)
(3 3.47733e-17 0)
(3 7.31516e-17 0)
(3 -5.23427e-18 0)
(3 -3.49564e-17 0)
(3 -3.50179e-17 0)
(3 -3.50796e-17 0)
(3 -3.51415e-17 0)
(3 -3.52037e-17 0)
(3 -1.23431e-17 0)
(3 -7.59565e-17 0)
(3 -7.7861e-17 0)
(3 -4.96362e-17 0)
(3 -1.06553e-17 0)
(3 -2.66858e-17 0)
(3 -2.31691e-17 0)
(3 -1.46406e-16 0)
(3 -3.75616e-17 0)
(3 -3.40454e-17 0)
(3 1.05911e-16 0)
(3 8.81186e-17 0)
(3 6.84605e-17 0)
(3 3.24875e-17 0)
(3 1.48267e-16 0)
(3 1.48537e-16 0)
(3 1.56067e-16 0)
(3 1.52716e-16 0)
(3 1.23853e-16 0)
(3 3.64942e-17 0)
(3 1.24308e-16 0)
(3 -1.72154e-16 0)
(3 3.39438e-16 0)
(3 1.74628e-16 0)
(3 2.2099e-16 0)
(3 1.9557e-16 0)
(3 1.36783e-16 0)
(3 6.11115e-17 0)
(3 3.89616e-17 0)
(3 -3.53168e-17 0)
(3 -3.53829e-17 0)
(3 1.30602e-17 0)
(3 -4.86005e-17 0)
(3 1.32966e-16 0)
(3 2.51424e-16 0)
(3 2.01143e-16 0)
(3 2.0529e-16 0)
(3 1.47183e-16 0)
(3 1.79602e-16 0)
(3 8.52365e-17 0)
(3 1.06274e-16 0)
(3 3.61262e-17 0)
(3 -1.56212e-16 0)
(3 -1.52694e-16 0)
(3 -1.7211e-16 0)
(3 -1.43701e-16 0)
(3 -1.40139e-16 0)
(3 -1.15405e-17 0)
(3 -1.09847e-16 0)
(3 -1.1006e-16 0)
(3 -6.57776e-17 0)
(3 -1.41503e-16 0)
(3 -1.22358e-16 0)
(3 -8.75691e-17 0)
(3 -2.85554e-16 0)
(3 -1.01312e-17 0)
(3 -1.18398e-17 0)
(3 -1.01657e-17 0)
(3 2.0366e-17 0)
(3 5.2702e-17 0)
(3 5.44951e-17 0)
(3 2.55884e-17 0)
(3 3.24676e-17 0)
(3 1.02705e-17 0)
(3 1.02882e-17 0)
(3 1.0306e-17 0)
(3 2.92508e-17 0)
(3 1.44783e-16 0)
(3 1.34675e-16 0)
(3 9.68577e-17 0)
(3 1.21283e-17 0)
(3 8.67816e-17 0)
(3 -1.19968e-16 0)
(3 -7.6635e-17 0)
(3 -1.20388e-16 0)
(3 -5.76781e-17 0)
(3 -5.60287e-17 0)
(3 5.08654e-17 0)
(3 5.27123e-17 0)
(3 5.45657e-17 0)
(3 5.46623e-17 0)
(3 7.77229e-17 0)
(3 3.36218e-17 0)
(3 5.6727e-17 0)
(3 -3.90694e-17 0)
(3 -8.00575e-17 0)
(3 -1.22975e-16 0)
(3 -6.78466e-17 0)
(3 -1.23417e-16 0)
(3 -1.23639e-16 0)
(3 -1.25657e-16 0)
(3 -1.02505e-16 0)
(3 -1.20707e-16 0)
(3 -8.12187e-17 0)
(3 -2.53139e-17 0)
(3 -2.71714e-17 0)
(3 -9.43659e-17 0)
(3 -9.63563e-17 0)
(3 -4.00701e-17 0)
(3 -4.01436e-17 0)
(3 -1.11512e-16 0)
(3 -1.33694e-16 0)
(3 -2.44028e-16 0)
(3 -2.2242e-16 0)
(3 -2.3204e-16 0)
(3 -1.3284e-16 0)
(3 -1.0536e-16 0)
(3 -1.2963e-16 0)
(3 -2.85718e-16 0)
(3 -2.89969e-16 0)
(3 -2.4768e-16 0)
(3 -2.96654e-16 0)
(3 -1.40194e-16 0)
(3 -2.15368e-16 0)
(3 -2.79568e-16 0)
(3 -2.81976e-16 0)
(3 -2.76859e-16 0)
(3 -2.35871e-16 0)
(3 -1.32338e-16 0)
(3 -1.49637e-16 0)
(3 -1.84082e-16 0)
(3 -2.56686e-16 0)
(3 -2.28602e-16 0)
(3 -2.29041e-16 0)
(3 -1.89321e-16 0)
(3 2.68243e-17 0)
(3 -2.49563e-17 0)
(3 -1.32716e-16 0)
(3 -3.66158e-17 0)
(3 -5.98574e-17 0)
(3 5.15491e-33 0)
(3 -8.91665e-17 0)
(3 -2.33062e-17 0)
(3 6.22714e-17 0)
(3 2.19152e-17 0)
(3 -3.37706e-17 0)
(3 -3.3828e-17 0)
(3 8.64082e-17 0)
(3 1.80886e-31 0)
(3 2.04008e-17 0)
(3 2.72476e-17 0)
(3 2.90001e-17 0)
(3 3.24676e-17 0)
(3 1.88293e-17 0)
(3 1.71471e-18 0)
(3 6.87066e-18 0)
(3 9.97967e-17 0)
(3 -1.03417e-16 0)
(3 -1.7266e-18 0)
(3 4.49696e-17 0)
(3 -1.73261e-18 0)
(3 1.21494e-17 0)
(3 1.21706e-17 0)
(3 3.83175e-17 0)
(3 5.23427e-17 0)
(3 6.46694e-17 0)
(3 7.00358e-17 0)
(3 8.7699e-18 0)
(3 -3.33844e-17 0)
(3 -7.04073e-18 0)
(3 7.93485e-17 0)
(3 9.00879e-17 0)
(3 1.20331e-16 0)
(3 9.21814e-17 0)
(3 -1.18984e-16 0)
(3 5.33717e-17 0)
(3 3.74271e-17 0)
(3 1.69617e-16 0)
(3 1.14473e-16 0)
(3 3.58373e-17 0)
(3 3.59019e-17 0)
(3 3.41684e-17 0)
(3 1.80159e-17 0)
(3 -2.34632e-17 0)
(3 6.32848e-17 0)
(3 3.804e-17 0)
(3 -4.24647e-16 0)
(3 -2.03621e-16 0)
(3 1.4571e-17 0)
(3 7.29883e-17 0)
(3 1.09684e-17 0)
(3 -5.31112e-17 0)
(3 -1.99993e-16 0)
(3 -1.6176e-16 0)
(3 -1.56535e-16 0)
(3 -1.75275e-16 0)
(3 -1.62661e-16 0)
(3 -1.64816e-16 0)
(3 -7.42126e-17 0)
(3 -1.30114e-17 0)
(3 -1.06149e-16 0)
(3 -9.32873e-18 0)
(3 -2.80387e-17 0)
(3 -5.99285e-17 0)
(3 -1.53856e-16 0)
(3 -1.40988e-16 0)
(3 -1.54438e-16 0)
(3 -9.43482e-18 0)
(3 -3.21393e-17 0)
(3 -3.59888e-17 0)
(3 3.03641e-17 0)
(3 7.60552e-17 0)
(3 8.00108e-17 0)
(3 1.31698e-16 0)
(3 1.24302e-16 0)
(3 1.28373e-16 0)
(3 1.82373e-16 0)
(3 2.32734e-16 0)
(3 4.29753e-16 0)
(3 4.07416e-16 0)
(3 2.76653e-16 0)
(3 3.7605e-16 0)
(3 4.8943e-16 0)
(3 4.37846e-16 0)
(3 4.2423e-16 0)
(3 7.59839e-17 0)
(3 7.6113e-17 0)
(3 3.38856e-17 0)
(3 3.22462e-17 0)
(3 1.19005e-17 0)
(3 1.19208e-17 0)
(3 1.19412e-17 0)
(3 4.10117e-17 0)
(3 5.6488e-17 0)
(3 1.26888e-16 0)
(3 1.35695e-16 0)
(3 -1.72063e-18 0)
(3 5.68792e-17 0)
(3 1.00143e-16 0)
(3 1.53935e-16 0)
(3 1.17818e-16 0)
(3 8.33104e-17 0)
(3 7.12852e-17 0)
(3 9.92772e-17 0)
(3 1.4307e-16 0)
(3 1.50313e-16 0)
(3 1.48826e-16 0)
(3 6.84052e-17 0)
(3 1.12453e-16 0)
(3 1.76018e-17 0)
(3 -6.17155e-17 0)
(3 -5.12264e-17 0)
(3 -3.36218e-17 0)
(3 -4.78634e-17 0)
(3 8.16906e-17 0)
(3 -1.36987e-16 0)
(3 3.20803e-17 0)
(3 -2.44605e-16 0)
(3 -2.16426e-16 0)
(3 -7.52583e-17 0)
(3 -2.01051e-16 0)
(3 -1.65447e-16 0)
(3 -1.26112e-16 0)
(3 -5.59506e-17 0)
(3 -1.10296e-16 0)
(3 -8.15142e-17 0)
(3 3.99241e-17 0)
(3 5.45413e-17 0)
(3 4.37129e-17 0)
(3 3.64942e-17 0)
(3 4.75295e-17 0)
(3 5.31112e-17 0)
(3 6.78875e-17 0)
(3 1.13967e-16 0)
(3 1.27069e-16 0)
(3 6.642e-17 0)
(3 7.94823e-17 0)
(3 9.4445e-17 0)
(3 1.5028e-16 0)
(3 1.54279e-16 0)
(3 1.26633e-16 0)
(3 5.97039e-17 0)
(3 7.10315e-17 0)
(3 1.53567e-16 0)
(3 1.40722e-16 0)
(3 1.1655e-16 0)
(3 1.01703e-16 0)
(3 -8.49134e-17 0)
(3 -6.99503e-17 0)
(3 5.87185e-17 0)
(3 -8.35013e-17 0)
(3 -6.08442e-17 0)
(3 1.92407e-16 0)
(3 -5.15341e-17 0)
(3 1.1474e-17 0)
(3 -2.14594e-16 0)
(3 3.07154e-17 0)
(3 -2.32734e-16 0)
(3 -3.54595e-16 0)
(3 -1.58332e-16 0)
(3 -2.18614e-16 0)
(3 -1.00797e-16 0)
(3 -1.34011e-16 0)
(3 -1.84868e-16 0)
(3 -1.23934e-16 0)
(3 -5.57215e-17 0)
(3 -6.7656e-18 0)
(3 -7.62425e-17 0)
(3 -7.63725e-17 0)
(3 -5.78022e-17 0)
(3 -5.44951e-17 0)
(3 -8.18828e-17 0)
(3 -8.88586e-17 0)
(3 -2.75593e-16 0)
(3 4.40679e-16 0)
(3 -3.0918e-17 0)
(3 -6.96856e-16 0)
(3 -1.87874e-16 0)
(3 1.08776e-16 0)
(3 1.19342e-16 0)
(3 5.19783e-18 0)
(3 -5.2069e-17 0)
(3 -7.65012e-17 0)
(3 -5.74763e-17 0)
(3 1.57028e-17 0)
(3 2.09739e-17 0)
(3 8.75448e-18 0)
(3 2.10478e-17 0)
(3 1.66922e-16 0)
(3 -8.6249e-17 0)
(3 1.11088e-16 0)
(3 1.04219e-16 0)
(3 -1.2387e-17 0)
(3 -1.2409e-17 0)
(3 -1.77588e-18 0)
(3 5.51507e-17 0)
(3 5.70317e-17 0)
(3 5.7134e-17 0)
(3 4.11388e-17 0)
(3 3.58373e-17 0)
(3 8.25744e-17 0)
(3 5.93452e-17 0)
(3 5.7651e-17 0)
(3 6.85847e-17 0)
(3 1.97087e-16 0)
(3 1.82954e-16 0)
(3 1.6514e-16 0)
(3 3.63609e-17 0)
(3 1.05639e-16 0)
(3 1.05833e-16 0)
(3 1.06027e-16 0)
(3 1.42851e-16 0)
(3 1.61462e-16 0)
(3 2.18744e-16 0)
(3 1.76792e-16 0)
(3 1.7712e-16 0)
(3 1.62661e-16 0)
(3 1.74075e-16 0)
(3 1.744e-16 0)
(3 1.54279e-16 0)
(3 2.25333e-16 0)
(3 2.23889e-16 0)
(3 2.22441e-16 0)
(3 1.74167e-16 0)
(3 1.3697e-16 0)
(3 1.25949e-16 0)
(3 1.13004e-17 0)
(3 2.09453e-16 0)
(3 -1.22886e-16 0)
(3 1.68579e-16 0)
(3 2.27731e-17 0)
(3 1.33097e-17 0)
(3 -9.52509e-18 0)
(3 1.52694e-17 0)
(3 9.94416e-17 0)
(3 -1.30289e-16 0)
(3 -1.55497e-16 0)
(3 -2.0773e-16 0)
(3 -2.8329e-16 0)
(3 -3.0701e-16 0)
(3 -2.82457e-16 0)
(3 -3.58605e-16 0)
(3 -6.11788e-16 0)
(3 -5.48767e-16 0)
(3 -4.55834e-16 0)
(3 -5.4033e-17 0)
(3 -7.6113e-17 0)
(3 -7.62425e-17 0)
(3 -7.63725e-17 0)
(3 -7.65029e-17 0)
(3 -7.66338e-17 0)
(3 2.21766e-17 0)
(3 -1.02529e-17 0)
(3 4.79292e-17 0)
(3 5.65853e-17 0)
(3 2.0612e-17 0)
(3 -2.75301e-17 0)
(3 -6.205e-17 0)
(3 -3.79852e-17 0)
(3 -5.53472e-17 0)
(3 -2.94544e-17 0)
(3 -3.47126e-17 0)
(3 -3.47733e-17 0)
(3 -4.7026e-17 0)
(3 -1.01196e-16 0)
(3 -8.03998e-17 0)
(3 3.85197e-17 0)
(3 -1.21025e-16 0)
(3 3.16274e-17 0)
(3 3.34435e-17 0)
(3 -3.35027e-17 0)
(3 2.11971e-17 0)
(3 -5.30871e-17 0)
(3 6.55906e-17 0)
(3 1.42071e-16 0)
(3 7.29413e-17 0)
(3 -5.34672e-18 0)
(3 3.57087e-18 0)
(3 9.12209e-17 0)
(3 6.80909e-17 0)
(3 -1.7951e-17 0)
(3 -2.33784e-17 0)
(3 -1.26112e-17 0)
(3 6.67798e-17 0)
(3 -1.2657e-17 0)
(3 1.268e-17 0)
(3 -9.43659e-17 0)
(3 -1.12719e-16 0)
(3 -5.82838e-17 0)
(3 -8.02872e-17 0)
(3 -8.04346e-17 0)
(3 -1.57502e-16 0)
(3 -1.13757e-16 0)
(3 -1.70951e-16 0)
(3 -1.60218e-16 0)
(3 -5.7195e-17 0)
(3 -5.91496e-17 0)
(3 -2.40742e-17 0)
(3 -4.63829e-17 0)
(3 -6.6916e-17 0)
(3 -1.13598e-16 0)
(3 -1.39931e-16 0)
(3 -1.79448e-16 0)
(3 -1.10493e-16 0)
(3 -1.10701e-16 0)
(3 -1.07151e-16 0)
(3 -1.0547e-16 0)
(3 -1.75488e-16 0)
(3 2.83582e-17 0)
(3 -2.00779e-16 0)
(3 -1.19559e-16 0)
(3 -6.27456e-17 0)
(3 -1.33351e-16 0)
(3 -1.54602e-16 0)
(3 -1.58724e-16 0)
(3 -1.74358e-16 0)
(3 -2.09249e-16 0)
(3 -1.55797e-16 0)
(3 7.13044e-17 0)
(3 -6.17883e-17 0)
(3 -4.64313e-17 0)
(3 -8.52897e-17 0)
(3 -8.73983e-17 0)
(3 -8.36772e-17 0)
(3 -1.02068e-16 0)
(3 5.23444e-17 0)
(3 5.24334e-17 0)
(3 3.21913e-17 0)
(3 3.22462e-17 0)
(3 3.23012e-17 0)
(3 3.23565e-17 0)
(3 -1.02353e-17 0)
(3 1.12782e-16 0)
(3 -6.16233e-17 0)
(3 -2.74353e-17 0)
(3 -1.88943e-17 0)
(3 -1.54857e-17 0)
(3 7.23917e-17 0)
(3 6.38843e-17 0)
(3 1.90256e-17 0)
(3 -7.79675e-17 0)
(3 -7.63678e-17 0)
(3 -7.82399e-17 0)
(3 -1.25403e-16 0)
(3 -5.93218e-17 0)
(3 -1.206e-16 0)
(3 -3.50179e-17 0)
(3 -5.96353e-17 0)
(3 -1.15967e-16 0)
(3 -1.02091e-16 0)
(3 -1.46354e-16 0)
(3 -1.32482e-16 0)
(3 -7.96306e-17 0)
(3 -9.21814e-17 0)
(3 -5.50524e-17 0)
(3 -2.59742e-16 0)
(3 -2.20998e-16 0)
(3 -1.96398e-16 0)
(3 -2.05694e-16 0)
(3 -1.48725e-16 0)
(3 -1.59764e-16 0)
(3 -1.36674e-16 0)
(3 -1.02691e-16 0)
(3 -3.60972e-17 0)
(3 -1.01256e-16 0)
(3 9.05714e-17 0)
(3 -1.14328e-16 0)
(3 -1.25445e-16 0)
(3 -1.52995e-16 0)
(3 -1.66048e-16 0)
(3 -1.33448e-16 0)
(3 -1.88636e-16 0)
(3 -1.52288e-16 0)
(3 -1.52569e-16 0)
(3 -1.54693e-16 0)
(3 -1.5498e-16 0)
(3 -1.58965e-16 0)
(3 -2.01853e-16 0)
(3 -1.87387e-16 0)
(3 -1.65431e-16 0)
(3 -1.84363e-16 0)
(3 -2.46278e-16 0)
(3 -2.07487e-16 0)
(3 -2.49078e-16 0)
(3 -2.25155e-16 0)
(3 -2.25581e-16 0)
(3 -1.73272e-16 0)
(3 -1.90583e-16 0)
(3 -1.32338e-16 0)
(3 -1.57214e-16 0)
(3 -1.57514e-16 0)
(3 -1.44505e-16 0)
(3 -6.09606e-17 0)
(3 -1.31698e-16 0)
(3 -1.20477e-16 0)
(3 6.13126e-17 0)
(3 3.64745e-17 0)
(3 6.15495e-17 0)
(3 3.66158e-17 0)
(3 3.86177e-17 0)
(3 -5.80391e-18 0)
(3 -1.35688e-16 0)
(3 -1.22358e-16 0)
(3 -9.9245e-17 0)
(3 -7.60874e-17 0)
(3 -1.08066e-16 0)
(3 -8.79528e-17 0)
(3 -7.96311e-17 0)
(3 -6.61895e-17 0)
(3 -2.04008e-17 0)
(3 7.49308e-17 0)
(3 1.19412e-17 0)
(3 1.02529e-17 0)
(3 -6.84703e-17 0)
(3 -7.54471e-17 0)
(3 -6.35536e-17 0)
(3 9.63555e-17 0)
(3 -1.56849e-16 0)
(3 -6.21577e-17 0)
(3 -8.64801e-17 0)
(3 -1.35144e-16 0)
(3 -1.28437e-16 0)
(3 -1.09536e-16 0)
(3 -9.05687e-17 0)
(3 -1.39581e-17 0)
(3 -1.04869e-17 0)
(3 -2.97652e-17 0)
(3 -3.50796e-17 0)
(3 -9.3125e-17 0)
(3 -6.68869e-17 0)
(3 -1.05798e-17 0)
(3 -1.05986e-17 0)
(3 -1.06174e-17 0)
(3 -3.1909e-17 0)
(3 -3.37418e-17 0)
(3 5.69298e-17 0)
(3 5.52495e-17 0)
(3 3.57087e-17 0)
(3 5.72367e-17 0)
(3 5.73397e-17 0)
(3 5.20578e-17 0)
(3 3.41684e-17 0)
(3 7.92701e-17 0)
(3 3.42923e-17 0)
(3 -8.13662e-17 0)
(3 -7.97028e-17 0)
(3 -7.98481e-17 0)
(3 -7.99939e-17 0)
(3 -5.82838e-17 0)
(3 -5.6566e-17 0)
(3 -5.66698e-17 0)
(3 -1.95962e-16 0)
(3 8.07311e-17 0)
(3 3.49255e-17 0)
(3 8.10298e-17 0)
(3 -8.118e-17 0)
(3 -7.94823e-17 0)
(3 -5.92596e-17 0)
(3 -8.34891e-17 0)
(3 -8.3645e-17 0)
(3 -8.38015e-17 0)
(3 -8.39586e-17 0)
(3 -9.72009e-17 0)
(3 -1.29221e-16 0)
(3 -1.10701e-16 0)
(3 -1.07151e-16 0)
(3 -1.07353e-16 0)
(3 5.0948e-17 0)
(3 6.99503e-17 0)
(3 1.57214e-16 0)
(3 1.44229e-16 0)
(3 1.1028e-16 0)
(3 8.57258e-17 0)
(3 6.10775e-17 0)
(3 8.60552e-17 0)
(3 1.34121e-17 0)
(3 6.52702e-17 0)
(3 1.09635e-16 0)
(3 4.62515e-17 0)
(3 3.86177e-17 0)
(3 3.67581e-17 0)
(3 1.18243e-16 0)
(3 1.28184e-16 0)
(3 1.34273e-16 0)
(3 1.09657e-16 0)
(3 -1.21574e-16 0)
(3 -5.41248e-17 0)
(3 -5.59112e-17 0)
(3 -5.43093e-17 0)
(3 -9.35036e-17 0)
(3 -6.98219e-17 0)
(3 -8.70004e-17 0)
(3 -8.03145e-17 0)
(3 5.30645e-17 0)
(3 5.48706e-17 0)
(3 8.07302e-17 0)
(3 5.50603e-17 0)
(3 7.75625e-17 0)
(3 6.73375e-17 0)
(3 7.61025e-17 0)
(3 6.2374e-17 0)
(3 3.2977e-17 0)
(3 9.91038e-17 0)
(3 7.14099e-17 0)
(3 8.89827e-17 0)
(3 1.11861e-16 0)
(3 7.52885e-17 0)
(3 3.33256e-17 0)
(3 4.5684e-17 0)
(3 7.04073e-17 0)
(3 7.75852e-17 0)
(3 8.12557e-17 0)
(3 5.66262e-17 0)
(3 1.22318e-16 0)
(3 1.2076e-16 0)
(3 1.42324e-16 0)
(3 1.46144e-16 0)
(3 1.32122e-16 0)
(3 1.10896e-16 0)
(3 1.07512e-16 0)
(3 9.51401e-17 0)
(3 4.13618e-17 0)
(3 3.06271e-17 0)
(3 -6.31701e-17 0)
(3 -8.49825e-17 0)
(3 9.05714e-17 0)
(3 6.17008e-17 0)
(3 5.99954e-17 0)
(3 6.01052e-17 0)
(3 5.83907e-17 0)
(3 6.03259e-17 0)
(3 2.27096e-16 0)
(3 -5.50439e-17 0)
(3 -8.08802e-17 0)
(3 -8.10298e-17 0)
(3 -1.107e-17 0)
(3 -2.40295e-17 0)
(3 -8.1482e-17 0)
(3 -3.33957e-17 0)
(3 -3.15992e-17 0)
(3 9.31128e-17 0)
(3 1.19408e-16 0)
(3 1.53278e-16 0)
(3 1.38585e-16 0)
(3 2.25155e-16 0)
(3 2.12422e-16 0)
(3 1.92106e-16 0)
(3 1.56618e-16 0)
(3 1.66368e-16 0)
(3 8.52365e-17 0)
(3 1.80287e-16 0)
(3 1.67321e-16 0)
(3 1.40971e-16 0)
(3 1.08794e-16 0)
(3 2.06532e-16 0)
(3 1.09213e-16 0)
(3 1.09424e-16 0)
(3 1.32716e-16 0)
(3 1.19483e-16 0)
(3 1.15853e-17 0)
(3 6.19083e-17 0)
(3 2.675e-16 0)
(3 2.486e-16 0)
(3 2.2768e-16 0)
(3 1.6552e-16 0)
(3 9.62462e-17 0)
(3 2.04659e-16 0)
(3 2.05008e-16 0)
(3 1.799e-16 0)
(3 1.46206e-16 0)
(3 5.9604e-17 0)
(3 5.80003e-17 0)
(3 5.46822e-17 0)
(3 5.6488e-17 0)
(3 3.42941e-17 0)
(3 3.0918e-17 0)
(3 6.19428e-17 0)
(3 3.44722e-17 0)
(3 3.4532e-17 0)
(3 5.36176e-17 0)
(3 5.3711e-17 0)
(3 7.63678e-17 0)
(3 4.69439e-17 0)
(3 3.48341e-17 0)
(3 3.48952e-17 0)
(3 3.49564e-17 0)
(3 1.20812e-16 0)
(3 1.05239e-16 0)
(3 1.66922e-16 0)
(3 1.28493e-16 0)
(3 3.35027e-17 0)
(3 3.53286e-17 0)
(3 5.66262e-17 0)
(3 3.1909e-17 0)
(3 -3.55176e-17 0)
(3 1.24534e-17 0)
(3 8.91121e-18 0)
(3 3.39233e-17 0)
(3 -3.93502e-17 0)
(3 -3.76292e-17 0)
(3 -4.84676e-17 0)
(3 -1.02505e-16 0)
(3 -1.02691e-16 0)
(3 -7.21944e-17 0)
(3 -3.43546e-17 0)
(3 -1.05063e-16 0)
(3 -7.07745e-17 0)
(3 -4.72691e-17 0)
(3 -2.36778e-17 0)
(3 3.64942e-18 0)
(3 9.1403e-18 0)
(3 3.4797e-17 0)
(3 1.46784e-17 0)
(3 8.27183e-17 0)
(3 5.89307e-17 0)
(3 7.38e-17 0)
(3 9.05728e-17 0)
(3 2.20372e-16 0)
(3 2.00374e-16 0)
(3 2.00748e-16 0)
(3 1.82501e-16 0)
(3 2.48144e-16 0)
(3 2.35525e-16 0)
(3 2.07877e-16 0)
(3 1.55732e-16 0)
(3 1.57906e-16 0)
(3 1.50672e-16 0)
(3 -2.00018e-16 0)
(3 -3.40299e-17 0)
(3 -1.07966e-16 0)
(3 -8.5399e-17 0)
(3 -8.55621e-17 0)
(3 3.81004e-17 0)
(3 1.08794e-16 0)
(3 5.92825e-17 0)
(3 1.82022e-16 0)
(3 1.70854e-16 0)
(3 2.30811e-16 0)
(3 5.97415e-17 0)
(3 2.99287e-16 0)
(3 1.5864e-16 0)
(3 2.675e-16 0)
(3 2.85501e-16 0)
(3 1.61516e-16 0)
(3 2.78709e-16 0)
(3 1.8405e-16 0)
(3 1.35312e-16 0)
(3 1.0674e-16 0)
(3 1.34076e-16 0)
(3 1.19005e-16 0)
(3 1.17505e-16 0)
(3 9.55299e-17 0)
(3 1.60629e-16 0)
(3 3.93704e-17 0)
(3 2.22912e-17 0)
(3 -5.32476e-17 0)
(3 -5.50603e-17 0)
(3 -9.82459e-17 0)
(3 -9.49631e-17 0)
(3 -2.42144e-17 0)
(3 -3.29196e-17 0)
(3 -1.04138e-17 0)
(3 -5.56372e-17 0)
(3 -5.57346e-17 0)
(3 -6.28113e-17 0)
(3 -6.8165e-17 0)
(3 -1.20812e-16 0)
(3 -1.01731e-16 0)
(3 -1.54623e-16 0)
(3 -1.44335e-16 0)
(3 -1.46354e-16 0)
(3 -7.94893e-17 0)
(3 -9.0248e-17 0)
(3 -1.52454e-16 0)
(3 -1.27864e-16 0)
(3 -1.45883e-16 0)
(3 -5.52495e-17 0)
(3 -5.53486e-17 0)
(3 5.18707e-17 0)
(3 5.55478e-17 0)
(3 5.5648e-17 0)
(3 1.09699e-16 0)
(3 1.11699e-16 0)
(3 9.38527e-17 0)
(3 5.42441e-17 0)
(3 2.35486e-17 0)
(3 9.07365e-18 0)
(3 1.38171e-16 0)
(3 1.07461e-16 0)
(3 1.05833e-16 0)
(3 1.04199e-16 0)
(3 1.04391e-16 0)
(3 1.00914e-16 0)
(3 1.63599e-16 0)
(3 1.9705e-16 0)
(3 1.7712e-16 0)
(3 1.73752e-16 0)
(3 1.90742e-16 0)
(3 1.7811e-16 0)
(3 3.0484e-16 0)
(3 4.65564e-17 0)
(3 1.11945e-17 0)
(3 1.12155e-17 0)
(3 1.49821e-17 0)
(3 -3.75259e-17 0)
(3 -1.31589e-17 0)
(3 -3.57845e-17 0)
(3 3.01914e-17 0)
(3 -3.40299e-17 0)
(3 -3.97453e-32 0)
(3 -6.83192e-17 0)
(3 -1.33097e-17 0)
(3 -8.57258e-17 0)
(3 6.29862e-17 0)
(3 -1.09003e-16 0)
(3 -4.02364e-17 0)
(3 -3.83943e-17 0)
(3 -5.96261e-17 0)
(3 -5.01058e-17 0)
(3 3.86177e-17 0)
(3 1.54771e-17 0)
(3 -6.20289e-17 0)
(3 -5.04968e-17 0)
(3 7.39473e-17 0)
(3 -6.2474e-17 0)
(3 -7.42953e-17 0)
(3 -8.79528e-17 0)
(3 -1.18599e-16 0)
(3 -1.03527e-16 0)
(3 -9.69037e-17 0)
(3 -9.70695e-17 0)
(3 -7.67651e-17 0)
(3 -1.17909e-16 0)
(3 -1.06129e-16 0)
(3 -8.745e-17 0)
(3 -7.38596e-17 0)
(3 -7.74285e-17 0)
(3 -7.75625e-17 0)
(3 -9.32365e-17 0)
(3 -1.12424e-16 0)
(3 -1.00491e-16 0)
(3 -1.14552e-16 0)
(3 -1.44309e-16 0)
(3 -1.61979e-16 0)
(3 -1.65752e-16 0)
(3 -1.69539e-16 0)
(3 -2.10107e-16 0)
(3 -1.91184e-16 0)
(3 -2.10849e-16 0)
(3 -2.11222e-16 0)
(3 -2.09833e-16 0)
(3 -2.33169e-16 0)
(3 -2.35353e-16 0)
(3 -2.12726e-16 0)
(3 -1.34967e-16 0)
(3 1.1386e-16 0)
(3 -4.99027e-17 0)
(3 -3.57087e-17 0)
(3 -6.43912e-17 0)
(3 -1.03928e-16 0)
(3 -8.07793e-17 0)
(3 9.17153e-17 0)
(3 6.66589e-17 0)
(3 -9.92673e-17 0)
(3 1.555e-16 0)
(3 7.97028e-17 0)
(3 1.0344e-16 0)
(3 7.27217e-17 0)
(3 3.4606e-17 0)
(3 4.74424e-17 0)
(3 -4.20454e-17 0)
(3 1.09885e-17 0)
(3 -1.28436e-17 0)
(3 -1.04777e-16 0)
(3 -9.02377e-17 0)
(3 -8.85599e-17 0)
(3 -1.2939e-17 0)
(3 -8.33338e-17 0)
(3 -1.31727e-16 0)
(3 -9.29389e-18 0)
(3 5.95922e-17 0)
(3 -7.46298e-18 0)
(3 -1.12155e-17 0)
(3 1.31094e-17 0)
(3 1.31341e-17 0)
(3 1.31589e-17 0)
(3 3.76679e-17 0)
(3 1.00009e-16 0)
(3 1.53134e-16 0)
(3 2.06462e-16 0)
(3 2.0306e-16 0)
(3 4.79148e-16 0)
(3 5.14355e-17 0)
(3 5.53515e-17 0)
(3 8.60552e-17 0)
(3 -6.32286e-17 0)
(3 -7.67885e-17 0)
(3 -1.32716e-16 0)
(3 -1.54172e-16 0)
(3 -1.13922e-16 0)
(3 -1.47032e-16 0)
(3 -1.25996e-16 0)
(3 -2.27236e-16 0)
(3 -8.56232e-17 0)
(3 -1.22867e-16 0)
(3 -1.8405e-16 0)
(3 -1.9282e-16 0)
(3 -1.71122e-16 0)
(3 -1.66322e-16 0)
(3 -1.63206e-16 0)
(3 -1.82218e-16 0)
(3 -1.16001e-16 0)
(3 -1.89679e-16 0)
(3 -1.14688e-16 0)
(3 -1.18315e-16 0)
(3 -1.11648e-16 0)
(3 1.72063e-17 0)
(3 -1.44783e-16 0)
(3 -3.4532e-17 0)
(3 -1.15883e-16 0)
(3 -1.43807e-16 0)
(3 -1.31908e-16 0)
(3 -1.26922e-16 0)
(3 -1.09727e-16 0)
(3 -9.07274e-17 0)
(3 -7.8652e-17 0)
(3 -1.01552e-16 0)
(3 -1.19271e-16 0)
(3 -1.15967e-16 0)
(3 -1.03851e-16 0)
(3 -1.04035e-16 0)
(3 -8.6555e-17 0)
(3 -7.07828e-17 0)
(3 6.73634e-17 0)
(3 -1.47398e-16 0)
(3 -1.26313e-16 0)
(3 -1.26539e-16 0)
(3 -1.03555e-16 0)
(3 -1.69921e-16 0)
(3 -1.39765e-16 0)
(3 -1.41813e-16 0)
(3 -2.14002e-16 0)
(3 -2.01778e-16 0)
(3 -1.73266e-16 0)
(3 -1.71773e-16 0)
(3 -1.72086e-16 0)
(3 -1.0344e-16 0)
(3 -1.61806e-16 0)
(3 1.09282e-17 0)
(3 1.2773e-17 0)
(3 -9.1403e-18 0)
(3 -1.09885e-17 0)
(3 1.10088e-17 0)
(3 1.10291e-17 0)
(3 -2.76238e-17 0)
(3 -3.1365e-17 0)
(3 -8.31791e-17 0)
(3 -7.03708e-17 0)
(3 -1.48425e-17 0)
(3 -8.55038e-17 0)
(3 -1.67603e-17 0)
(3 -3.73149e-17 0)
(3 3.55157e-17 0)
(3 1.5544e-16 0)
(3 2.1765e-16 0)
(3 2.98894e-16 0)
(3 3.46545e-16 0)
(3 2.9814e-16 0)
(3 5.44478e-16 0)
(3 5.11419e-17 0)
(3 1.36638e-16 0)
(3 8.74635e-17 0)
(3 1.27636e-16 0)
(3 1.08794e-16 0)
(3 1.09003e-16 0)
(3 7.28087e-17 0)
(3 8.83068e-17 0)
(3 8.84774e-17 0)
(3 6.16687e-17 0)
(3 1.35162e-16 0)
(3 1.35425e-16 0)
(3 9.49817e-17 0)
(3 6.21499e-17 0)
(3 -6.22714e-17 0)
(3 8.73467e-17 0)
(3 -6.41642e-17 0)
(3 -5.58162e-17 0)
(3 -5.25226e-17 0)
(3 -7.1281e-17 0)
(3 -7.48028e-17 0)
(3 -4.25743e-17 0)
(3 1.05765e-16 0)
(3 5.29734e-17 0)
(3 5.30645e-17 0)
(3 3.42941e-17 0)
(3 3.43533e-17 0)
(3 2.23682e-17 0)
(3 -3.27486e-17 0)
(3 1.20862e-17 0)
(3 -1.03776e-17 0)
(3 1.21283e-17 0)
(3 -5.2069e-18 0)
(3 2.26026e-17 0)
(3 1.04502e-17 0)
(3 1.04685e-17 0)
(3 2.27217e-17 0)
(3 4.20215e-17 0)
(3 4.91114e-17 0)
(3 5.27123e-17 0)
(3 5.28055e-17 0)
(3 5.46623e-17 0)
(3 3.35622e-17 0)
(3 3.36218e-17 0)
(3 4.4318e-17 0)
(3 1.36743e-16 0)
(3 -2.66858e-17 0)
(3 -3.56448e-17 0)
(3 -3.39233e-17 0)
(3 1.25205e-17 0)
(3 5.73397e-17 0)
(3 4.30823e-17 0)
(3 -1.079e-17 0)
(3 -4.8643e-17 0)
(3 -5.59506e-17 0)
(3 -4.33953e-17 0)
(3 3.62286e-17 0)
(3 -3.08504e-17 0)
(3 7.27217e-18 0)
(3 -9.28899e-17 0)
(3 -1.2773e-16 0)
(3 -1.04199e-16 0)
(3 -9.34025e-17 0)
(3 -5.87135e-17 0)
(3 -1.06615e-16 0)
(3 -8.65545e-17 0)
(3 -8.118e-17 0)
(3 -1.01663e-16 0)
(3 -1.11112e-16 0)
(3 -1.09464e-16 0)
(3 -1.5242e-16 0)
(3 -1.69465e-16 0)
(3 -1.66051e-16 0)
(3 -3.7385e-17 0)
(3 -1.81658e-16 0)
(3 -3.02084e-16 0)
(3 -2.80096e-16 0)
(3 -2.56142e-16 0)
(3 -1.86809e-16 0)
(3 -1.81493e-16 0)
(3 -2.34874e-16 0)
(3 -2.46708e-16 0)
(3 -2.37673e-16 0)
(3 -1.63832e-16 0)
(3 -2.1568e-16 0)
(3 -1.18565e-16 0)
(3 1.53281e-17 0)
(3 1.3438e-16 0)
(3 9.04008e-17 0)
(3 5.78144e-17 0)
(3 2.40096e-31 0)
(3 3.86927e-17 0)
(3 1.74456e-17 0)
(3 1.55375e-17 0)
(3 6.22714e-17 0)
(3 1.18859e-17 0)
(3 5.4033e-17 0)
(3 8.79528e-17 0)
(3 1.11822e-16 0)
(3 1.18802e-16 0)
(3 1.19005e-16 0)
(3 2.24792e-16 0)
(3 1.02353e-17 0)
(3 8.5441e-18 0)
(3 2.39646e-17 0)
(3 4.97265e-17 0)
(3 3.26356e-17 0)
(3 5.33396e-17 0)
(3 5.3432e-17 0)
(3 1.03596e-17 0)
(3 1.21072e-17 0)
(3 1.90587e-17 0)
(3 1.38851e-17 0)
(3 2.26026e-17 0)
(3 3.13507e-17 0)
(3 3.14056e-17 0)
(3 3.14608e-17 0)
(3 4.55233e-17 0)
(3 6.66512e-17 0)
(3 8.25826e-17 0)
(3 8.6249e-17 0)
(3 1.32248e-16 0)
(3 3.53286e-17 0)
(3 9.73263e-17 0)
(3 3.1909e-16 0)
(3 -2.13106e-17 0)
(3 2.4551e-16 0)
(3 -1.44362e-16 0)
(3 1.6426e-16 0)
(3 1.57401e-16 0)
(3 1.03928e-16 0)
(3 1.04116e-16 0)
(3 8.81186e-17 0)
(3 7.92701e-17 0)
(3 1.08292e-16 0)
(3 1.10296e-16 0)
(3 3.44171e-17 0)
(3 7.98481e-17 0)
(3 1.09083e-17 0)
(3 1.09282e-17 0)
(3 2.73706e-17 0)
(3 1.27964e-17 0)
(3 1.83142e-17 0)
(3 -1.36889e-31 0)
(3 -1.10291e-17 0)
(3 5.89307e-17 0)
(3 5.7195e-17 0)
(3 3.51201e-17 0)
(3 3.51854e-17 0)
(3 -5.56594e-18 0)
(3 -1.0595e-16 0)
(3 -1.99261e-16 0)
(3 -2.03366e-16 0)
(3 -4.29927e-17 0)
(3 -3.35225e-16 0)
(3 -3.64001e-16 0)
(3 -3.70328e-16 0)
(3 -3.35244e-16 0)
(3 -1.84923e-16 0)
(3 -4.89652e-16 0)
(3 -7.57658e-17 0)
(3 -3.79551e-17 0)
(3 -3.42248e-17 0)
(3 -7.81058e-17 0)
(3 -9.54336e-17 0)
(3 -1.60636e-16 0)
(3 -2.0693e-16 0)
(3 -2.32285e-16 0)
(3 -1.44257e-16 0)
(3 -8.67216e-17 0)
(3 -1.35162e-16 0)
(3 -1.12209e-16 0)
(3 -1.86087e-16 0)
(3 -1.76739e-16 0)
(3 -1.94598e-17 0)
(3 -1.5684e-16 0)
(3 1.18197e-16 0)
(3 2.02968e-16 0)
(3 2.01619e-16 0)
(3 2.0366e-16 0)
(3 1.90407e-16 0)
(3 1.75406e-16 0)
(3 1.22824e-16 0)
(3 7.68969e-17 0)
(3 1.28382e-16 0)
(3 1.40606e-16 0)
(3 1.21954e-16 0)
(3 1.23886e-16 0)
(3 1.01693e-16 0)
(3 1.00143e-16 0)
(3 1.19342e-16 0)
(3 1.1955e-16 0)
(3 1.44057e-16 0)
(3 2.53845e-16 0)
(3 1.28886e-16 0)
(3 3.82102e-16 0)
(3 1.88765e-16 0)
(3 2.18862e-16 0)
(3 2.05216e-16 0)
(3 1.68679e-16 0)
(3 1.67217e-16 0)
(3 2.11596e-16 0)
(3 2.01373e-16 0)
(3 1.68109e-16 0)
(3 2.55272e-16 0)
(3 2.55727e-16 0)
(3 2.47289e-16 0)
(3 8.02008e-17 0)
(3 1.74973e-16 0)
(3 -1.03741e-16 0)
(3 -9.49688e-17 0)
(3 -4.66725e-17 0)
(3 5.57485e-17 0)
(3 3.42303e-17 0)
(3 1.02877e-16 0)
(3 1.15721e-16 0)
(3 8.51371e-17 0)
(3 8.16628e-17 0)
(3 8.1812e-17 0)
(3 8.19616e-17 0)
(3 8.21119e-17 0)
(3 1.49901e-16 0)
(3 1.48345e-16 0)
(3 1.35775e-16 0)
(3 1.28673e-16 0)
(3 6.62971e-17 0)
(3 5.7195e-17 0)
(3 6.0998e-17 0)
(3 6.11115e-17 0)
(3 5.75147e-17 0)
(3 5.76221e-17 0)
(3 5.77299e-17 0)
(3 1.4926e-16 0)
(3 1.2337e-16 0)
(3 8.24017e-17 0)
(3 3.56496e-17 0)
(3 5.63951e-17 0)
(3 -1.13004e-17 0)
(3 -1.13218e-17 0)
(3 5.8607e-17 0)
(3 2.84122e-17 0)
(3 -1.13865e-17 0)
(3 -1.33097e-17 0)
(3 -7.04857e-17 0)
(3 -7.25295e-17 0)
(3 -1.31951e-16 0)
(3 -4.98165e-17 0)
(3 -2.43804e-16 0)
(3 -1.09635e-16 0)
(3 -1.09847e-16 0)
(3 -6.75809e-17 0)
(3 1.85725e-16 0)
(3 1.8221e-16 0)
(3 1.55375e-16 0)
(3 1.12867e-16 0)
(3 1.47705e-16 0)
(3 1.1482e-16 0)
(3 -9.13356e-17 0)
(3 -5.25226e-17 0)
(3 -1.28985e-16 0)
(3 -1.08804e-16 0)
(3 -8.34457e-17 0)
(3 -8.01769e-17 0)
(3 -4.61381e-17 0)
(3 -6.16233e-17 0)
(3 -8.745e-17 0)
(3 -7.90126e-17 0)
(3 -7.91491e-17 0)
(3 -4.82611e-17 0)
(3 -3.97118e-17 0)
(3 -3.63216e-17 0)
(3 -4.50479e-17 0)
(3 -3.81839e-17 0)
(3 2.78186e-17 0)
(3 3.48341e-17 0)
(3 -1.04685e-17 0)
(3 1.04869e-17 0)
(3 3.50179e-17 0)
(3 3.15716e-17 0)
(3 5.44694e-17 0)
(3 5.45657e-17 0)
(3 5.99522e-17 0)
(3 1.02453e-16 0)
(3 9.37872e-17 0)
(3 9.57269e-17 0)
(3 3.37418e-17 0)
(3 3.38021e-17 0)
(3 6.05962e-17 0)
(3 1.05341e-16 0)
(3 6.97572e-17 0)
(3 5.73397e-17 0)
(3 3.59019e-17 0)
(3 7.55302e-17 0)
(3 5.58494e-17 0)
(3 1.08292e-17 0)
(3 -7.23255e-18 0)
(3 1.08686e-17 0)
(3 -3.62946e-18 0)
(3 -3.63609e-17 0)
(3 9.10685e-18 0)
(3 1.09483e-17 0)
(3 -4.02173e-17 0)
(3 -1.09885e-17 0)
(3 -1.10088e-17 0)
(3 -2.20582e-17 0)
(3 -5.89307e-17 0)
(3 -6.4575e-17 0)
(3 -6.28464e-17 0)
(3 3.70373e-17 0)
(3 1.29872e-17 0)
(3 2.47218e-16 0)
(3 2.45818e-16 0)
(3 2.31352e-16 0)
(3 2.09356e-16 0)
(3 1.77913e-16 0)
(3 2.19527e-16 0)
(3 1.50387e-16 0)
(3 3.76679e-17 0)
(3 8.49134e-17 0)
(3 1.51244e-17 0)
(3 3.59888e-17 0)
(3 -3.41596e-17 0)
(3 -3.04221e-17 0)
(3 -4.19104e-17 0)
(3 -5.91688e-17 0)
(3 -5.92825e-17 0)
(3 1.95434e-16 0)
(3 -3.14833e-16 0)
(3 2.30811e-17 0)
(3 -4.39389e-16 0)
(3 -1.60263e-16 0)
(3 -2.32156e-16 0)
(3 8.52897e-17 0)
(3 1.94218e-17 0)
(3 -3.89196e-17 0)
(3 1.5491e-16 0)
(3 -1.82361e-16 0)
(3 -2.43561e-16 0)
(3 -1.82982e-16 0)
(3 -1.83294e-16 0)
(3 -1.63206e-16 0)
(3 -1.61782e-16 0)
(3 -1.6206e-16 0)
(3 -1.17909e-16 0)
(3 -1.8487e-16 0)
(3 -1.86903e-16 0)
(3 -1.87225e-16 0)
(3 -1.65181e-16 0)
(3 -1.20653e-16 0)
(3 -1.41581e-16 0)
(3 -1.3145e-16 0)
(3 -4.67805e-17 0)
(3 -3.47126e-17 0)
(3 -1.18229e-16 0)
(3 -1.04502e-16 0)
(3 -1.32602e-16 0)
(3 1.08365e-16 0)
(3 1.54079e-16 0)
(3 1.26287e-16 0)
(3 1.00153e-16 0)
(3 8.97693e-17 0)
(3 -5.46623e-17 0)
(3 -5.47593e-17 0)
(3 -7.7861e-17 0)
(3 -4.4318e-17 0)
(3 -3.55176e-17 0)
(3 -1.24534e-16 0)
(3 -8.55476e-17 0)
(3 -3.21379e-17 0)
(3 -1.23417e-16 0)
(3 -6.6299e-17 0)
(3 -8.07793e-17 0)
(3 -1.60052e-16 0)
(3 -1.26112e-16 0)
(3 -1.49803e-16 0)
(3 -1.50075e-16 0)
(3 -1.12309e-16 0)
(3 -1.21587e-16 0)
(3 -1.23627e-16 0)
(3 -1.23853e-16 0)
(3 -1.25905e-16 0)
(3 -8.40907e-17 0)
(3 -8.2414e-17 0)
(3 -1.06418e-16 0)
(3 3.49255e-17 0)
(3 1.28911e-17 0)
(3 8.118e-17 0)
(3 7.76338e-17 0)
(3 1.01852e-16 0)
(3 1.05753e-16 0)
(3 7.62099e-17 0)
(3 3.72451e-17 0)
(3 5.97039e-17 0)
(3 5.9816e-17 0)
(3 6.3674e-17 0)
(3 6.00414e-17 0)
(3 9.21121e-17 0)
(3 1.31838e-16 0)
(3 1.32088e-16 0)
(3 1.11542e-16 0)
(3 6.25068e-17 0)
(3 3.22618e-17 0)
(3 -1.14083e-17 0)
(3 1.33351e-17 0)
(3 0 0)
(3 -3.63344e-17 0)
(3 -1.53281e-17 0)
(3 -1.15183e-17 0)
(3 1.59644e-16 0)
(3 1.4839e-16 0)
(3 1.71849e-16 0)
(3 -8.5124e-17 0)
(3 -9.69201e-18 0)
(3 -2.77732e-16 0)
(3 5.83794e-17 0)
(3 -2.2015e-16 0)
(3 -1.65476e-16 0)
(3 -6.7656e-17 0)
(3 -1.93148e-16 0)
(3 -1.62928e-16 0)
(3 -1.41105e-16 0)
(3 -1.54971e-16 0)
(3 -1.9106e-16 0)
(3 -1.43541e-16 0)
(3 -1.43788e-16 0)
(3 -5.31559e-17 0)
(3 -9.96245e-17 0)
(3 1.18724e-16 0)
(3 -2.39582e-16 0)
(3 -1.05323e-16 0)
(3 5.36176e-17 0)
(3 1.90587e-17 0)
(3 -5.38046e-17 0)
(3 -1.19968e-16 0)
(3 -1.20178e-16 0)
(3 -1.22133e-16 0)
(3 -2.02747e-16 0)
(3 -2.32869e-16 0)
(3 -2.17494e-16 0)
(3 -2.02064e-16 0)
(3 -7.56879e-17 0)
(3 -2.08069e-16 0)
(3 -1.92541e-16 0)
(3 -1.91113e-16 0)
(3 -1.50681e-16 0)
(3 -1.11881e-16 0)
(3 -1.04964e-16 0)
(3 -8.02008e-17 0)
(3 -1.17839e-16 0)
(3 1.25205e-17 0)
(3 -1.25431e-17 0)
(3 3.41068e-17 0)
(3 1.079e-17 0)
(3 2.34207e-17 0)
(3 4.33166e-17 0)
(3 5.78604e-17 0)
(3 3.62286e-17 0)
(3 3.62946e-17 0)
(3 5.81774e-17 0)
(3 3.64274e-17 0)
(3 1.45977e-16 0)
(3 9.3231e-17 0)
(3 7.87512e-17 0)
(3 1.02749e-16 0)
(3 1.02938e-16 0)
(3 1.43644e-16 0)
(3 1.0701e-16 0)
(3 9.24212e-17 0)
(3 -1.11112e-17 0)
(3 2.22638e-17 0)
(3 -3.53168e-17 0)
(3 -1.30358e-17 0)
(3 -3.35834e-17 0)
(3 -1.86925e-17 0)
(3 -5.6183e-18 0)
(3 1.53856e-16 0)
(3 -1.50387e-16 0)
(3 5.2735e-17 0)
(3 5.66089e-17 0)
(3 5.8607e-17 0)
(3 1.13649e-17 0)
(3 7.59102e-18 0)
(3 3.61262e-17 0)
(3 3.42903e-17 0)
(3 4.77168e-17 0)
(3 1.03266e-16 0)
(3 1.64778e-16 0)
(3 2.99475e-16 0)
(3 2.46198e-16 0)
(3 2.23549e-16 0)
(3 1.69918e-16 0)
(3 1.10274e-16 0)
(3 3.68297e-17 0)
(3 3.69015e-17 0)
(3 1.5957e-16 0)
(3 4.68603e-18 0)
(3 -5.23444e-17 0)
(3 -5.24334e-17 0)
(3 -7.11597e-17 0)
(3 -7.29782e-17 0)
(3 -9.01034e-17 0)
(3 -6.81189e-17 0)
(3 -3.41178e-17 0)
(3 -7.68969e-17 0)
(3 -5.47762e-17 0)
(3 -7.88765e-17 0)
(3 -6.52712e-17 0)
(3 5.1619e-17 0)
(3 -6.89445e-18 0)
(3 -2.76256e-17 0)
(3 -6.74545e-17 0)
(3 -9.3561e-17 0)
(3 -1.51e-16 0)
(3 -1.46048e-16 0)
(3 -1.20178e-16 0)
(3 -1.4656e-16 0)
(3 -2.04495e-16 0)
(3 -2.55631e-16 0)
(3 -1.52596e-16 0)
(3 -1.30024e-16 0)
(3 -1.16172e-16 0)
(3 2.11596e-17 0)
(3 7.06572e-17 0)
(3 2.21196e-16 0)
(3 -4.07726e-17 0)
(3 -3.19659e-17 0)
(3 1.81464e-16 0)
(3 1.88918e-16 0)
(3 1.46406e-16 0)
(3 2.09272e-16 0)
(3 2.61612e-16 0)
(3 2.31567e-16 0)
(3 2.06809e-16 0)
(3 1.72953e-16 0)
(3 2.18388e-16 0)
(3 2.00703e-16 0)
(3 2.20994e-16 0)
(3 1.95991e-16 0)
(3 1.94531e-16 0)
(3 1.83958e-16 0)
(3 1.5875e-16 0)
(3 1.40761e-16 0)
(3 3.84599e-17 0)
(3 2.62376e-16 0)
(3 5.69837e-17 0)
(3 1.84159e-18 0)
(3 -5.904e-17 0)
(3 4.06653e-17 0)
(3 4.0741e-17 0)
(3 1.1874e-16 0)
(3 4.46107e-17 0)
(3 1.52705e-16 0)
(3 8.20928e-17 0)
(3 9.15932e-17 0)
(3 9.17655e-17 0)
(3 1.06949e-16 0)
(3 7.70734e-17 0)
(3 1.69506e-17 0)
(3 1.50957e-17 0)
(3 1.32338e-17 0)
(3 1.3259e-17 0)
(3 1.00581e-16 0)
(3 1.1028e-16 0)
(3 1.82882e-16 0)
(3 3.41652e-16 0)
(3 1.37688e-16 0)
(3 2.75907e-16 0)
(3 3.14833e-16 0)
(3 1.59644e-16 0)
(3 1.85006e-16 0)
(3 1.79572e-16 0)
(3 -3.28888e-17 0)
(3 2.26793e-16 0)
(3 -1.47606e-16 0)
(3 2.2768e-16 0)
(3 1.4872e-16 0)
(3 8.61151e-17 0)
(3 1.03175e-16 0)
(3 1.55874e-16 0)
(3 1.40865e-16 0)
(3 1.58106e-16 0)
(3 1.85624e-16 0)
(3 1.68883e-16 0)
(3 1.64047e-16 0)
(3 1.62617e-16 0)
(3 1.20029e-16 0)
(3 2.07837e-16 0)
(3 1.53136e-16 0)
(3 1.87874e-16 0)
(3 1.76113e-16 0)
(3 1.21072e-16 0)
(3 1.28213e-16 0)
(3 1.66621e-16 0)
(3 1.87776e-16 0)
(3 1.67204e-16 0)
(3 1.77965e-16 0)
(3 2.11486e-16 0)
(3 1.89097e-16 0)
(3 1.40318e-16 0)
(3 1.51109e-16 0)
(3 1.49616e-16 0)
(3 1.21668e-16 0)
(3 1.2365e-16 0)
(3 1.36257e-16 0)
(3 1.66636e-16 0)
(3 3.14331e-16 0)
(3 1.92138e-16 0)
(3 1.92482e-16 0)
(3 1.98184e-16 0)
(3 1.69921e-16 0)
(3 7.34665e-17 0)
(3 1.63354e-16 0)
(3 1.56455e-16 0)
(3 1.49532e-16 0)
(3 1.9673e-16 0)
(3 1.95279e-16 0)
(3 2.93451e-16 0)
(3 7.62186e-17 0)
(3 1.72714e-16 0)
(3 1.60281e-16 0)
(3 8.21119e-17 0)
(3 6.76382e-17 0)
(3 3.66284e-17 0)
(3 1.10088e-17 0)
(3 3.67637e-17 0)
(3 1.10495e-17 0)
(3 1.476e-17 0)
(3 2.27421e-30 0)
(3 -3.51854e-17 0)
(3 -8.34891e-17 0)
(3 -7.62099e-17 0)
(3 -1.08011e-16 0)
(3 -2.05232e-17 0)
(3 -1.12155e-17 0)
(3 -1.12366e-17 0)
(3 -1.12578e-17 0)
(3 1.31589e-16 0)
(3 7.34524e-17 0)
(3 8.30264e-17 0)
(3 8.31841e-17 0)
(3 8.33424e-17 0)
(3 5.88304e-17 0)
(3 5.89428e-17 0)
(3 1.14301e-17 0)
(3 1.08794e-16 0)
(3 7.45812e-17 0)
(3 3.83204e-17 0)
(3 -6.33505e-17 0)
(3 -3.84684e-17 0)
(3 -7.70858e-17 0)
(3 1.93088e-18 0)
(3 -3.67581e-17 0)
(3 -3.87681e-18 0)
(3 5.43812e-17 0)
(3 -6.03254e-17 0)
(3 -4.95733e-17 0)
(3 2.48214e-16 0)
(3 2.68932e-16 0)
(3 2.67696e-16 0)
(3 3.34342e-16 0)
(3 3.21312e-16 0)
(3 3.03129e-16 0)
(3 2.74648e-16 0)
(3 2.71702e-16 0)
(3 2.72169e-16 0)
(3 2.38344e-16 0)
(3 3.36662e-16 0)
(3 1.65181e-16 0)
(3 2.06833e-16 0)
(3 -6.90641e-18 0)
(3 3.16517e-16 0)
(3 5.54436e-17 0)
(3 1.63149e-16 0)
(3 3.47733e-17 0)
(3 4.52843e-17 0)
(3 2.82651e-16 0)
(3 3.23347e-16 0)
(3 3.02905e-16 0)
(3 3.03439e-16 0)
(3 2.8816e-16 0)
(3 2.71068e-16 0)
(3 2.29229e-16 0)
(3 1.05986e-16 0)
(3 1.04405e-16 0)
(3 1.02818e-16 0)
(3 1.58054e-16 0)
(3 3.38021e-17 0)
(3 -5.34672e-18 0)
(3 -7.14175e-18 0)
(3 -2.14637e-17 0)
(3 -7.70502e-17 0)
(3 -3.05166e-17 0)
(3 -3.23701e-17 0)
(3 -3.24287e-17 0)
(3 -5.59506e-17 0)
(3 -4.52034e-17 0)
(3 -1.08686e-17 0)
(3 -1.27031e-17 0)
(3 -1.27263e-17 0)
(3 -1.05639e-16 0)
(3 -1.05833e-16 0)
(3 -1.07855e-16 0)
(3 -1.66659e-16 0)
(3 -1.72471e-16 0)
(3 -1.45217e-16 0)
(3 -1.27069e-16 0)
(3 -1.107e-16 0)
(3 -1.73752e-16 0)
(3 -2.6852e-16 0)
(3 -2.26348e-16 0)
(3 -1.46843e-16 0)
(3 -6.70412e-17 0)
(3 -1.4926e-17 0)
(3 -4.11235e-17 0)
(3 -5.05647e-17 0)
(3 -5.81651e-17 0)
(3 -8.27129e-17 0)
(3 -3.57845e-17 0)
(3 -3.58523e-17 0)
(3 -3.59204e-17 0)
(3 -3.59888e-17 0)
(3 -7.97057e-17 0)
(3 -8.55621e-17 0)
(3 -1.60022e-16 0)
(3 -1.81324e-16 0)
(3 -1.56812e-16 0)
(3 -1.51365e-16 0)
(3 -2.30366e-16 0)
(3 -9.61711e-17 0)
(3 9.63573e-18 0)
(3 1.1006e-16 0)
(3 -5.03005e-17 0)
(3 1.14366e-16 0)
(3 1.00994e-16 0)
(3 1.36219e-17 0)
(3 1.00675e-17 0)
(3 1.6041e-16 0)
(3 1.42078e-16 0)
(3 1.28765e-16 0)
(3 1.08619e-16 0)
(3 9.86037e-17 0)
(3 9.87724e-17 0)
(3 9.89417e-17 0)
(3 7.68969e-17 0)
(3 7.53173e-17 0)
(3 6.17294e-17 0)
(3 3.26356e-17 0)
(3 1.17003e-16 0)
(3 9.47987e-17 0)
(3 3.4532e-17 0)
(3 3.28624e-17 0)
(3 -1.03957e-17 0)
(3 1.73563e-18 0)
(3 4.34666e-17 0)
(3 2.47322e-16 0)
(3 -6.80456e-17 0)
(3 -6.29216e-17 0)
(3 5.25269e-18 0)
(3 -5.43734e-17 0)
(3 1.22995e-17 0)
(3 -1.05527e-31 0)
(3 -2.64495e-17 0)
(3 -3.35622e-17 0)
(3 -3.36218e-17 0)
(3 2.12726e-16 0)
(3 -2.96572e-16 0)
(3 -1.92138e-16 0)
(3 -1.92482e-16 0)
(3 -1.0177e-16 0)
(3 -1.03741e-16 0)
(3 -1.02136e-16 0)
(3 -1.23862e-16 0)
(3 -1.02505e-16 0)
(3 -1.02691e-16 0)
(3 -1.46194e-16 0)
(3 -7.9558e-17 0)
(3 -1.72086e-16 0)
(3 -1.56067e-16 0)
(3 -1.50898e-16 0)
(3 -1.29317e-16 0)
(3 -1.25905e-16 0)
(3 -8.04346e-17 0)
(3 -1.97794e-16 0)
(3 -1.74306e-16 0)
(3 -1.76466e-16 0)
(3 -1.36277e-16 0)
(3 -1.2915e-16 0)
(3 -1.53419e-16 0)
(3 -9.81487e-17 0)
(3 6.86466e-17 0)
(3 -7.43511e-17 0)
(3 6.33167e-17 0)
(3 -1.7538e-16 0)
(3 -5.9816e-17 0)
(3 -7.49106e-17 0)
(3 -8.06807e-17 0)
(3 -8.27129e-17 0)
(3 -1.07353e-16 0)
(3 -1.09444e-16 0)
(3 -1.09652e-16 0)
(3 -1.0986e-16 0)
(3 -1.32843e-17 0)
(3 -5.89428e-17 0)
(3 -6.09606e-17 0)
(3 -1.2979e-16 0)
(3 -1.33864e-16 0)
(3 -1.36037e-16 0)
(3 -1.363e-16 0)
(3 -1.11558e-16 0)
(3 -1.58026e-16 0)
(3 -2.23982e-16 0)
(3 -2.08941e-16 0)
(3 -1.95779e-16 0)
(3 -1.88392e-16 0)
(3 -1.71246e-16 0)
(3 -1.58787e-16 0)
(3 -3.54591e-17 0)
(3 1.6914e-18 0)
(3 1.01657e-17 0)
(3 -5.26122e-17 0)
(3 -3.91015e-17 0)
(3 -5.27922e-17 0)
(3 -3.75296e-17 0)
(3 -1.02529e-17 0)
(3 -4.10822e-17 0)
(3 -5.31559e-17 0)
(3 -3.26356e-17 0)
(3 -5.33396e-17 0)
(3 -3.27486e-17 0)
(3 -3.28054e-17 0)
(3 -1.90256e-17 0)
(3 3.46522e-18 0)
(3 3.47126e-17 0)
(3 5.21599e-17 0)
(3 5.57346e-17 0)
(3 -5.58323e-17 0)
(3 -2.09739e-16 0)
(3 -1.90848e-16 0)
(3 -2.28017e-16 0)
(3 -2.35448e-16 0)
(3 -2.18263e-16 0)
(3 -2.06306e-16 0)
(3 -1.94307e-16 0)
(3 -1.85805e-16 0)
(3 -1.47136e-16 0)
(3 -1.45622e-16 0)
(3 -2.13487e-16 0)
(3 -2.12087e-16 0)
(3 -2.19609e-16 0)
(3 -2.16426e-16 0)
(3 -1.97105e-16 0)
(3 -2.58494e-16 0)
(3 -1.92422e-16 0)
(3 -1.9277e-16 0)
(3 -2.20193e-16 0)
(3 -3.70668e-16 0)
(3 -3.804e-16 0)
(3 -8.52923e-17 0)
(3 -6.29043e-16 0)
(3 -1.3296e-16 0)
(3 -1.44152e-16 0)
(3 -2.13883e-16 0)
(3 -1.20874e-16 0)
(3 8.07311e-17 0)
(3 6.80129e-17 0)
(3 2.94654e-17 0)
(3 -5.535e-18 0)
(3 -1.2939e-17 0)
(3 -2.59261e-17 0)
(3 -5.93701e-17 0)
(3 -1.09668e-16 0)
(3 -1.43394e-16 0)
(3 -1.71649e-16 0)
(3 -1.79448e-16 0)
(3 -1.79785e-16 0)
(3 -1.78248e-16 0)
(3 -6.20347e-17 0)
(3 -8.66361e-17 0)
(3 -2.20775e-16 0)
(3 -1.41791e-16 0)
(3 -1.3259e-16 0)
(3 -1.5182e-16 0)
(3 -1.06477e-16 0)
(3 -1.06681e-16 0)
(3 -1.03068e-16 0)
(3 -1.09003e-16 0)
(3 -2.01182e-16 0)
(3 -1.67015e-16 0)
(3 -3.46216e-16 0)
(3 -3.81575e-16 0)
(3 -4.34449e-16 0)
(3 -3.07607e-16 0)
(3 -3.12083e-16 0)
(3 -2.62195e-16 0)
(3 -2.84113e-16 0)
(3 -2.47866e-16 0)
(3 -3.37706e-17 0)
(3 1.18398e-17 0)
(3 1.18599e-17 0)
(3 3.39433e-17 0)
(3 3.40013e-17 0)
(3 3.40595e-17 0)
(3 3.41178e-17 0)
(3 8.88586e-17 0)
(3 2.39646e-17 0)
(3 6.17294e-17 0)
(3 6.18359e-17 0)
(3 1.20444e-17 0)
(3 3.1025e-17 0)
(3 3.4532e-17 0)
(3 3.4592e-17 0)
(3 3.29196e-17 0)
(3 3.2977e-17 0)
(3 -2.608e-17 0)
(3 -2.9609e-17 0)
(3 -3.14056e-17 0)
(3 -5.24346e-17 0)
(3 -5.42778e-17 0)
(3 -8.24371e-17 0)
(3 -1.5638e-16 0)
(3 -1.39054e-16 0)
(3 -7.0532e-17 0)
(3 -1.41314e-17 0)
(3 -1.2387e-17 0)
(3 5.14089e-17 0)
(3 7.81388e-17 0)
(3 -1.12081e-16 0)
(3 1.907e-16 0)
(3 4.46359e-17 0)
(3 0 0)
(3 1.07512e-17 0)
(3 -1.25657e-17 0)
(3 -1.25884e-17 0)
(3 -1.08096e-17 0)
(3 -1.2634e-17 0)
(3 -5.78604e-17 0)
(3 -1.268e-17 0)
(3 -1.27031e-17 0)
(3 -5.81774e-17 0)
(3 -5.82838e-17 0)
(3 -2.59307e-32 0)
(3 -2.33992e-16 0)
(3 -1.09885e-17 0)
(3 -1.06418e-16 0)
(3 -5.88219e-17 0)
(3 -1.28911e-16 0)
(3 -1.19925e-16 0)
(3 -4.43622e-17 0)
(3 1.11112e-17 0)
(3 -3.15403e-17 0)
(3 -9.85153e-17 0)
(3 -4.09696e-17 0)
(3 -5.03751e-17 0)
(3 -1.19632e-16 0)
(3 -9.73838e-17 0)
(3 -5.81651e-17 0)
(3 -1.54147e-16 0)
(3 -1.43138e-16 0)
(3 -3.58523e-17 0)
(3 -5.10448e-17 0)
(3 -8.52365e-17 0)
(3 -1.80287e-16 0)
(3 -1.33097e-16 0)
(3 -1.39066e-16 0)
(3 -1.41242e-16 0)
(3 -1.26214e-16 0)
(3 -6.51446e-17 0)
(3 -1.72774e-17 0)
(3 -5.38558e-17 0)
(3 -5.97415e-17 0)
(3 -3.66868e-17 0)
(3 6.19083e-17 0)
(3 1.12427e-16 0)
(3 1.61201e-16 0)
(3 1.5957e-16 0)
(3 1.61621e-16 0)
(3 -5.06559e-18 0)
(3 -3.3828e-17 0)
(3 -6.77711e-18 0)
(3 4.92178e-17 0)
(3 5.2702e-17 0)
(3 5.27922e-17 0)
(3 5.45885e-17 0)
(3 7.17704e-17 0)
(3 4.45057e-17 0)
(3 1.78329e-16 0)
(3 1.87225e-16 0)
(3 1.87549e-16 0)
(3 1.72361e-16 0)
(3 1.69207e-16 0)
(3 1.43557e-16 0)
(3 1.45539e-16 0)
(3 1.45793e-16 0)
(3 1.26922e-16 0)
(3 1.21919e-16 0)
(3 1.23878e-16 0)
(3 1.24095e-16 0)
(3 1.03303e-16 0)
(3 1.4558e-16 0)
(3 1.24752e-16 0)
(3 1.28493e-16 0)
(3 1.12851e-16 0)
(3 1.00686e-16 0)
(3 1.2387e-16 0)
(3 1.06363e-16 0)
(3 1.15432e-16 0)
(3 1.85022e-16 0)
(3 1.88918e-16 0)
(3 1.92827e-16 0)
(3 7.87004e-17 0)
(3 7.88421e-17 0)
(3 7.89842e-17 0)
(3 7.91269e-17 0)
(3 7.92701e-17 0)
(3 7.94138e-17 0)
(3 1.50075e-16 0)
(3 2.60846e-16 0)
(3 2.63136e-16 0)
(3 2.65434e-16 0)
(3 1.49352e-16 0)
(3 1.49626e-16 0)
(3 1.35276e-16 0)
(3 1.04391e-16 0)
(3 2.93568e-17 0)
(3 1.10291e-17 0)
(3 2.2099e-17 0)
(3 1.1439e-16 0)
(3 1.2939e-16 0)
(3 -5.92596e-17 0)
(3 1.4657e-16 0)
(3 1.76584e-16 0)
(3 2.01124e-16 0)
(3 1.95903e-16 0)
(3 2.63564e-16 0)
(3 3.76426e-16 0)
(3 3.60249e-16 0)
(3 2.95135e-16 0)
(3 2.74976e-16 0)
(3 2.88706e-16 0)
(3 2.68458e-16 0)
(3 2.04568e-16 0)
(3 2.29628e-16 0)
(3 1.55913e-16 0)
(3 1.67642e-16 0)
(3 2.50036e-16 0)
(3 2.56253e-16 0)
(3 2.56746e-16 0)
(3 2.57242e-16 0)
(3 2.8659e-16 0)
(3 3.04489e-16 0)
(3 3.34043e-16 0)
(3 4.39162e-16 0)
(3 4.09003e-16 0)
(3 3.57362e-16 0)
(3 3.85304e-16 0)
(3 3.58899e-16 0)
(3 5.23444e-17 0)
(3 -5.0742e-18 0)
(3 -6.77711e-18 0)
(3 -3.22462e-17 0)
(3 5.44021e-17 0)
(3 5.44951e-17 0)
(3 8.01769e-17 0)
(3 1.50376e-16 0)
(3 1.8487e-16 0)
(3 1.44035e-16 0)
(3 1.42566e-16 0)
(3 1.42813e-16 0)
(3 1.51678e-16 0)
(3 1.43308e-16 0)
(3 1.60853e-16 0)
(3 1.62865e-16 0)
(3 1.63149e-16 0)
(3 1.63434e-16 0)
(3 1.6372e-16 0)
(3 1.64007e-16 0)
(3 2.09739e-16 0)
(3 1.99602e-16 0)
(3 2.03462e-16 0)
(3 2.86403e-16 0)
(3 1.83059e-16 0)
(3 1.922e-16 0)
(3 2.93227e-16 0)
(3 2.8667e-16 0)
(3 2.23363e-16 0)
(3 2.20209e-16 0)
(3 2.15266e-16 0)
(3 2.61989e-16 0)
(3 2.39249e-16 0)
(3 2.59354e-16 0)
(3 2.63404e-16 0)
(3 2.63879e-16 0)
(3 2.24792e-16 0)
(3 2.4862e-16 0)
(3 2.65314e-16 0)
(3 2.67604e-16 0)
(3 3.35114e-16 0)
(3 3.44799e-16 0)
(3 3.39974e-16 0)
(3 3.35132e-16 0)
(3 3.37571e-16 0)
(3 3.36363e-16 0)
(3 3.62622e-16 0)
(3 6.18327e-16 0)
(3 5.01825e-16 0)
(3 6.18773e-16 0)
(3 6.1992e-16 0)
(3 5.28649e-16 0)
(3 5.74078e-16 0)
(3 5.45462e-16 0)
(3 5.18599e-16 0)
(3 4.99084e-16 0)
(3 4.62705e-16 0)
(3 3.92542e-16 0)
(3 4.55082e-16 0)
(3 2.90826e-16 0)
(3 3.94766e-16 0)
(3 3.95513e-16 0)
(3 3.96263e-16 0)
(3 5.46368e-16 0)
(3 2.99275e-16 0)
(3 6.79397e-16 0)
(3 2.3387e-16 0)
(3 4.9721e-16 0)
(3 3.77917e-16 0)
(3 4.7426e-16 0)
(3 3.98532e-16 0)
(3 3.74344e-16 0)
(3 4.21229e-16 0)
(3 5.01058e-16 0)
(3 4.05486e-16 0)
(3 3.07607e-16 0)
(3 2.7913e-16 0)
(3 1.8645e-16 0)
(3 1.86814e-16 0)
(3 1.86642e-16 0)
(3 1.16509e-16 0)
(3 1.33621e-16 0)
(3 9.82681e-17 0)
(3 4.75207e-17 0)
(3 -1.02004e-17 0)
(3 -1.02178e-17 0)
(3 -1.02353e-17 0)
(3 1.70882e-18 0)
(3 3.25234e-17 0)
(3 -3.42941e-17 0)
(3 -1.88943e-17 0)
(3 -1.20444e-17 0)
(3 -1.37889e-17 0)
(3 1.7266e-18 0)
(3 1.03776e-17 0)
(3 1.21283e-17 0)
(3 9.8931e-17 0)
(3 7.99785e-17 0)
(3 7.83767e-17 0)
(3 7.85141e-17 0)
(3 9.26345e-17 0)
(3 4.37724e-17 0)
(3 1.21025e-16 0)
(3 1.21238e-16 0)
(3 1.63697e-16 0)
(3 2.16886e-16 0)
(3 2.36702e-16 0)
(3 2.17657e-16 0)
(3 2.14499e-16 0)
(3 1.93571e-16 0)
(3 1.92138e-16 0)
(3 3.61795e-16 0)
(3 -4.64214e-17 0)
(3 3.73827e-16 0)
(3 3.54789e-16 0)
(3 3.55429e-16 0)
(3 3.83046e-16 0)
(3 3.58517e-16 0)
(3 3.57362e-16 0)
(3 3.58011e-16 0)
(3 3.35114e-16 0)
(3 3.35725e-16 0)
(3 3.81789e-16 0)
(3 4.00701e-16 0)
(3 4.03261e-16 0)
(3 4.05829e-16 0)
(3 3.93756e-16 0)
(3 3.61455e-16 0)
(3 4.68737e-16 0)
(3 4.5303e-16 0)
(3 3.41325e-16 0)
(3 3.4011e-16 0)
(3 3.44447e-16 0)
(3 2.72731e-16 0)
(3 2.71382e-16 0)
(3 2.73752e-16 0)
(3 2.59339e-16 0)
(3 2.52349e-16 0)
(3 1.0862e-16 0)
(3 1.18207e-16 0)
(3 8.45927e-17 0)
(3 1.09237e-16 0)
(3 8.49134e-17 0)
(3 9.83085e-17 0)
(3 1.19331e-16 0)
(3 1.72696e-16 0)
(3 2.45278e-16 0)
(3 5.48645e-16 0)
(3 1.85141e-16 0)
(3 2.10357e-16 0)
(3 2.68243e-16 0)
(3 2.80278e-16 0)
(3 2.55815e-16 0)
(3 2.58238e-16 0)
(3 3.30181e-16 0)
(3 2.10875e-16 0)
(3 2.3067e-16 0)
(3 2.33062e-16 0)
(3 2.33518e-16 0)
(3 2.1721e-16 0)
(3 3.20821e-17 0)
(3 3.21366e-17 0)
(3 6.26883e-17 0)
(3 1.49351e-16 0)
(3 9.86037e-17 0)
(3 9.70695e-17 0)
(3 9.89417e-17 0)
(3 8.88586e-17 0)
(3 3.42351e-17 0)
(3 4.62971e-17 0)
(3 9.96245e-17 0)
(3 7.74285e-17 0)
(3 7.92862e-17 0)
(3 6.04311e-17 0)
(3 5.88064e-17 0)
(3 -5.19783e-18 0)
(3 -4.85977e-17 0)
(3 -3.12959e-17 0)
(3 -2.09005e-17 0)
(3 1.04685e-17 0)
(3 -3.49564e-17 0)
(3 -1.05054e-17 0)
(3 2.98177e-17 0)
(3 3.33844e-17 0)
(3 2.11222e-17 0)
(3 -5.46623e-17 0)
(3 -4.23943e-17 0)
(3 1.06174e-17 0)
(3 -6.38179e-17 0)
(3 6.21559e-17 0)
(3 3.55811e-17 0)
(3 3.56448e-17 0)
(3 1.0177e-16 0)
(3 8.22777e-17 0)
(3 8.06339e-17 0)
(3 1.9028e-16 0)
(3 1.00707e-16 0)
(3 1.02691e-16 0)
(3 1.04682e-16 0)
(3 1.04872e-16 0)
(3 3.44171e-17 0)
(3 3.44799e-17 0)
(3 3.63609e-17 0)
(3 4.73556e-17 0)
(3 8.21119e-17 0)
(3 3.83892e-17 0)
(3 2.27096e-16 0)
(3 -1.28436e-17 0)
(3 5.51456e-17 0)
(3 3.86733e-17 0)
(3 1.2915e-17 0)
(3 1.51571e-16 0)
(3 7.40745e-18 0)
(3 1.28017e-16 0)
(3 5.76221e-17 0)
(3 5.77299e-17 0)
(3 5.59724e-18 0)
(3 4.67312e-17 0)
(3 6.55468e-17 0)
(3 2.08269e-16 0)
(3 2.76336e-16 0)
(3 2.73092e-16 0)
(3 2.75497e-16 0)
(3 2.62786e-16 0)
(3 2.29192e-16 0)
(3 2.54299e-16 0)
(3 2.35771e-16 0)
(3 2.19077e-16 0)
(3 2.11863e-16 0)
(3 1.39601e-16 0)
(3 8.62208e-17 0)
(3 8.63871e-17 0)
(3 1.05788e-16 0)
(3 1.36827e-16 0)
(3 1.19715e-16 0)
(3 1.10274e-16 0)
(3 1.35688e-16 0)
(3 1.35953e-16 0)
(3 2.72437e-16 0)
(3 2.72653e-16 0)
(3 -3.37706e-17 0)
(3 -5.9199e-17 0)
(3 -7.62425e-17 0)
(3 -6.44923e-17 0)
(3 3.40013e-18 0)
(3 -1.19208e-17 0)
(3 1.19412e-17 0)
(3 -6.83528e-18 0)
(3 -3.42351e-17 0)
(3 -6.34441e-17 0)
(3 1.71766e-18 0)
(3 -7.91491e-17 0)
(3 -9.82459e-17 0)
(3 -1.20862e-16 0)
(3 -1.21072e-16 0)
(3 -1.21283e-16 0)
(3 -1.64885e-16 0)
(3 -1.66912e-16 0)
(3 -1.56753e-17 0)
(3 -2.82651e-16 0)
(3 -6.11737e-17 0)
(3 -3.50179e-17 0)
(3 -9.64689e-17 0)
(3 -1.0191e-16 0)
(3 -1.68978e-16 0)
(3 -1.90436e-16 0)
(3 -2.34935e-16 0)
(3 -1.96422e-16 0)
(3 -2.58817e-16 0)
(3 -2.46848e-16 0)
(3 -1.47662e-16 0)
(3 -1.49708e-16 0)
(3 -1.48191e-16 0)
(3 -3.27322e-16 0)
(3 -3.06409e-16 0)
(3 -1.75919e-16 0)
(3 -2.64356e-16 0)
(3 -2.28802e-16 0)
(3 -1.94925e-16 0)
(3 -2.06128e-16 0)
(3 -1.73897e-16 0)
(3 -1.74214e-16 0)
(3 -2.418e-16 0)
(3 -2.03993e-16 0)
(3 -1.51451e-16 0)
(3 -2.70553e-16 0)
(3 -1.59334e-16 0)
(3 -1.70636e-16 0)
(3 -3.47417e-16 0)
(3 -7.36634e-17 0)
(3 5.535e-17 0)
(3 -1.10905e-17 0)
(3 -4.62966e-17 0)
(3 -3.71063e-17 0)
(3 -3.71756e-17 0)
(3 -9.12505e-17 0)
(3 3.17177e-17 0)
(3 -2.61695e-17 0)
(3 -4.30736e-17 0)
(3 -1.08825e-16 0)
(3 -9.39919e-18 0)
(3 -1.50672e-17 0)
(3 -2.07566e-17 0)
(3 1.13433e-17 0)
(3 -1.89414e-18 0)
(3 -5.88304e-17 0)
(3 -1.12181e-16 0)
(3 -1.48591e-16 0)
(3 -1.22155e-16 0)
(3 -1.16653e-16 0)
(3 8.62208e-17 0)
(3 5.95111e-17 0)
(3 1.3464e-17 0)
(3 -4.43243e-17 0)
(3 -2.08535e-16 0)
(3 -1.85725e-16 0)
(3 -1.97717e-16 0)
(3 -1.39837e-16 0)
(3 -2.58815e-16 0)
(3 -2.47866e-16 0)
(3 -7.42953e-17 0)
(3 -9.81012e-17 0)
(3 -9.82681e-17 0)
(3 -1.74808e-16 0)
(3 -2.04008e-16 0)
(3 -2.02654e-16 0)
(3 -2.21766e-16 0)
(3 -2.69993e-16 0)
(3 -2.51628e-16 0)
(3 -2.50347e-16 0)
(3 -2.93721e-16 0)
(3 -2.7186e-16 0)
(3 -2.74054e-16 0)
(3 -2.7453e-16 0)
(3 -2.76736e-16 0)
(3 -2.73753e-16 0)
(3 -5.38046e-17 0)
(3 -6.60692e-17 0)
(3 -1.11469e-16 0)
(3 -2.1286e-16 0)
(3 -1.69539e-16 0)
(3 -1.87346e-16 0)
(3 -2.05216e-16 0)
(3 -2.07335e-16 0)
(3 -3.67878e-16 0)
(3 -6.17155e-17 0)
(3 -2.15504e-16 0)
(3 -3.25601e-16 0)
(3 -2.14499e-16 0)
(3 -2.53951e-16 0)
(3 -1.28092e-16 0)
(3 -1.14063e-16 0)
(3 -2.14252e-16 0)
(3 -2.03906e-16 0)
(3 -7.34665e-17 0)
(3 -2.96191e-16 0)
(3 -3.52474e-16 0)
(3 -3.33295e-16 0)
(3 -3.33899e-16 0)
(3 -2.92918e-16 0)
(3 -2.95263e-16 0)
(3 -2.77654e-16 0)
(3 -2.47254e-16 0)
(3 -2.56813e-16 0)
(3 -3.99611e-16 0)
(3 -8.04346e-17 0)
(3 -3.51633e-16 0)
(3 -2.51367e-16 0)
(3 -1.52569e-16 0)
(3 -1.84159e-16 0)
(3 -2.214e-16 0)
(3 -3.41959e-16 0)
(3 -3.07409e-16 0)
(3 -3.13548e-16 0)
(3 -1.44985e-16 0)
(3 -1.78777e-16 0)
(3 -1.64186e-16 0)
(3 -1.36455e-16 0)
(3 9.36383e-18 0)
(3 -7.88044e-17 0)
(3 -2.18061e-16 0)
(3 -2.24124e-16 0)
(3 -2.28323e-16 0)
(3 -3.62985e-16 0)
(3 -4.69748e-16 0)
(3 -4.38382e-16 0)
(3 -4.48726e-16 0)
(3 -3.82909e-16 0)
(3 -3.24474e-16 0)
(3 -2.90675e-16 0)
(3 -3.02731e-16 0)
(3 -2.80278e-16 0)
(3 -3.28905e-16 0)
(3 -4.04701e-16 0)
(3 -3.34043e-16 0)
(3 -3.30823e-16 0)
(3 -4.16757e-16 0)
(3 -2.42773e-16 0)
(3 -5.68226e-16 0)
(3 -4.95733e-16 0)
(3 -1.8405e-16 0)
(3 -1.65757e-16 0)
(3 -2.08396e-16 0)
(3 -1.84991e-16 0)
(3 -2.48209e-16 0)
(3 -2.36713e-16 0)
(3 -2.08119e-16 0)
(3 -2.06767e-16 0)
(3 -2.19105e-16 0)
(3 -2.72638e-16 0)
(3 -2.73109e-16 0)
(3 -2.73581e-16 0)
(3 -2.72331e-16 0)
(3 -2.5899e-16 0)
(3 -2.50792e-16 0)
(3 -2.42566e-16 0)
(3 -3.43655e-16 0)
(3 -3.26869e-16 0)
(3 -3.11765e-16 0)
(3 -1.60518e-16 0)
(3 -3.72286e-16 0)
(3 -3.43175e-16 0)
(3 -2.91161e-16 0)
(3 -3.79528e-16 0)
(3 -3.13313e-16 0)
(3 -4.07322e-16 0)
(3 -3.00293e-16 0)
(3 -2.83131e-16 0)
(3 -2.00317e-16 0)
(3 -2.02451e-16 0)
(3 -2.34835e-16 0)
(3 -2.15651e-16 0)
(3 -3.35662e-16 0)
(3 -1.43092e-17 0)
(3 1.97105e-17 0)
(3 2.87215e-17 0)
(3 5.39502e-17 0)
(3 -3.42303e-17 0)
(3 1.62437e-17 0)
(3 4.88197e-17 0)
(3 2.71714e-17 0)
(3 -1.08884e-17 0)
(3 4.3633e-17 0)
(3 -1.82137e-17 0)
(3 -1.05833e-16 0)
(3 -5.84979e-17 0)
(3 -7.32569e-17 0)
(3 -1.13757e-16 0)
(3 -1.36026e-16 0)
(3 -2.06258e-16 0)
(3 -2.19555e-16 0)
(3 -2.29205e-16 0)
(3 -2.01853e-16 0)
(3 -2.02229e-16 0)
(3 -2.45359e-16 0)
(3 -2.3092e-16 0)
(3 -2.81728e-16 0)
(3 -7.85085e-17 0)
(3 -2.24732e-16 0)
(3 -2.27032e-16 0)
(3 -2.23701e-16 0)
(3 -2.44841e-16 0)
(3 -2.50966e-16 0)
(3 -1.7204e-16 0)
(3 -8.33424e-17 0)
(3 -1.74594e-16 0)
(3 -4.94359e-17 0)
(3 -1.33351e-16 0)
(3 -8.58902e-17 0)
(3 -1.26214e-16 0)
(3 -3.29555e-16 0)
(3 -3.30191e-16 0)
(3 -3.05824e-16 0)
(3 -1.0792e-16 0)
(3 -1.44816e-16 0)
(3 -1.76052e-16 0)
(3 -1.84148e-16 0)
(3 -1.84508e-16 0)
(3 -1.65408e-16 0)
(3 -1.55404e-16 0)
(3 -8.2738e-17 0)
(3 -5.41248e-17 0)
(3 -1.16905e-16 0)
(3 -1.05224e-16 0)
(3 -8.67033e-17 0)
(3 -5.44951e-17 0)
(3 -6.3118e-17 0)
(3 -2.05058e-17 0)
(3 1.88293e-17 0)
(3 1.21266e-31 0)
(3 1.37413e-17 0)
(3 2.92508e-17 0)
(3 4.30903e-17 0)
(3 7.76971e-17 0)
(3 5.36176e-17 0)
(3 5.89088e-17 0)
(3 -1.9092e-17 0)
(3 -6.60692e-17 0)
(3 3.48341e-18 0)
(3 1.22133e-17 0)
(3 1.04869e-17 0)
(3 -1.05054e-17 0)
(3 -1.22779e-17 0)
(3 -1.05425e-17 0)
(3 1.05611e-17 0)
(3 1.05798e-17 0)
(3 1.05986e-17 0)
(3 1.06174e-17 0)
(3 -5.49543e-17 0)
(3 -7.99147e-17 0)
(3 -1.74347e-16 0)
(3 -1.80006e-16 0)
(3 -1.48191e-16 0)
(3 -1.80653e-16 0)
(3 -6.09234e-17 0)
(3 -5.74431e-17 0)
(3 -1.43867e-17 0)
(3 1.71151e-16 0)
(3 1.58828e-16 0)
(3 1.3561e-16 0)
(3 1.03251e-16 0)
(3 1.41549e-16 0)
(3 3.9997e-17 0)
(3 1.03818e-16 0)
(3 9.12354e-17 0)
(3 6.76382e-17 0)
(3 1.04391e-16 0)
(3 2.93568e-17 0)
(3 -8.08802e-17 0)
(3 -8.28714e-17 0)
(3 -5.904e-17 0)
(3 -5.91496e-17 0)
(3 -5.92596e-17 0)
(3 -1.29872e-16 0)
(3 -1.30114e-16 0)
(3 -9.31128e-17 0)
(3 -1.54857e-16 0)
(3 7.29007e-17 0)
(3 -3.65189e-16 0)
(3 -1.27588e-16 0)
(3 -2.50018e-16 0)
(3 -2.37308e-16 0)
(3 -1.79262e-16 0)
(3 -2.43881e-16 0)
(3 -5.87185e-17 0)
(3 -5.88304e-17 0)
(3 1.33097e-17 0)
(3 -1.04776e-16 0)
(3 -9.54336e-18 0)
(3 -5.73701e-17 0)
(3 -8.43048e-17 0)
(3 -8.63871e-17 0)
(3 -1.11558e-16 0)
(3 -7.32315e-17 0)
(3 -1.04268e-16 0)
(3 -1.12209e-16 0)
(3 -9.88585e-17 0)
(3 -6.79765e-17 0)
(3 -6.22714e-17 0)
(3 -9.48628e-17 0)
(3 7.42953e-17 0)
(3 6.7656e-17 0)
(3 9.82681e-17 0)
(3 1.84991e-16 0)
(3 1.71707e-16 0)
(3 1.61782e-16 0)
(3 2.01295e-16 0)
(3 4.95558e-17 0)
(3 1.33517e-16 0)
(3 1.78329e-16 0)
(3 2.83415e-16 0)
(3 3.32082e-16 0)
(3 3.77471e-16 0)
(3 3.40141e-16 0)
(3 2.83655e-16 0)
(3 3.20533e-16 0)
(3 2.89851e-16 0)
(3 3.42517e-16 0)
(3 3.18732e-16 0)
(3 2.56479e-16 0)
(3 2.1673e-16 0)
(3 2.13609e-16 0)
(3 2.10478e-16 0)
(3 2.10849e-16 0)
(3 2.04181e-16 0)
(3 3.40317e-16 0)
(3 1.67811e-16 0)
(3 2.40661e-16 0)
(3 1.94999e-16 0)
(3 1.22536e-16 0)
(3 1.5122e-16 0)
(3 1.01588e-16 0)
(3 2.16038e-16 0)
(3 1.9854e-16 0)
(3 2.13232e-16 0)
(3 1.72329e-16 0)
(3 1.00707e-16 0)
(3 7.38653e-17 0)
(3 1.08292e-17 0)
(3 -1.80814e-17 0)
(3 5.61543e-17 0)
(3 3.08504e-17 0)
(3 -2.72707e-17 0)
(3 -3.64274e-17 0)
(3 -5.83907e-17 0)
(3 -5.84979e-17 0)
(3 2.01456e-17 0)
(3 1.28436e-17 0)
(3 5.88219e-17 0)
(3 5.70892e-17 0)
(3 7.38e-18 0)
(3 1.10905e-17 0)
(3 -7.40745e-17 0)
(3 1.11319e-17 0)
(3 -7.43511e-18 0)
(3 -1.30358e-17 0)
(3 -2.05232e-17 0)
(3 -3.7385e-18 0)
(3 3.55825e-17 0)
(3 7.50518e-18 0)
(3 -1.1279e-17 0)
(3 -3.01343e-17 0)
(3 1.32088e-17 0)
(3 -7.9403e-17 0)
(3 -6.06126e-17 0)
(3 -6.07282e-17 0)
(3 -6.08442e-17 0)
(3 7.42957e-17 0)
(3 -2.55762e-16 0)
(3 -2.06532e-16 0)
(3 -1.91602e-16 0)
(3 -1.88132e-16 0)
(3 -1.57721e-16 0)
(3 -1.83079e-16 0)
(3 -1.11991e-16 0)
(3 -1.12209e-16 0)
(3 -8.72281e-17 0)
(3 -8.93405e-17 0)
(3 3.30817e-17 0)
(3 9.91465e-17 0)
(3 9.45577e-17 0)
(3 9.64098e-17 0)
(3 7.45482e-17 0)
(3 7.63725e-17 0)
(3 7.14027e-17 0)
(3 5.9604e-17 0)
(3 9.72358e-17 0)
(3 6.83528e-17 0)
(3 3.42351e-17 0)
(3 3.25794e-17 0)
(3 -1.0306e-17 0)
(3 5.1619e-18 0)
(3 -2.2407e-17 0)
(3 -6.90641e-18 0)
(3 5.1888e-18 0)
(3 2.59892e-17 0)
(3 3.64483e-17 0)
(3 7.82399e-17 0)
(3 -6.61848e-17 0)
(3 1.88434e-16 0)
(3 1.206e-16 0)
(3 1.20812e-16 0)
(3 9.82229e-17 0)
(3 1.00153e-16 0)
(3 8.80091e-17 0)
(3 3.5266e-17 0)
(3 3.53286e-17 0)
(3 2.12348e-17 0)
(3 -1.06363e-17 0)
(3 3.55176e-17 0)
(3 -1.42324e-17 0)
(3 3.56448e-17 0)
(3 1.96398e-17 0)
(3 3.32025e-31 0)
(3 -3.22536e-17 0)
(3 -3.59019e-17 0)
(3 -9.35136e-17 0)
(3 -1.63945e-16 0)
(3 -1.67852e-16 0)
(3 -2.18785e-16 0)
(3 -1.75708e-16 0)
(3 -1.74214e-16 0)
(3 -1.74532e-16 0)
(3 -1.4571e-16 0)
(3 -1.07658e-16 0)
(3 -1.06027e-16 0)
(3 -1.06222e-16 0)
(3 -1.35775e-16 0)
(3 -1.06615e-16 0)
(3 -1.06812e-16 0)
(3 -1.0701e-16 0)
(3 -1.07209e-16 0)
(3 -1.27779e-16 0)
(3 -8.34891e-17 0)
(3 -8.17863e-17 0)
(3 2.04848e-17 0)
(3 1.7538e-16 0)
(3 -3.7385e-17 0)
(3 -3.74553e-17 0)
(3 -1.1633e-16 0)
(3 5.07556e-17 0)
(3 5.83852e-17 0)
(3 1.50957e-17 0)
(3 3.7811e-18 0)
(3 1.13649e-17 0)
(3 1.13865e-17 0)
(3 -1.14083e-17 0)
(3 -2.66703e-17 0)
(3 -6.48948e-17 0)
(3 -1.12828e-16 0)
(3 3.64043e-17 0)
(3 2.87957e-17 0)
(3 -9.23243e-17 0)
(3 1.85006e-16 0)
(3 1.60263e-16 0)
(3 1.5864e-16 0)
(3 1.88025e-16 0)
(3 2.50542e-16 0)
(3 1.36219e-16 0)
(3 1.72889e-16 0)
(3 -3.37706e-17 0)
(3 -5.41248e-17 0)
(3 -3.38856e-17 0)
(3 -1.17104e-16 0)
(3 -1.17304e-16 0)
(3 -1.19208e-16 0)
(3 -1.12589e-16 0)
(3 -8.71498e-17 0)
(3 -1.64329e-16 0)
(3 -4.62971e-17 0)
(3 -2.66238e-16 0)
(3 -2.92508e-16 0)
(3 -3.01632e-16 0)
(3 -2.7453e-16 0)
(3 -1.64312e-16 0)
(3 -2.20042e-16 0)
(3 -1.42322e-16 0)
(3 -1.86037e-16 0)
(3 -1.74171e-16 0)
(3 -1.37836e-16 0)
(3 -1.06617e-16 0)
(3 -9.45483e-17 0)
(3 -7.71751e-17 0)
(3 -8.08255e-17 0)
(3 -7.92082e-17 0)
(3 -1.23431e-16 0)
(3 -1.2365e-16 0)
(3 -1.68109e-16 0)
(3 -1.41818e-16 0)
(3 -1.01225e-16 0)
(3 -1.24534e-16 0)
(3 -5.70317e-17 0)
(3 -1.46406e-16 0)
(3 -1.41303e-16 0)
(3 -2.29359e-16 0)
(3 -2.02846e-16 0)
(3 -1.88826e-16 0)
(3 -1.51334e-16 0)
(3 -1.75071e-16 0)
(3 -1.17529e-16 0)
(3 -2.17371e-16 0)
(3 -1.97806e-16 0)
(3 -1.05447e-16 0)
(3 -1.23853e-16 0)
(3 -1.2773e-16 0)
(3 -1.04199e-16 0)
(3 -1.75817e-16 0)
(3 -1.52288e-16 0)
(3 -1.96686e-16 0)
(3 -2.00733e-16 0)
(3 -1.56825e-16 0)
(3 -1.55268e-16 0)
(3 1.85186e-16 0)
(3 -1.33583e-16 0)
(3 -8.3645e-17 0)
(3 -1.06149e-16 0)
(3 -7.64956e-17 0)
(3 -6.91622e-17 0)
(3 -7.49106e-18 0)
(3 1.31341e-17 0)
(3 -3.75968e-17 0)
(3 4.70849e-17 0)
(3 2.45305e-17 0)
(3 5.8607e-17 0)
(3 4.35653e-17 0)
(3 1.13865e-17 0)
(3 6.65483e-17 0)
(3 -1.52402e-16 0)
(3 1.33607e-16 0)
(3 8.60552e-17 0)
(3 8.43048e-17 0)
(3 1.47818e-16 0)
(3 1.00018e-16 0)
(3 8.47944e-17 0)
(3 1.04268e-16 0)
(3 1.16078e-16 0)
(3 8.91665e-17 0)
(3 1.10705e-16 0)
(3 -3.07435e-31 0)
(3 -2.47866e-17 0)
(3 -1.43525e-16 0)
(3 -9.81012e-17 0)
(3 -9.99624e-17 0)
(3 -7.97668e-17 0)
(3 -7.65029e-17 0)
(3 -7.49308e-17 0)
(3 -1.14295e-16 0)
(3 -1.17909e-16 0)
(3 -1.18111e-16 0)
(3 -1.18315e-16 0)
(3 -5.66829e-17 0)
(3 -5.1619e-17 0)
(3 -5.3432e-17 0)
(3 -5.35246e-17 0)
(3 -6.0536e-17 0)
(3 1.55935e-17 0)
(3 1.87448e-16 0)
(3 1.00842e-16 0)
(3 7.6635e-17 0)
(3 1.74476e-17 0)
(3 1.22347e-17 0)
(3 2.62634e-17 0)
(3 4.91114e-17 0)
(3 3.51415e-17 0)
(3 3.34435e-17 0)
(3 3.70293e-17 0)
(3 1.21884e-16 0)
(3 1.09713e-16 0)
(3 8.8636e-17 0)
(3 6.92594e-17 0)
(3 4.44764e-17 0)
(3 2.31691e-17 0)
(3 1.42835e-17 0)
(3 -1.07319e-17 0)
(3 -8.95932e-17 0)
(3 -1.25657e-17 0)
(3 -5.57485e-17 0)
(3 1.08096e-17 0)
(3 -4.87312e-17 0)
(3 1.2657e-17 0)
(3 5.43428e-17 0)
(3 -1.25216e-16 0)
(3 8.90841e-17 0)
(3 -2.00351e-17 0)
(3 -2.55459e-17 0)
(3 -6.03259e-17 0)
(3 -9.70654e-17 0)
(3 -1.00914e-16 0)
(3 -1.02938e-16 0)
(3 -1.27069e-16 0)
(3 -1.3284e-16 0)
(3 -1.49722e-16 0)
(3 -9.4445e-17 0)
(3 -1.29872e-17 0)
(3 -2.41641e-17 0)
(3 -9.68373e-17 0)
(3 -2.98519e-16 0)
(3 -1.08416e-16 0)
(3 -1.79785e-16 0)
(3 -3.75259e-17 0)
(3 -3.00774e-17 0)
(3 -6.02686e-17 0)
(3 1.56618e-16 0)
(3 -2.57115e-16 0)
(3 1.45849e-16 0)
(3 -2.0306e-16 0)
(3 -1.33097e-17 0)
(3 -4.00054e-17 0)
(3 -1.35516e-16 0)
(3 -6.11948e-17 0)
(3 -1.32205e-16 0)
(3 -1.01745e-16 0)
(3 -8.46306e-17 0)
(3 -1.94642e-16 0)
(3 -1.95019e-16 0)
(3 -1.8379e-16 0)
(3 -2.32608e-16 0)
(3 -2.00045e-16 0)
(3 -1.5957e-16 0)
(3 -1.7643e-16 0)
(3 -5.57215e-17 0)
(3 9.64098e-17 0)
(3 -4.74398e-17 0)
(3 -6.44923e-17 0)
(3 -5.44021e-17 0)
(3 -5.44951e-17 0)
(3 -7.67651e-17 0)
(3 -7.68969e-17 0)
(3 -7.70291e-17 0)
(3 -7.71618e-17 0)
(3 -9.96245e-17 0)
(3 -9.97967e-17 0)
(3 -9.99695e-17 0)
(3 -1.00143e-16 0)
(3 -1.59123e-16 0)
(3 -2.07913e-16 0)
(3 -2.10012e-16 0)
(3 -1.51264e-16 0)
(3 -1.51528e-16 0)
(3 -1.48304e-16 0)
(3 -1.34582e-16 0)
(3 -4.72742e-17 0)
(3 -4.91114e-17 0)
(3 1.58137e-17 0)
(3 3.52037e-18 0)
(3 1.23431e-17 0)
(3 -5.29929e-18 0)
(3 -1.06174e-17 0)
(3 -1.2409e-17 0)
(3 -1.59829e-17 0)
(3 -8.89528e-18 0)
(3 -7.48541e-17 0)
(3 -7.67738e-17 0)
(3 -7.69118e-17 0)
(3 -1.37974e-16 0)
(3 -1.16681e-16 0)
(3 -1.52859e-16 0)
(3 -1.96374e-16 0)
(3 -1.84096e-16 0)
(3 -1.73581e-16 0)
(3 -1.68463e-16 0)
(3 -1.85102e-16 0)
(3 -2.63616e-16 0)
(3 -2.67741e-16 0)
(3 -2.53634e-16 0)
(3 -2.81521e-16 0)
(3 -2.41748e-16 0)
(3 -2.44028e-16 0)
(3 -1.74628e-16 0)
(3 -1.74951e-16 0)
(3 -2.0664e-16 0)
(3 -2.38447e-16 0)
(3 -3.33335e-16 0)
(3 -3.43233e-16 0)
(3 -3.29004e-16 0)
(3 -3.09134e-16 0)
(3 -3.82478e-16 0)
(3 -1.58886e-16 0)
(3 -4.04517e-16 0)
(3 -4.353e-16 0)
(3 -3.72208e-16 0)
(3 -3.44661e-16 0)
(3 -2.26436e-16 0)
(3 -3.49751e-16 0)
(3 -2.67074e-16 0)
(3 -2.54299e-16 0)
(3 -1.82533e-16 0)
(3 -2.38127e-16 0)
(3 -3.43561e-16 0)
(3 -3.46133e-16 0)
(3 -2.49082e-16 0)
(3 -3.20592e-16 0)
(3 -2.57739e-16 0)
(3 -3.00635e-16 0)
(3 -4.30587e-16 0)
(3 -4.2562e-16 0)
(3 -4.28387e-16 0)
(3 -4.87488e-16 0)
(3 -2.76329e-16 0)
(3 -4.21373e-16 0)
(3 5.57215e-17 0)
(3 5.58162e-17 0)
(3 5.59112e-17 0)
(3 4.24292e-17 0)
(3 1.19005e-17 0)
(3 1.02178e-17 0)
(3 1.02353e-17 0)
(3 1.02529e-17 0)
(3 1.02705e-17 0)
(3 1.02882e-17 0)
(3 -4.63769e-17 0)
(3 -5.1619e-17 0)
(3 -5.51556e-17 0)
(3 -5.69779e-17 0)
(3 -5.53472e-17 0)
(3 -1.35144e-16 0)
(3 -2.89851e-16 0)
(3 -3.79029e-16 0)
(3 -3.86659e-16 0)
(3 -3.31504e-16 0)
(3 -2.70912e-16 0)
(3 -1.68086e-16 0)
(3 -1.78906e-16 0)
(3 -1.22995e-16 0)
(3 -1.42575e-16 0)
(3 -1.56934e-16 0)
(3 -2.13738e-16 0)
(3 -2.12348e-16 0)
(3 -1.96772e-16 0)
(3 -1.95347e-16 0)
(3 -1.72568e-16 0)
(3 -1.71095e-16 0)
(3 -1.71402e-16 0)
(3 -1.7171e-16 0)
(3 -1.72019e-16 0)
(3 -2.01051e-16 0)
(3 -2.46372e-16 0)
(3 -3.76533e-16 0)
(3 -3.33899e-16 0)
(3 -3.41738e-16 0)
(3 -3.33303e-16 0)
(3 -3.61131e-16 0)
(3 -4.16332e-16 0)
(3 -3.33311e-16 0)
(3 -4.54352e-16 0)
(3 -3.38191e-16 0)
(3 -3.3515e-16 0)
(3 -3.70629e-16 0)
(3 -2.92271e-16 0)
(3 -2.90971e-16 0)
(3 -2.93355e-16 0)
(3 -1.94085e-16 0)
(3 -3.4815e-16 0)
(3 -4.78671e-16 0)
(3 -4.85141e-16 0)
(3 -4.71151e-16 0)
(3 -4.53376e-16 0)
(3 -3.77588e-16 0)
(3 -3.20243e-16 0)
(3 -4.89713e-16 0)
(3 -4.77479e-16 0)
(3 -4.08697e-16 0)
(3 -5.50994e-16 0)
(3 -6.46567e-16 0)
(3 -3.08746e-16 0)
(3 -2.41015e-16 0)
(3 -2.94714e-16 0)
(3 -4.00054e-16 0)
(3 -4.61898e-16 0)
(3 -5.90912e-16 0)
(3 -4.10028e-16 0)
(3 -3.58986e-16 0)
(3 -3.13518e-16 0)
(3 -3.41105e-16 0)
(3 -3.91969e-16 0)
(3 -4.5077e-16 0)
(3 -4.09003e-16 0)
(3 -5.04968e-16 0)
(3 -5.31253e-16 0)
(3 -5.34243e-16 0)
)
;
boundaryField
{
inlet
{
type fixedValue;
value uniform (3 0 0);
}
outlet
{
type zeroGradient;
}
bottom
{
type symmetryPlane;
}
top
{
type zeroGradient;
}
obstacle
{
type slip;
}
defaultFaces
{
type empty;
}
}
// ************************************************************************* //
| [
"andytorrestb@gmail.com"
] | andytorrestb@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.